From 0804b3f5114ff09df9b10207997e1f16c868b45e Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Mon, 1 May 2017 14:06:10 -0700 Subject: Remove more |new|s, part 7 Remove some dead code along the way. Move some getters to headers and make const. Change-Id: I14280c247b0cfeff8ad7f606302bc8bba1960f1e Reviewed-on: https://pdfium-review.googlesource.com/4730 Commit-Queue: dsinclair Reviewed-by: dsinclair --- fxbarcode/common/BC_CommonBitMatrix.cpp | 32 +++-------------------------- fxbarcode/common/BC_CommonBitMatrix.h | 10 ++++----- fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp | 19 ++++------------- fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h | 9 ++++---- 4 files changed, 17 insertions(+), 53 deletions(-) (limited to 'fxbarcode') diff --git a/fxbarcode/common/BC_CommonBitMatrix.cpp b/fxbarcode/common/BC_CommonBitMatrix.cpp index fe3546156e..6fe447db6f 100644 --- a/fxbarcode/common/BC_CommonBitMatrix.cpp +++ b/fxbarcode/common/BC_CommonBitMatrix.cpp @@ -20,9 +20,11 @@ * limitations under the License. */ -#include "fxbarcode/common/BC_CommonBitArray.h" #include "fxbarcode/common/BC_CommonBitMatrix.h" + +#include "fxbarcode/common/BC_CommonBitArray.h" #include "fxbarcode/utils.h" +#include "third_party/base/ptr_util.h" CBC_CommonBitMatrix::CBC_CommonBitMatrix() {} @@ -55,10 +57,6 @@ bool CBC_CommonBitMatrix::Get(int32_t x, int32_t y) const { return ((((uint32_t)m_bits[offset]) >> (x & 0x1f)) & 1) != 0; } -int32_t* CBC_CommonBitMatrix::GetBits() { - return m_bits; -} - void CBC_CommonBitMatrix::Set(int32_t x, int32_t y) { int32_t offset = y * m_rowSize + (x >> 5); if (offset >= m_rowSize * m_height || offset < 0) @@ -95,20 +93,6 @@ bool CBC_CommonBitMatrix::SetRegion(int32_t left, return true; } -CBC_CommonBitArray* CBC_CommonBitMatrix::GetRow(int32_t y, - CBC_CommonBitArray* row) { - CBC_CommonBitArray* rowArray = nullptr; - if (!row || static_cast(row->GetSize()) < m_width) { - rowArray = new CBC_CommonBitArray(m_width); - } else { - rowArray = new CBC_CommonBitArray(row); - } - int32_t offset = y * m_rowSize; - for (int32_t x = 0; x < m_rowSize; x++) - rowArray->SetBulk(x << 5, m_bits[offset + x]); - return rowArray; -} - void CBC_CommonBitMatrix::SetRow(int32_t y, CBC_CommonBitArray* row) { int32_t l = y * m_rowSize; for (int32_t i = 0; i < m_rowSize; i++) { @@ -121,13 +105,3 @@ void CBC_CommonBitMatrix::SetCol(int32_t y, CBC_CommonBitArray* col) { for (size_t i = 0; i < col->GetBits().size(); ++i) m_bits[i * m_rowSize + y] = col->GetBitArray()[i]; } - -int32_t CBC_CommonBitMatrix::GetWidth() const { - return m_width; -} -int32_t CBC_CommonBitMatrix::GetHeight() const { - return m_height; -} -int32_t CBC_CommonBitMatrix::GetRowSize() const { - return m_rowSize; -} diff --git a/fxbarcode/common/BC_CommonBitMatrix.h b/fxbarcode/common/BC_CommonBitMatrix.h index 744461903d..67c0f888cc 100644 --- a/fxbarcode/common/BC_CommonBitMatrix.h +++ b/fxbarcode/common/BC_CommonBitMatrix.h @@ -7,6 +7,8 @@ #ifndef FXBARCODE_COMMON_BC_COMMONBITMATRIX_H_ #define FXBARCODE_COMMON_BC_COMMONBITMATRIX_H_ +#include + #include "core/fxcrt/fx_system.h" class CBC_CommonBitArray; @@ -24,14 +26,12 @@ class CBC_CommonBitMatrix { void Flip(int32_t x, int32_t y); void Clear(); bool SetRegion(int32_t left, int32_t top, int32_t width, int32_t height); - CBC_CommonBitArray* GetRow(int32_t y, CBC_CommonBitArray* row); void SetRow(int32_t y, CBC_CommonBitArray* row); CBC_CommonBitArray* GetCol(int32_t y, CBC_CommonBitArray* row); void SetCol(int32_t y, CBC_CommonBitArray* col); - int32_t GetWidth() const; - int32_t GetHeight() const; - int32_t GetRowSize() const; - int32_t* GetBits(); + int32_t GetWidth() const { return m_width; } + int32_t GetHeight() const { return m_height; } + int32_t* GetBits() const { return m_bits; } private: int32_t m_width = 0; diff --git a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp index 564d7ef0b1..ca492b3c19 100644 --- a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp +++ b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp @@ -22,11 +22,12 @@ #include "fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h" #include "fxbarcode/pdf417/BC_PDF417BarcodeRow.h" +#include "third_party/base/ptr_util.h" CBC_BarcodeMatrix::CBC_BarcodeMatrix(int32_t height, int32_t width) { m_matrix.resize(height + 2); - for (size_t i = 0, matrixLength = m_matrix.size(); i < matrixLength; ++i) - m_matrix[i] = new CBC_BarcodeRow((width + 4) * 17 + 1); + for (size_t i = 0; i < m_matrix.size(); ++i) + m_matrix[i] = pdfium::MakeUnique((width + 4) * 17 + 1); m_width = width * 17; m_height = height + 2; @@ -35,10 +36,7 @@ CBC_BarcodeMatrix::CBC_BarcodeMatrix(int32_t height, int32_t width) { m_outWidth = 0; } -CBC_BarcodeMatrix::~CBC_BarcodeMatrix() { - for (size_t i = 0; i < m_matrix.size(); i++) - delete m_matrix[i]; -} +CBC_BarcodeMatrix::~CBC_BarcodeMatrix() {} void CBC_BarcodeMatrix::set(int32_t x, int32_t y, uint8_t value) { m_matrix[y]->set(x, value); @@ -49,15 +47,6 @@ void CBC_BarcodeMatrix::setMatrix(int32_t x, int32_t y, bool black) { void CBC_BarcodeMatrix::startRow() { ++m_currentRow; } -CBC_BarcodeRow* CBC_BarcodeMatrix::getCurrentRow() { - return m_matrix[m_currentRow]; -} -int32_t CBC_BarcodeMatrix::getWidth() { - return m_outWidth; -} -int32_t CBC_BarcodeMatrix::getHeight() { - return m_outHeight; -} std::vector& CBC_BarcodeMatrix::getMatrix() { return getScaledMatrix(1, 1); } diff --git a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h index 964048db9f..785633d150 100644 --- a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h +++ b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h @@ -7,6 +7,7 @@ #ifndef FXBARCODE_PDF417_BC_PDF417BARCODEMATRIX_H_ #define FXBARCODE_PDF417_BC_PDF417BARCODEMATRIX_H_ +#include #include #include "core/fxcrt/fx_basic.h" @@ -19,18 +20,18 @@ class CBC_BarcodeMatrix { CBC_BarcodeMatrix(int32_t height, int32_t width); virtual ~CBC_BarcodeMatrix(); + CBC_BarcodeRow* getCurrentRow() const { return m_matrix[m_currentRow].get(); } + int32_t getWidth() const { return m_outWidth; } + int32_t getHeight() const { return m_outHeight; } void set(int32_t x, int32_t y, uint8_t value); void setMatrix(int32_t x, int32_t y, bool black); void startRow(); - CBC_BarcodeRow* getCurrentRow(); std::vector& getMatrix(); std::vector& getScaledMatrix(int32_t scale); std::vector& getScaledMatrix(int32_t xScale, int32_t yScale); - int32_t getWidth(); - int32_t getHeight(); private: - std::vector m_matrix; + std::vector> m_matrix; std::vector m_matrixOut; int32_t m_currentRow; int32_t m_height; -- cgit v1.2.3