summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2017-04-03 16:40:51 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-04-04 19:04:37 +0000
commit03d58937248fa244cbf02a3d38d430a513500311 (patch)
tree9ea96b01b0f2f2464bd9d5c49e76dd8e0466a8b0
parentc3202a95773d7a2c95038ad45c5ba2c9e095e67b (diff)
downloadpdfium-03d58937248fa244cbf02a3d38d430a513500311.tar.xz
Clean up QRCoderEncoder and friends.
Remove a bunch of unused code, including gotos. Fix some potential memory leaks. Change-Id: Ia2775e2ab176f4741b765e259a24a293a5717394 Reviewed-on: https://pdfium-review.googlesource.com/3560 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
-rw-r--r--fxbarcode/cbc_qrcode.cpp39
-rw-r--r--fxbarcode/cbc_qrcode.h6
-rw-r--r--fxbarcode/qrcode/BC_QRCodeWriter.cpp34
-rw-r--r--fxbarcode/qrcode/BC_QRCodeWriter.h19
-rw-r--r--fxbarcode/qrcode/BC_QRCoderBlockPair.cpp13
-rw-r--r--fxbarcode/qrcode/BC_QRCoderBlockPair.h7
-rw-r--r--fxbarcode/qrcode/BC_QRCoderEncoder.cpp486
-rw-r--r--fxbarcode/qrcode/BC_QRCoderEncoder.h5
-rw-r--r--xfa/fwl/cfwl_barcode.cpp2
-rw-r--r--xfa/fwl/cfwl_barcode.h5
-rw-r--r--xfa/fwl/cfx_barcode.cpp13
-rw-r--r--xfa/fwl/cfx_barcode.h1
12 files changed, 135 insertions, 495 deletions
diff --git a/fxbarcode/cbc_qrcode.cpp b/fxbarcode/cbc_qrcode.cpp
index 15c4057826..0e0191dc3e 100644
--- a/fxbarcode/cbc_qrcode.cpp
+++ b/fxbarcode/cbc_qrcode.cpp
@@ -21,26 +21,18 @@
#include "fxbarcode/cbc_qrcode.h"
+#include <memory>
+
#include "fxbarcode/qrcode/BC_QRCodeWriter.h"
CBC_QRCode::CBC_QRCode() : CBC_CodeBase(new CBC_QRCodeWriter) {}
CBC_QRCode::~CBC_QRCode() {}
-bool CBC_QRCode::SetVersion(int32_t version) {
- if (version < 0 || version > 40)
- return false;
- return m_pBCWriter &&
- static_cast<CBC_QRCodeWriter*>(m_pBCWriter.get())->SetVersion(version);
-}
-
bool CBC_QRCode::SetErrorCorrectionLevel(int32_t level) {
if (level < 0 || level > 3)
return false;
-
- return m_pBCWriter &&
- static_cast<CBC_TwoDimWriter*>(m_pBCWriter.get())
- ->SetErrorCorrectionLevel(level);
+ return m_pBCWriter && writer()->SetErrorCorrectionLevel(level);
}
bool CBC_QRCode::Encode(const CFX_WideStringC& contents,
@@ -48,34 +40,33 @@ bool CBC_QRCode::Encode(const CFX_WideStringC& contents,
int32_t& e) {
int32_t outWidth = 0;
int32_t outHeight = 0;
- CBC_QRCodeWriter* pWriter = static_cast<CBC_QRCodeWriter*>(m_pBCWriter.get());
- uint8_t* data = pWriter->Encode(CFX_WideString(contents),
- pWriter->GetErrorCorrectionLevel(), outWidth,
- outHeight, e);
+ CBC_QRCodeWriter* pWriter = writer();
+ std::unique_ptr<uint8_t, FxFreeDeleter> data(pWriter->Encode(
+ CFX_WideString(contents), pWriter->GetErrorCorrectionLevel(), outWidth,
+ outHeight, e));
if (e != BCExceptionNO)
return false;
- pWriter->RenderResult(data, outWidth, outHeight, e);
- FX_Free(data);
- if (e != BCExceptionNO)
- return false;
- return true;
+ pWriter->RenderResult(data.get(), outWidth, outHeight, e);
+ return e == BCExceptionNO;
}
bool CBC_QRCode::RenderDevice(CFX_RenderDevice* device,
const CFX_Matrix* matrix,
int32_t& e) {
- static_cast<CBC_TwoDimWriter*>(m_pBCWriter.get())
- ->RenderDeviceResult(device, matrix);
+ writer()->RenderDeviceResult(device, matrix);
return true;
}
bool CBC_QRCode::RenderBitmap(CFX_RetainPtr<CFX_DIBitmap>& pOutBitmap,
int32_t& e) {
- static_cast<CBC_TwoDimWriter*>(m_pBCWriter.get())
- ->RenderBitmapResult(pOutBitmap, e);
+ writer()->RenderBitmapResult(pOutBitmap, e);
return e == BCExceptionNO;
}
BC_TYPE CBC_QRCode::GetType() {
return BC_QR_CODE;
}
+
+CBC_QRCodeWriter* CBC_QRCode::writer() {
+ return static_cast<CBC_QRCodeWriter*>(m_pBCWriter.get());
+}
diff --git a/fxbarcode/cbc_qrcode.h b/fxbarcode/cbc_qrcode.h
index f41c3507ee..d8d871203d 100644
--- a/fxbarcode/cbc_qrcode.h
+++ b/fxbarcode/cbc_qrcode.h
@@ -12,6 +12,8 @@
#include "core/fxge/fx_dib.h"
#include "fxbarcode/cbc_codebase.h"
+class CBC_QRCodeWriter;
+
class CBC_QRCode : public CBC_CodeBase {
public:
CBC_QRCode();
@@ -28,8 +30,10 @@ class CBC_QRCode : public CBC_CodeBase {
int32_t& e) override;
BC_TYPE GetType() override;
- bool SetVersion(int32_t version);
bool SetErrorCorrectionLevel(int32_t level);
+
+ private:
+ CBC_QRCodeWriter* writer();
};
#endif // FXBARCODE_CBC_QRCODE_H_
diff --git a/fxbarcode/qrcode/BC_QRCodeWriter.cpp b/fxbarcode/qrcode/BC_QRCodeWriter.cpp
index b83bca89c8..b7d5359830 100644
--- a/fxbarcode/qrcode/BC_QRCodeWriter.cpp
+++ b/fxbarcode/qrcode/BC_QRCodeWriter.cpp
@@ -33,7 +33,6 @@
CBC_QRCodeWriter::CBC_QRCodeWriter() {
m_bFixedSize = true;
m_iCorrectLevel = 1;
- m_iVersion = 0;
}
CBC_QRCodeWriter::~CBC_QRCodeWriter() {}
@@ -48,14 +47,6 @@ void CBC_QRCodeWriter::ReleaseAll() {
CBC_QRCoderVersion::Destroy();
}
-bool CBC_QRCodeWriter::SetVersion(int32_t version) {
- if (version < 0 || version > 40) {
- return false;
- }
- m_iVersion = version;
- return true;
-}
-
bool CBC_QRCodeWriter::SetErrorCorrectionLevel(int32_t level) {
if (level < 0 || level > 3) {
return false;
@@ -89,34 +80,13 @@ uint8_t* CBC_QRCodeWriter::Encode(const CFX_WideString& contents,
}
}
CBC_QRCoder qr;
- if (m_iVersion > 0 && m_iVersion < 41) {
- CFX_ByteString byteStr = contents.UTF8Encode();
- CBC_QRCoderEncoder::Encode(byteStr, ec, &qr, e, m_iVersion);
- } else {
- CBC_QRCoderEncoder::Encode(contents, ec, &qr, e);
- }
+ CBC_QRCoderEncoder::Encode(contents, ec, &qr, e);
if (e != BCExceptionNO)
return nullptr;
+
outWidth = qr.GetMatrixWidth();
outHeight = qr.GetMatrixWidth();
uint8_t* result = FX_Alloc2D(uint8_t, outWidth, outHeight);
memcpy(result, qr.GetMatrix()->GetArray(), outWidth * outHeight);
return result;
}
-
-uint8_t* CBC_QRCodeWriter::Encode(const CFX_ByteString& contents,
- BCFORMAT format,
- int32_t& outWidth,
- int32_t& outHeight,
- int32_t hints,
- int32_t& e) {
- return nullptr;
-}
-
-uint8_t* CBC_QRCodeWriter::Encode(const CFX_ByteString& contents,
- BCFORMAT format,
- int32_t& outWidth,
- int32_t& outHeight,
- int32_t& e) {
- return nullptr;
-}
diff --git a/fxbarcode/qrcode/BC_QRCodeWriter.h b/fxbarcode/qrcode/BC_QRCodeWriter.h
index 185e10aa37..42d77fc9f2 100644
--- a/fxbarcode/qrcode/BC_QRCodeWriter.h
+++ b/fxbarcode/qrcode/BC_QRCodeWriter.h
@@ -15,31 +15,16 @@ class CBC_QRCodeWriter : public CBC_TwoDimWriter {
CBC_QRCodeWriter();
~CBC_QRCodeWriter() override;
+ static void ReleaseAll();
+
uint8_t* Encode(const CFX_WideString& contents,
int32_t ecLevel,
int32_t& outWidth,
int32_t& outHeight,
int32_t& e);
- uint8_t* Encode(const CFX_ByteString& contents,
- BCFORMAT format,
- int32_t& outWidth,
- int32_t& outHeight,
- int32_t hints,
- int32_t& e);
- uint8_t* Encode(const CFX_ByteString& contents,
- BCFORMAT format,
- int32_t& outWidth,
- int32_t& outHeight,
- int32_t& e);
- bool SetVersion(int32_t version);
// CBC_TwoDimWriter
bool SetErrorCorrectionLevel(int32_t level) override;
-
- static void ReleaseAll();
-
- private:
- int32_t m_iVersion;
};
#endif // FXBARCODE_QRCODE_BC_QRCODEWRITER_H_
diff --git a/fxbarcode/qrcode/BC_QRCoderBlockPair.cpp b/fxbarcode/qrcode/BC_QRCoderBlockPair.cpp
index 9d2a1f8375..9ac93e9b14 100644
--- a/fxbarcode/qrcode/BC_QRCoderBlockPair.cpp
+++ b/fxbarcode/qrcode/BC_QRCoderBlockPair.cpp
@@ -26,11 +26,7 @@
#include "fxbarcode/common/BC_CommonByteArray.h"
-CBC_QRCoderBlockPair::CBC_QRCoderBlockPair(
- std::unique_ptr<CBC_CommonByteArray> data,
- std::unique_ptr<CBC_CommonByteArray> errorCorrection)
- : m_dataBytes(std::move(data)),
- m_errorCorrectionBytes(std::move(errorCorrection)) {}
+CBC_QRCoderBlockPair::CBC_QRCoderBlockPair() {}
CBC_QRCoderBlockPair::~CBC_QRCoderBlockPair() {}
@@ -42,3 +38,10 @@ const CBC_CommonByteArray* CBC_QRCoderBlockPair::GetErrorCorrectionBytes()
const {
return m_errorCorrectionBytes.get();
}
+
+void CBC_QRCoderBlockPair::SetData(
+ std::unique_ptr<CBC_CommonByteArray> data,
+ std::unique_ptr<CBC_CommonByteArray> errorCorrection) {
+ m_dataBytes = std::move(data);
+ m_errorCorrectionBytes = std::move(errorCorrection);
+}
diff --git a/fxbarcode/qrcode/BC_QRCoderBlockPair.h b/fxbarcode/qrcode/BC_QRCoderBlockPair.h
index 7c24d9f5ec..9d571f3410 100644
--- a/fxbarcode/qrcode/BC_QRCoderBlockPair.h
+++ b/fxbarcode/qrcode/BC_QRCoderBlockPair.h
@@ -13,12 +13,13 @@ class CBC_CommonByteArray;
class CBC_QRCoderBlockPair {
public:
- CBC_QRCoderBlockPair(std::unique_ptr<CBC_CommonByteArray> data,
- std::unique_ptr<CBC_CommonByteArray> errorCorrection);
- virtual ~CBC_QRCoderBlockPair();
+ CBC_QRCoderBlockPair();
+ ~CBC_QRCoderBlockPair();
const CBC_CommonByteArray* GetDataBytes() const;
const CBC_CommonByteArray* GetErrorCorrectionBytes() const;
+ void SetData(std::unique_ptr<CBC_CommonByteArray> data,
+ std::unique_ptr<CBC_CommonByteArray> errorCorrection);
private:
std::unique_ptr<CBC_CommonByteArray> m_dataBytes;
diff --git a/fxbarcode/qrcode/BC_QRCoderEncoder.cpp b/fxbarcode/qrcode/BC_QRCoderEncoder.cpp
index 6cdc9f9fcf..285bd0a541 100644
--- a/fxbarcode/qrcode/BC_QRCoderEncoder.cpp
+++ b/fxbarcode/qrcode/BC_QRCoderEncoder.cpp
@@ -41,18 +41,26 @@
#include "fxbarcode/qrcode/BC_QRCoderVersion.h"
#include "third_party/base/ptr_util.h"
+using ModeStringPair = std::pair<CBC_QRCoderMode*, CFX_ByteString>;
+
+const int32_t kMaxVersion = 40;
+
namespace {
+// This is a mapping for an ASCII table, starting at an index of 32.
const int8_t g_alphaNumericTable[] = {
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43,
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 44, -1, -1, -1, -1, -1,
- -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
- 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1};
+ 36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43, // 32-47
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 44, -1, -1, -1, -1, -1, // 48-63
+ -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, // 64-79
+ 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35};
int32_t GetAlphaNumericCode(int32_t code) {
- return (code >= 0 && code < 96) ? g_alphaNumericTable[code] : -1;
+ if (code < 32)
+ return -1;
+ size_t code_index = static_cast<size_t>(code - 32);
+ if (code_index >= FX_ArraySize(g_alphaNumericTable))
+ return -1;
+ return g_alphaNumericTable[code_index];
}
void AppendNumericBytes(const CFX_ByteString& content,
@@ -120,7 +128,7 @@ void AppendGBKBytes(const CFX_ByteString& content,
int32_t length = content.GetLength();
uint32_t value = 0;
for (int32_t i = 0; i < length; i += 2) {
- value = (uint32_t)((uint8_t)content[i] << 8 | (uint8_t)content[i + 1]);
+ value = (uint32_t)(content[i] << 8 | content[i + 1]);
if (value <= 0xAAFE && value >= 0xA1A1) {
value -= 0xA1A1;
} else if (value <= 0xFAFE && value >= 0xB0A1) {
@@ -147,23 +155,13 @@ void Append8BitBytes(const CFX_ByteString& content,
}
}
-void Append8BitBytes(std::vector<uint8_t>& bytes,
- CBC_QRCoderBitVector* bits,
- int32_t& e) {
- for (size_t i = 0; i < bytes.size(); i++) {
- bits->AppendBits(bytes[i], 8, e);
- if (e != BCExceptionNO)
- return;
- }
-}
-
void AppendKanjiBytes(const CFX_ByteString& content,
CBC_QRCoderBitVector* bits,
int32_t& e) {
std::vector<uint8_t> bytes;
uint32_t value = 0;
for (size_t i = 0; i < bytes.size(); i += 2) {
- value = (uint32_t)((uint8_t)(content[i] << 8) | (uint8_t)content[i + 1]);
+ value = (uint32_t)((content[i] << 8) | content[i + 1]);
if (value <= 0x9ffc && value >= 0x8140) {
value -= 0x8140;
} else if (value <= 0xebbf && value >= 0xe040) {
@@ -228,101 +226,6 @@ void AppendBytes(const CFX_ByteString& content,
e = BCExceptionUnsupportedMode;
}
-void AppendDataModeLenghInfo(
- const std::vector<std::pair<CBC_QRCoderMode*, CFX_ByteString>>&
- splitResults,
- CBC_QRCoderBitVector& headerAndDataBits,
- CBC_QRCoderMode* tempMode,
- CBC_QRCoder* qrCode,
- CFX_ByteString& encoding,
- int32_t& e) {
- for (const auto& splitResult : splitResults) {
- tempMode = splitResult.first;
- if (tempMode == CBC_QRCoderMode::sGBK) {
- AppendModeInfo(tempMode, &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
- AppendLengthInfo(splitResult.second.GetLength(), qrCode->GetVersion(),
- tempMode, &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
- AppendBytes(splitResult.second, tempMode, &headerAndDataBits, encoding,
- e);
- if (e != BCExceptionNO)
- return;
- } else if (tempMode == CBC_QRCoderMode::sBYTE) {
- std::vector<uint8_t> bytes;
- CBC_UtilCodingConvert::LocaleToUtf8(splitResult.second, bytes);
- AppendModeInfo(tempMode, &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
- AppendLengthInfo(bytes.size(), qrCode->GetVersion(), tempMode,
- &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
- Append8BitBytes(bytes, &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
- } else if (tempMode == CBC_QRCoderMode::sALPHANUMERIC) {
- AppendModeInfo(tempMode, &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
- AppendLengthInfo(splitResult.second.GetLength(), qrCode->GetVersion(),
- tempMode, &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
- AppendBytes(splitResult.second, tempMode, &headerAndDataBits, encoding,
- e);
- if (e != BCExceptionNO)
- return;
- } else if (tempMode == CBC_QRCoderMode::sNUMERIC) {
- AppendModeInfo(tempMode, &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
- AppendLengthInfo(splitResult.second.GetLength(), qrCode->GetVersion(),
- tempMode, &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
- AppendBytes(splitResult.second, tempMode, &headerAndDataBits, encoding,
- e);
- if (e != BCExceptionNO)
- return;
- } else {
- e = BCExceptionUnknown;
- return;
- }
- }
-}
-
-void InitQRCode(int32_t numInputBytes,
- int32_t versionNumber,
- CBC_QRCoderErrorCorrectionLevel* ecLevel,
- CBC_QRCoderMode* mode,
- CBC_QRCoder* qrCode,
- int32_t& e) {
- qrCode->SetECLevel(ecLevel);
- qrCode->SetMode(mode);
- CBC_QRCoderVersion* version =
- CBC_QRCoderVersion::GetVersionForNumber(versionNumber, e);
- if (e != BCExceptionNO)
- return;
- int32_t numBytes = version->GetTotalCodeWords();
- CBC_QRCoderECBlocks* ecBlocks = version->GetECBlocksForLevel(ecLevel);
- int32_t numEcBytes = ecBlocks->GetTotalECCodeWords();
- int32_t numRSBlocks = ecBlocks->GetNumBlocks();
- int32_t numDataBytes = numBytes - numEcBytes;
- if (numDataBytes < numInputBytes + 3) {
- e = BCExceptionCannotFindBlockInfo;
- return;
- }
- qrCode->SetVersion(versionNumber);
- qrCode->SetNumTotalBytes(numBytes);
- qrCode->SetNumDataBytes(numDataBytes);
- qrCode->SetNumRSBlocks(numRSBlocks);
- qrCode->SetNumECBytes(numEcBytes);
- qrCode->SetMatrixWidth(version->GetDimensionForVersion());
-}
-
void InitQRCode(int32_t numInputBytes,
CBC_QRCoderErrorCorrectionLevel* ecLevel,
CBC_QRCoderMode* mode,
@@ -330,7 +233,7 @@ void InitQRCode(int32_t numInputBytes,
int32_t& e) {
qrCode->SetECLevel(ecLevel);
qrCode->SetMode(mode);
- for (int32_t versionNum = 1; versionNum <= 40; versionNum++) {
+ for (int32_t versionNum = 1; versionNum <= kMaxVersion; versionNum++) {
CBC_QRCoderVersion* version =
CBC_QRCoderVersion::GetVersionForNumber(versionNum, e);
if (e != BCExceptionNO)
@@ -353,23 +256,22 @@ void InitQRCode(int32_t numInputBytes,
e = BCExceptionCannotFindBlockInfo;
}
-CBC_CommonByteArray* GenerateECBytes(CBC_CommonByteArray* dataBytes,
- int32_t numEcBytesInBlock,
- int32_t& e) {
+std::unique_ptr<CBC_CommonByteArray> GenerateECBytes(
+ CBC_CommonByteArray* dataBytes,
+ int32_t numEcBytesInBlock,
+ int32_t& e) {
int32_t numDataBytes = dataBytes->Size();
std::vector<int32_t> toEncode(numDataBytes + numEcBytesInBlock);
- for (int32_t i = 0; i < numDataBytes; i++) {
- toEncode[i] = (dataBytes->At(i));
- }
+ for (int32_t i = 0; i < numDataBytes; ++i)
+ toEncode[i] = dataBytes->At(i);
CBC_ReedSolomonEncoder encode(CBC_ReedSolomonGF256::QRCodeField);
encode.Init();
encode.Encode(&toEncode, numEcBytesInBlock, e);
if (e != BCExceptionNO)
return nullptr;
- CBC_CommonByteArray* ecBytes = new CBC_CommonByteArray(numEcBytesInBlock);
- for (int32_t j = 0; j < numEcBytesInBlock; j++) {
- ecBytes->Set(j, toEncode[numDataBytes + j]);
- }
+ auto ecBytes = pdfium::MakeUnique<CBC_CommonByteArray>(numEcBytesInBlock);
+ for (int32_t i = 0; i < numEcBytesInBlock; ++i)
+ ecBytes->Set(i, toEncode[numDataBytes + i]);
return ecBytes;
}
@@ -386,7 +288,7 @@ int32_t GetSpanByVersion(CBC_QRCoderMode* modeFirst,
return 11;
if (versionNum >= 10 && versionNum <= 26)
return 15;
- if (versionNum >= 27 && versionNum <= 40)
+ if (versionNum >= 27 && versionNum <= kMaxVersion)
return 16;
e = BCExceptionNoSuchVersion;
return 0;
@@ -397,7 +299,7 @@ int32_t GetSpanByVersion(CBC_QRCoderMode* modeFirst,
return 13;
if (versionNum >= 10 && versionNum <= 26)
return 15;
- if (versionNum >= 27 && versionNum <= 40)
+ if (versionNum >= 27 && versionNum <= kMaxVersion)
return 17;
e = BCExceptionNoSuchVersion;
return 0;
@@ -408,7 +310,7 @@ int32_t GetSpanByVersion(CBC_QRCoderMode* modeFirst,
return 6;
if (versionNum >= 10 && versionNum <= 26)
return 8;
- if (versionNum >= 27 && versionNum <= 40)
+ if (versionNum >= 27 && versionNum <= kMaxVersion)
return 9;
e = BCExceptionNoSuchVersion;
return 0;
@@ -417,12 +319,10 @@ int32_t GetSpanByVersion(CBC_QRCoderMode* modeFirst,
}
int32_t CalculateMaskPenalty(CBC_CommonByteMatrix* matrix) {
- int32_t penalty = 0;
- penalty += CBC_QRCoderMaskUtil::ApplyMaskPenaltyRule1(matrix);
- penalty += CBC_QRCoderMaskUtil::ApplyMaskPenaltyRule2(matrix);
- penalty += CBC_QRCoderMaskUtil::ApplyMaskPenaltyRule3(matrix);
- penalty += CBC_QRCoderMaskUtil::ApplyMaskPenaltyRule4(matrix);
- return penalty;
+ return CBC_QRCoderMaskUtil::ApplyMaskPenaltyRule1(matrix) +
+ CBC_QRCoderMaskUtil::ApplyMaskPenaltyRule2(matrix) +
+ CBC_QRCoderMaskUtil::ApplyMaskPenaltyRule3(matrix) +
+ CBC_QRCoderMaskUtil::ApplyMaskPenaltyRule4(matrix);
}
int32_t ChooseMaskPattern(CBC_QRCoderBitVector* bits,
@@ -453,9 +353,9 @@ void GetNumDataBytesAndNumECBytesForBlockID(int32_t numTotalBytes,
int32_t blockID,
int32_t& numDataBytesInBlock,
int32_t& numECBytesInBlock) {
- if (blockID >= numRSBlocks) {
+ if (blockID >= numRSBlocks)
return;
- }
+
int32_t numRsBlocksInGroup2 = numTotalBytes % numRSBlocks;
int32_t numRsBlocksInGroup1 = numRSBlocks - numRsBlocksInGroup2;
int32_t numTotalBytesInGroup1 = numTotalBytes / numRSBlocks;
@@ -501,55 +401,48 @@ void TerminateBits(int32_t numDataBytes,
}
int32_t numPaddingBytes = numDataBytes - bits->sizeInBytes();
for (int32_t k = 0; k < numPaddingBytes; ++k) {
- if (k % 2 == 0) {
- bits->AppendBits(0xec, 8, e);
- if (e != BCExceptionNO)
- return;
- } else {
- bits->AppendBits(0x11, 8, e);
- if (e != BCExceptionNO)
- return;
- }
+ bits->AppendBits(k % 2 ? 0x11 : 0xec, 8, e);
+ if (e != BCExceptionNO)
+ return;
}
if (bits->Size() != capacity)
e = BCExceptionBitsNotEqualCacity;
}
-void MergeString(
- std::vector<std::pair<CBC_QRCoderMode*, CFX_ByteString>>* result,
- int32_t versionNum,
- int32_t& e) {
+void MergeString(std::vector<ModeStringPair>* result,
+ int32_t versionNum,
+ int32_t& e) {
size_t mergeNum = 0;
for (size_t i = 0; i + 1 < result->size(); i++) {
- auto* element1 = &(*result)[i];
- auto* element2 = &(*result)[i + 1];
- if (element1->first == CBC_QRCoderMode::sALPHANUMERIC) {
+ auto& element1 = (*result)[i];
+ auto& element2 = (*result)[i + 1];
+ if (element1.first == CBC_QRCoderMode::sALPHANUMERIC) {
int32_t tmp = GetSpanByVersion(CBC_QRCoderMode::sALPHANUMERIC,
CBC_QRCoderMode::sBYTE, versionNum, e);
if (e != BCExceptionNO)
return;
- if (element2->first == CBC_QRCoderMode::sBYTE &&
- element1->second.GetLength() < tmp) {
- element2->second = element1->second + element2->second;
+ if (element2.first == CBC_QRCoderMode::sBYTE &&
+ element1.second.GetLength() < tmp) {
+ element2.second = element1.second + element2.second;
result->erase(result->begin() + i);
i--;
mergeNum++;
}
- } else if (element1->first == CBC_QRCoderMode::sBYTE) {
- if (element2->first == CBC_QRCoderMode::sBYTE) {
- element1->second += element2->second;
+ } else if (element1.first == CBC_QRCoderMode::sBYTE) {
+ if (element2.first == CBC_QRCoderMode::sBYTE) {
+ element1.second += element2.second;
result->erase(result->begin() + i + 1);
i--;
mergeNum++;
}
- } else if (element1->first == CBC_QRCoderMode::sNUMERIC) {
+ } else if (element1.first == CBC_QRCoderMode::sNUMERIC) {
int32_t tmp = GetSpanByVersion(CBC_QRCoderMode::sNUMERIC,
CBC_QRCoderMode::sBYTE, versionNum, e);
if (e != BCExceptionNO)
return;
- if (element2->first == CBC_QRCoderMode::sBYTE &&
- element1->second.GetLength() < tmp) {
- element2->second = element1->second + element2->second;
+ if (element2.first == CBC_QRCoderMode::sBYTE &&
+ element1.second.GetLength() < tmp) {
+ element2.second = element1.second + element2.second;
result->erase(result->begin() + i);
i--;
mergeNum++;
@@ -558,79 +451,68 @@ void MergeString(
CBC_QRCoderMode::sALPHANUMERIC, versionNum, e);
if (e != BCExceptionNO)
return;
- if (element2->first == CBC_QRCoderMode::sALPHANUMERIC &&
- element1->second.GetLength() < tmp) {
- element2->second = element1->second + element2->second;
+ if (element2.first == CBC_QRCoderMode::sALPHANUMERIC &&
+ element1.second.GetLength() < tmp) {
+ element2.second = element1.second + element2.second;
result->erase(result->begin() + i);
i--;
mergeNum++;
}
}
}
- if (mergeNum == 0) {
- return;
- }
- MergeString(result, versionNum, e);
- if (e != BCExceptionNO)
- return;
+ if (mergeNum != 0)
+ MergeString(result, versionNum, e);
}
-void SplitString(
- const CFX_ByteString& content,
- std::vector<std::pair<CBC_QRCoderMode*, CFX_ByteString>>* result) {
- int32_t index = 0, flag = 0;
- while (
- (((uint8_t)content[index] >= 0xA1 && (uint8_t)content[index] <= 0xAA) ||
- ((uint8_t)content[index] >= 0xB0 && (uint8_t)content[index] <= 0xFA)) &&
- (index < content.GetLength())) {
+void SplitString(const CFX_ByteString& content,
+ std::vector<ModeStringPair>* result) {
+ int32_t index = 0;
+ while (index < content.GetLength() &&
+ ((content[index] >= 0xA1 && content[index] <= 0xAA) ||
+ (content[index] >= 0xB0 && content[index] <= 0xFA))) {
index += 2;
}
- if (index != flag) {
- result->push_back({CBC_QRCoderMode::sGBK, content.Mid(flag, index - flag)});
- }
- flag = index;
- if (index >= content.GetLength()) {
+ if (index)
+ result->push_back({CBC_QRCoderMode::sGBK, content.Mid(0, index)});
+ if (index >= content.GetLength())
return;
- }
- while (
- GetAlphaNumericCode((uint8_t)content[index]) == -1 &&
- !(((uint8_t)content[index] >= 0xA1 && (uint8_t)content[index] <= 0xAA) ||
- ((uint8_t)content[index] >= 0xB0 && (uint8_t)content[index] <= 0xFA)) &&
- (index < content.GetLength())) {
+
+ int32_t flag = index;
+ while (GetAlphaNumericCode(content[index]) == -1 &&
+ index < content.GetLength() &&
+ !((content[index] >= 0xA1 && content[index] <= 0xAA) ||
+ (content[index] >= 0xB0 && content[index] <= 0xFA))) {
#if _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_
- if (IsDBCSLeadByte((uint8_t)content[index]))
+ bool high = !!IsDBCSLeadByte(content[index]);
#else
- if ((uint8_t)content[index] > 127)
+ bool high = content[index] > 127;
#endif
- {
- index += 2;
- } else {
- index++;
- }
+ ++index;
+ if (high)
+ ++index;
}
if (index != flag) {
result->push_back(
{CBC_QRCoderMode::sBYTE, content.Mid(flag, index - flag)});
}
flag = index;
- if (index >= content.GetLength()) {
+ if (index >= content.GetLength())
return;
- }
- while (FXSYS_Isdigit((uint8_t)content[index]) &&
- (index < content.GetLength())) {
- index++;
- }
+
+ while (index < content.GetLength() && FXSYS_Isdigit(content[index]))
+ ++index;
+
if (index != flag) {
result->push_back(
{CBC_QRCoderMode::sNUMERIC, content.Mid(flag, index - flag)});
}
flag = index;
- if (index >= content.GetLength()) {
+ if (index >= content.GetLength())
return;
- }
- while (GetAlphaNumericCode((uint8_t)content[index]) != -1 &&
- (index < content.GetLength())) {
- index++;
+
+ while (index < content.GetLength() &&
+ GetAlphaNumericCode(content[index]) != -1) {
+ ++index;
}
if (index != flag) {
result->push_back(
@@ -649,9 +531,9 @@ CBC_QRCoderMode* ChooseMode(const CFX_ByteString& content,
bool hasNumeric = false;
bool hasAlphaNumeric = false;
for (int32_t i = 0; i < content.GetLength(); i++) {
- if (isdigit((uint8_t)content[i])) {
+ if (isdigit(content[i])) {
hasNumeric = true;
- } else if (GetAlphaNumericCode((uint8_t)content[i]) != -1) {
+ } else if (GetAlphaNumericCode(content[i]) != -1) {
hasAlphaNumeric = true;
} else {
return CBC_QRCoderMode::sBYTE;
@@ -677,9 +559,8 @@ void InterleaveWithECBytes(CBC_QRCoderBitVector* bits,
int32_t dataBytesOffset = 0;
int32_t maxNumDataBytes = 0;
int32_t maxNumEcBytes = 0;
- std::vector<CBC_QRCoderBlockPair*> blocks;
- int32_t i;
- for (i = 0; i < numRSBlocks; i++) {
+ std::vector<CBC_QRCoderBlockPair> blocks(numRSBlocks);
+ for (int32_t i = 0; i < numRSBlocks; i++) {
int32_t numDataBytesInBlock;
int32_t numEcBytesInBlosk;
GetNumDataBytesAndNumECBytesForBlockID(numTotalBytes, numDataBytes,
@@ -693,8 +574,7 @@ void InterleaveWithECBytes(CBC_QRCoderBitVector* bits,
return;
maxNumDataBytes = std::max(maxNumDataBytes, dataBytes->Size());
maxNumEcBytes = std::max(maxNumEcBytes, ecBytes->Size());
- blocks.push_back(
- new CBC_QRCoderBlockPair(std::move(dataBytes), std::move(ecBytes)));
+ blocks[i].SetData(std::move(dataBytes), std::move(ecBytes));
dataBytesOffset += numDataBytesInBlock;
}
if (numDataBytes != dataBytesOffset) {
@@ -703,7 +583,7 @@ void InterleaveWithECBytes(CBC_QRCoderBitVector* bits,
}
for (int32_t x = 0; x < maxNumDataBytes; x++) {
for (size_t j = 0; j < blocks.size(); j++) {
- const CBC_CommonByteArray* dataBytes = blocks[j]->GetDataBytes();
+ const CBC_CommonByteArray* dataBytes = blocks[j].GetDataBytes();
if (x < dataBytes->Size()) {
result->AppendBits(dataBytes->At(x), 8, e);
if (e != BCExceptionNO)
@@ -713,7 +593,7 @@ void InterleaveWithECBytes(CBC_QRCoderBitVector* bits,
}
for (int32_t y = 0; y < maxNumEcBytes; y++) {
for (size_t l = 0; l < blocks.size(); l++) {
- const CBC_CommonByteArray* ecBytes = blocks[l]->GetErrorCorrectionBytes();
+ const CBC_CommonByteArray* ecBytes = blocks[l].GetErrorCorrectionBytes();
if (y < ecBytes->Size()) {
result->AppendBits(ecBytes->At(y), 8, e);
if (e != BCExceptionNO)
@@ -721,188 +601,16 @@ void InterleaveWithECBytes(CBC_QRCoderBitVector* bits,
}
}
}
- for (size_t k = 0; k < blocks.size(); k++) {
- delete blocks[k];
- }
if (numTotalBytes != result->sizeInBytes())
e = BCExceptionSizeInBytesDiffer;
}
-void EncodeWithSpecifyVersion(const CFX_ByteString& content,
- CBC_QRCoderErrorCorrectionLevel* ecLevel,
- CBC_QRCoder* qrCode,
- int32_t versionSpecify,
- int32_t& e) {
- CFX_ByteString encoding = "utf8";
- CBC_QRCoderMode* mode = CBC_QRCoderMode::sBYTE;
- std::vector<std::pair<CBC_QRCoderMode*, CFX_ByteString>> splitResult;
- CBC_QRCoderBitVector dataBits;
- dataBits.Init();
- SplitString(content, &splitResult);
- MergeString(&splitResult, versionSpecify, e);
- if (e != BCExceptionNO)
- return;
- CBC_QRCoderMode* tempMode = nullptr;
- for (const auto& result : splitResult) {
- AppendBytes(result.second, result.first, &dataBits, encoding, e);
- if (e != BCExceptionNO)
- return;
- }
- int32_t numInputBytes = dataBits.sizeInBytes();
- CBC_QRCoderBitVector headerAndDataBits;
- headerAndDataBits.Init();
- InitQRCode(numInputBytes, versionSpecify, ecLevel, mode, qrCode, e);
- if (e != BCExceptionNO)
- return;
-
- AppendDataModeLenghInfo(splitResult, headerAndDataBits, tempMode, qrCode,
- encoding, e);
- if (e != BCExceptionNO)
- return;
-
- numInputBytes = headerAndDataBits.sizeInBytes();
- TerminateBits(qrCode->GetNumDataBytes(), &headerAndDataBits, e);
- if (e != BCExceptionNO)
- return;
-
- CBC_QRCoderBitVector finalBits;
- finalBits.Init();
- InterleaveWithECBytes(&headerAndDataBits, qrCode->GetNumTotalBytes(),
- qrCode->GetNumDataBytes(), qrCode->GetNumRSBlocks(),
- &finalBits, e);
- if (e != BCExceptionNO)
- return;
-
- auto matrix = pdfium::MakeUnique<CBC_CommonByteMatrix>(
- qrCode->GetMatrixWidth(), qrCode->GetMatrixWidth());
- matrix->Init();
- int32_t maskPattern = ChooseMaskPattern(
- &finalBits, qrCode->GetECLevel(), qrCode->GetVersion(), matrix.get(), e);
- if (e != BCExceptionNO)
- return;
-
- qrCode->SetMaskPattern(maskPattern);
- CBC_QRCoderMatrixUtil::BuildMatrix(&finalBits, qrCode->GetECLevel(),
- qrCode->GetVersion(),
- qrCode->GetMaskPattern(), matrix.get(), e);
- if (e != BCExceptionNO)
- return;
-
- qrCode->SetMatrix(std::move(matrix));
- if (!qrCode->IsValid())
- e = BCExceptionInvalidQRCode;
-}
-
-void EncodeWithAutoVersion(const CFX_ByteString& content,
- CBC_QRCoderErrorCorrectionLevel* ecLevel,
- CBC_QRCoder* qrCode,
- int32_t& e) {
- CFX_ByteString encoding = "utf8";
- CBC_QRCoderMode* mode = CBC_QRCoderMode::sBYTE;
- std::vector<std::pair<CBC_QRCoderMode*, CFX_ByteString>> splitResult;
- CBC_QRCoderBitVector dataBits;
- dataBits.Init();
- SplitString(content, &splitResult);
- MergeString(&splitResult, 8, e);
- if (e != BCExceptionNO)
- return;
- CBC_QRCoderMode* tempMode = nullptr;
- for (const auto& result : splitResult) {
- AppendBytes(result.second, result.first, &dataBits, encoding, e);
- if (e != BCExceptionNO)
- return;
- }
- int32_t numInputBytes = dataBits.sizeInBytes();
- InitQRCode(numInputBytes, ecLevel, mode, qrCode, e);
- if (e != BCExceptionNO)
- return;
- CBC_QRCoderBitVector headerAndDataBits;
- headerAndDataBits.Init();
- tempMode = nullptr;
- int32_t versionNum = qrCode->GetVersion();
-sign:
- AppendDataModeLenghInfo(splitResult, headerAndDataBits, tempMode, qrCode,
- encoding, e);
- if (e != BCExceptionNO) {
- goto catchException;
- }
- numInputBytes = headerAndDataBits.sizeInBytes();
- TerminateBits(qrCode->GetNumDataBytes(), &headerAndDataBits, e);
- if (e != BCExceptionNO) {
- goto catchException;
- }
-catchException:
- if (e != BCExceptionNO) {
- int32_t e1 = BCExceptionNO;
- InitQRCode(numInputBytes, ecLevel, mode, qrCode, e1);
- if (e1 != BCExceptionNO) {
- e = e1;
- return;
- }
- versionNum++;
- if (versionNum <= 40) {
- headerAndDataBits.Clear();
- e = BCExceptionNO;
- goto sign;
- } else {
- return;
- }
- }
-
- CBC_QRCoderBitVector finalBits;
- finalBits.Init();
- InterleaveWithECBytes(&headerAndDataBits, qrCode->GetNumTotalBytes(),
- qrCode->GetNumDataBytes(), qrCode->GetNumRSBlocks(),
- &finalBits, e);
- if (e != BCExceptionNO)
- return;
-
- auto matrix = pdfium::MakeUnique<CBC_CommonByteMatrix>(
- qrCode->GetMatrixWidth(), qrCode->GetMatrixWidth());
- matrix->Init();
- int32_t maskPattern = ChooseMaskPattern(
- &finalBits, qrCode->GetECLevel(), qrCode->GetVersion(), matrix.get(), e);
- if (e != BCExceptionNO)
- return;
-
- qrCode->SetMaskPattern(maskPattern);
- CBC_QRCoderMatrixUtil::BuildMatrix(&finalBits, qrCode->GetECLevel(),
- qrCode->GetVersion(),
- qrCode->GetMaskPattern(), matrix.get(), e);
- if (e != BCExceptionNO)
- return;
-
- qrCode->SetMatrix(std::move(matrix));
- if (!qrCode->IsValid())
- e = BCExceptionInvalidQRCode;
-}
-
} // namespace
CBC_QRCoderEncoder::CBC_QRCoderEncoder() {}
CBC_QRCoderEncoder::~CBC_QRCoderEncoder() {}
-void CBC_QRCoderEncoder::Encode(const CFX_ByteString& content,
- CBC_QRCoderErrorCorrectionLevel* ecLevel,
- CBC_QRCoder* qrCode,
- int32_t& e,
- int32_t versionSpecify) {
- if (versionSpecify == 0) {
- EncodeWithAutoVersion(content, ecLevel, qrCode, e);
- if (e != BCExceptionNO)
- return;
- } else if (versionSpecify > 0 && versionSpecify <= 40) {
- EncodeWithSpecifyVersion(content, ecLevel, qrCode, versionSpecify, e);
- if (e != BCExceptionNO)
- return;
- } else {
- e = BCExceptionVersionMust1_40;
- if (e != BCExceptionNO)
- return;
- }
-}
-
void CBC_QRCoderEncoder::Encode(const CFX_WideString& content,
CBC_QRCoderErrorCorrectionLevel* ecLevel,
CBC_QRCoder* qrCode,
diff --git a/fxbarcode/qrcode/BC_QRCoderEncoder.h b/fxbarcode/qrcode/BC_QRCoderEncoder.h
index 80cb0556a0..75611ff180 100644
--- a/fxbarcode/qrcode/BC_QRCoderEncoder.h
+++ b/fxbarcode/qrcode/BC_QRCoderEncoder.h
@@ -21,11 +21,6 @@ class CBC_QRCoderEncoder {
CBC_QRCoderEncoder();
~CBC_QRCoderEncoder();
- static void Encode(const CFX_ByteString& content,
- CBC_QRCoderErrorCorrectionLevel* ecLevel,
- CBC_QRCoder* qrCode,
- int32_t& e,
- int32_t versionSpecify);
static void Encode(const CFX_WideString& content,
CBC_QRCoderErrorCorrectionLevel* ecLevel,
CBC_QRCoder* qrCode,
diff --git a/xfa/fwl/cfwl_barcode.cpp b/xfa/fwl/cfwl_barcode.cpp
index bed8921e0e..87ecee13b5 100644
--- a/xfa/fwl/cfwl_barcode.cpp
+++ b/xfa/fwl/cfwl_barcode.cpp
@@ -201,8 +201,6 @@ void CFWL_Barcode::GenerateBarcodeImageCache() {
m_pBarcodeEngine->SetStartChar(m_cStartChar);
if (m_dwAttributeMask & FWL_BCDATTRIBUTE_ENDCHAR)
m_pBarcodeEngine->SetEndChar(m_cEndChar);
- if (m_dwAttributeMask & FWL_BCDATTRIBUTE_VERSION)
- m_pBarcodeEngine->SetVersion(0);
if (m_dwAttributeMask & FWL_BCDATTRIBUTE_ECLEVEL)
m_pBarcodeEngine->SetErrorCorrectionLevel(m_nECLevel);
if (m_dwAttributeMask & FWL_BCDATTRIBUTE_TRUNCATED)
diff --git a/xfa/fwl/cfwl_barcode.h b/xfa/fwl/cfwl_barcode.h
index 463c0a2e18..ce62d73dde 100644
--- a/xfa/fwl/cfwl_barcode.h
+++ b/xfa/fwl/cfwl_barcode.h
@@ -33,9 +33,8 @@ enum FWL_BCDAttribute {
FWL_BCDATTRIBUTE_WIDENARROWRATIO = 1 << 7,
FWL_BCDATTRIBUTE_STARTCHAR = 1 << 8,
FWL_BCDATTRIBUTE_ENDCHAR = 1 << 9,
- FWL_BCDATTRIBUTE_VERSION = 1 << 10,
- FWL_BCDATTRIBUTE_ECLEVEL = 1 << 11,
- FWL_BCDATTRIBUTE_TRUNCATED = 1 << 12
+ FWL_BCDATTRIBUTE_ECLEVEL = 1 << 10,
+ FWL_BCDATTRIBUTE_TRUNCATED = 1 << 11,
};
class CFWL_Barcode : public CFWL_Edit {
diff --git a/xfa/fwl/cfx_barcode.cpp b/xfa/fwl/cfx_barcode.cpp
index 1c16143de5..9d01ae26ef 100644
--- a/xfa/fwl/cfx_barcode.cpp
+++ b/xfa/fwl/cfx_barcode.cpp
@@ -261,19 +261,6 @@ bool CFX_Barcode::SetEndChar(char end) {
return m_pBCEngine && memptr ? (m_pBCEngine.get()->*memptr)(end) : false;
}
-bool CFX_Barcode::SetVersion(int32_t version) {
- typedef bool (CBC_CodeBase::*memptrtype)(int32_t);
- memptrtype memptr = nullptr;
- switch (GetType()) {
- case BC_QR_CODE:
- memptr = (memptrtype)&CBC_QRCode::SetVersion;
- break;
- default:
- break;
- }
- return m_pBCEngine && memptr ? (m_pBCEngine.get()->*memptr)(version) : false;
-}
-
bool CFX_Barcode::SetErrorCorrectionLevel(int32_t level) {
typedef bool (CBC_CodeBase::*memptrtype)(int32_t);
memptrtype memptr = nullptr;
diff --git a/xfa/fwl/cfx_barcode.h b/xfa/fwl/cfx_barcode.h
index f2445c2f08..20155ca0a2 100644
--- a/xfa/fwl/cfx_barcode.h
+++ b/xfa/fwl/cfx_barcode.h
@@ -54,7 +54,6 @@ class CFX_Barcode {
bool SetWideNarrowRatio(int32_t ratio);
bool SetStartChar(char start);
bool SetEndChar(char end);
- bool SetVersion(int32_t version);
bool SetErrorCorrectionLevel(int32_t level);
bool SetTruncated(bool truncated);