1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 // Original code is licensed as follows:
7 /*
8 * Copyright 2006-2007 Jeremias Maerki.
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License");
11 * you may not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS,
18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
21 */
22
23 #include "xfa/src/fxbarcode/barcode.h"
24 #include "xfa/src/fxbarcode/BC_Dimension.h"
25 #include "BC_Encoder.h"
26 #include "BC_SymbolShapeHint.h"
27 #include "BC_SymbolInfo.h"
28 #include "BC_EncoderContext.h"
29 #include "BC_HighLevelEncoder.h"
30 #include "BC_Base256Encoder.h"
CBC_Base256Encoder()31 CBC_Base256Encoder::CBC_Base256Encoder() {}
~CBC_Base256Encoder()32 CBC_Base256Encoder::~CBC_Base256Encoder() {}
getEncodingMode()33 int32_t CBC_Base256Encoder::getEncodingMode() {
34 return BASE256_ENCODATION;
35 }
Encode(CBC_EncoderContext & context,int32_t & e)36 void CBC_Base256Encoder::Encode(CBC_EncoderContext& context, int32_t& e) {
37 CFX_WideString buffer;
38 buffer += (FX_WCHAR)'\0';
39 while (context.hasMoreCharacters()) {
40 FX_WCHAR c = context.getCurrentChar();
41 buffer += c;
42 context.m_pos++;
43 int32_t newMode = CBC_HighLevelEncoder::lookAheadTest(
44 context.m_msg, context.m_pos, getEncodingMode());
45 if (newMode != getEncodingMode()) {
46 context.signalEncoderChange(newMode);
47 break;
48 }
49 }
50 int32_t dataCount = buffer.GetLength() - 1;
51 FX_CHAR buf[128];
52 #if defined(_FX_WINAPI_PARTITION_APP_)
53 memset(buf, 0, sizeof(FX_CHAR) * 128);
54 _itoa_s(dataCount, buf, 128, 10);
55 #else
56 FXSYS_itoa(dataCount, buf, 10);
57 #endif
58 buffer.SetAt(0, FX_WCHAR(*buf) - '0');
59 int32_t lengthFieldSize = 1;
60 int32_t currentSize =
61 context.getCodewordCount() + dataCount + lengthFieldSize;
62 context.updateSymbolInfo(currentSize, e);
63 if (e != BCExceptionNO) {
64 return;
65 }
66 FX_BOOL mustPad = (context.m_symbolInfo->m_dataCapacity - currentSize) > 0;
67 if (context.hasMoreCharacters() || mustPad) {
68 if (dataCount <= 249) {
69 buffer.SetAt(0, (FX_WCHAR)dataCount);
70 } else if (dataCount > 249 && dataCount <= 1555) {
71 buffer.SetAt(0, (FX_WCHAR)((dataCount / 250) + 249));
72 buffer.Insert(1, (FX_WCHAR)(dataCount % 250));
73 } else {
74 e = BCExceptionIllegalStateMessageLengthInvalid;
75 return;
76 }
77 }
78 for (int32_t i = 0, c = buffer.GetLength(); i < c; i++) {
79 context.writeCodeword(
80 randomize255State(buffer.GetAt(i), context.getCodewordCount() + 1));
81 }
82 }
randomize255State(FX_WCHAR ch,int32_t codewordPosition)83 FX_WCHAR CBC_Base256Encoder::randomize255State(FX_WCHAR ch,
84 int32_t codewordPosition) {
85 int32_t pseudoRandom = ((149 * codewordPosition) % 255) + 1;
86 int32_t tempVariable = ch + pseudoRandom;
87 if (tempVariable <= 255) {
88 return (FX_WCHAR)tempVariable;
89 } else {
90 return (FX_WCHAR)(tempVariable - 256);
91 }
92 }
93