Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: xfa/fxbarcode/qrcode/BC_QRDataBlock.cpp

Issue 1936733002: Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, part 10 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Better names. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 // Original code is licensed as follows: 6 // Original code is licensed as follows:
7 /* 7 /*
8 * Copyright 2007 ZXing authors 8 * Copyright 2007 ZXing authors
9 * 9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); 10 * Licensed under the Apache License, Version 2.0 (the "License");
(...skipping 23 matching lines...) Expand all
34 : m_numDataCodewords(numDataCodewords), m_codewords(codewords) {} 34 : m_numDataCodewords(numDataCodewords), m_codewords(codewords) {}
35 CBC_QRDataBlock::~CBC_QRDataBlock() { 35 CBC_QRDataBlock::~CBC_QRDataBlock() {
36 delete m_codewords; 36 delete m_codewords;
37 } 37 }
38 int32_t CBC_QRDataBlock::GetNumDataCodewords() { 38 int32_t CBC_QRDataBlock::GetNumDataCodewords() {
39 return m_numDataCodewords; 39 return m_numDataCodewords;
40 } 40 }
41 CFX_ByteArray* CBC_QRDataBlock::GetCodewords() { 41 CFX_ByteArray* CBC_QRDataBlock::GetCodewords() {
42 return m_codewords; 42 return m_codewords;
43 } 43 }
44 CFX_PtrArray* CBC_QRDataBlock::GetDataBlocks( 44 CFX_ArrayTemplate<CBC_QRDataBlock*>* CBC_QRDataBlock::GetDataBlocks(
45 CFX_ByteArray* rawCodewords, 45 CFX_ByteArray* rawCodewords,
46 CBC_QRCoderVersion* version, 46 CBC_QRCoderVersion* version,
47 CBC_QRCoderErrorCorrectionLevel* ecLevel, 47 CBC_QRCoderErrorCorrectionLevel* ecLevel,
48 int32_t& e) { 48 int32_t& e) {
49 if (rawCodewords->GetSize() != version->GetTotalCodeWords()) { 49 if (rawCodewords->GetSize() != version->GetTotalCodeWords()) {
50 e = BCExceptionIllegalArgument; 50 e = BCExceptionIllegalArgument;
51 BC_EXCEPTION_CHECK_ReturnValue(e, NULL); 51 BC_EXCEPTION_CHECK_ReturnValue(e, NULL);
52 } 52 }
53 CBC_QRCoderECBlocks* ecBlocks = version->GetECBlocksForLevel(ecLevel); 53 CBC_QRCoderECBlocks* ecBlocks = version->GetECBlocksForLevel(ecLevel);
54 int32_t totalBlocks = 0; 54 int32_t totalBlocks = 0;
55 CFX_ArrayTemplate<CBC_QRCoderECB*>* ecBlockArray = ecBlocks->GetECBlocks(); 55 CFX_ArrayTemplate<CBC_QRCoderECB*>* ecBlockArray = ecBlocks->GetECBlocks();
56 int32_t i = 0; 56 int32_t i = 0;
57 for (i = 0; i < ecBlockArray->GetSize(); i++) { 57 for (i = 0; i < ecBlockArray->GetSize(); i++) {
58 totalBlocks += (*ecBlockArray)[i]->GetCount(); 58 totalBlocks += (*ecBlockArray)[i]->GetCount();
59 } 59 }
60 std::unique_ptr<CFX_PtrArray> result(new CFX_PtrArray()); 60 std::unique_ptr<CFX_ArrayTemplate<CBC_QRDataBlock*>> result(
61 new CFX_ArrayTemplate<CBC_QRDataBlock*>());
61 result->SetSize(totalBlocks); 62 result->SetSize(totalBlocks);
62 int32_t numResultBlocks = 0; 63 int32_t numResultBlocks = 0;
63 for (int32_t j = 0; j < ecBlockArray->GetSize(); j++) { 64 for (int32_t j = 0; j < ecBlockArray->GetSize(); j++) {
64 CBC_QRCoderECB* ecBlock = (*ecBlockArray)[j]; 65 CBC_QRCoderECB* ecBlock = (*ecBlockArray)[j];
65 for (int32_t k = 0; k < ecBlock->GetCount(); k++) { 66 for (int32_t k = 0; k < ecBlock->GetCount(); k++) {
66 int32_t numDataCodewords = ecBlock->GetDataCodeWords(); 67 int32_t numDataCodewords = ecBlock->GetDataCodeWords();
67 int32_t numBlockCodewords = 68 int32_t numBlockCodewords =
68 ecBlocks->GetECCodeWordsPerBlock() + numDataCodewords; 69 ecBlocks->GetECCodeWordsPerBlock() + numDataCodewords;
69 CFX_ByteArray* bytearray = new CFX_ByteArray(); 70 CFX_ByteArray* bytearray = new CFX_ByteArray();
70 bytearray->SetSize(numBlockCodewords); 71 bytearray->SetSize(numBlockCodewords);
71 (*result)[numResultBlocks++] = 72 (*result)[numResultBlocks++] =
72 new CBC_QRDataBlock(numDataCodewords, bytearray); 73 new CBC_QRDataBlock(numDataCodewords, bytearray);
73 } 74 }
74 } 75 }
75 int32_t shorterBlocksTotalCodewords = 76 int32_t shorterBlocksTotalCodewords = (*result)[0]->m_codewords->GetSize();
76 ((CBC_QRDataBlock*)(*result)[0])->m_codewords->GetSize();
77 int32_t longerBlocksStartAt = result->GetSize() - 1; 77 int32_t longerBlocksStartAt = result->GetSize() - 1;
78 while (longerBlocksStartAt >= 0) { 78 while (longerBlocksStartAt >= 0) {
79 int32_t numCodewords = ((CBC_QRDataBlock*)(*result)[longerBlocksStartAt]) 79 int32_t numCodewords =
80 ->m_codewords->GetSize(); 80 (*result)[longerBlocksStartAt]->m_codewords->GetSize();
81 if (numCodewords == shorterBlocksTotalCodewords) { 81 if (numCodewords == shorterBlocksTotalCodewords) {
82 break; 82 break;
83 } 83 }
84 longerBlocksStartAt--; 84 longerBlocksStartAt--;
85 } 85 }
86 longerBlocksStartAt++; 86 longerBlocksStartAt++;
87 int32_t shorterBlocksNumDataCodewords = 87 int32_t shorterBlocksNumDataCodewords =
88 shorterBlocksTotalCodewords - ecBlocks->GetECCodeWordsPerBlock(); 88 shorterBlocksTotalCodewords - ecBlocks->GetECCodeWordsPerBlock();
89 int32_t rawCodewordsOffset = 0; 89 int32_t rawCodewordsOffset = 0;
90 int32_t x = 0; 90 int32_t x = 0;
91 for (int32_t k = 0; k < shorterBlocksNumDataCodewords; k++) { 91 for (int32_t k = 0; k < shorterBlocksNumDataCodewords; k++) {
92 for (x = 0; x < numResultBlocks; x++) { 92 for (x = 0; x < numResultBlocks; x++) {
93 (*(((CBC_QRDataBlock*)(*result)[x])->m_codewords))[k] = 93 (*((*result)[x]->m_codewords))[k] = (*rawCodewords)[rawCodewordsOffset++];
94 }
95 }
96 for (x = longerBlocksStartAt; x < numResultBlocks; x++) {
97 (*((*result)[x]->m_codewords))[shorterBlocksNumDataCodewords] =
98 (*rawCodewords)[rawCodewordsOffset++];
99 }
100 int32_t max = (*result)[0]->m_codewords->GetSize();
101 for (i = shorterBlocksNumDataCodewords; i < max; i++) {
102 for (int32_t y = 0; y < numResultBlocks; y++) {
103 int32_t iOffset = y < longerBlocksStartAt ? i : i + 1;
104 (*((*result)[y]->m_codewords))[iOffset] =
94 (*rawCodewords)[rawCodewordsOffset++]; 105 (*rawCodewords)[rawCodewordsOffset++];
95 } 106 }
96 } 107 }
97 for (x = longerBlocksStartAt; x < numResultBlocks; x++) {
98 (*(((CBC_QRDataBlock*)(*result)[x])
99 ->m_codewords))[shorterBlocksNumDataCodewords] =
100 (*rawCodewords)[rawCodewordsOffset++];
101 }
102 int32_t max = ((CBC_QRDataBlock*)(*result)[0])->m_codewords->GetSize();
103 for (i = shorterBlocksNumDataCodewords; i < max; i++) {
104 for (int32_t y = 0; y < numResultBlocks; y++) {
105 int32_t iOffset = y < longerBlocksStartAt ? i : i + 1;
106 (*(((CBC_QRDataBlock*)(*result)[y])->m_codewords))[iOffset] =
107 (*rawCodewords)[rawCodewordsOffset++];
108 }
109 }
110 return result.release(); 108 return result.release();
111 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698