blob: 6c2e08a9fb0a06a30ec7be2304498a74fba38c9d [file] [log] [blame]
Dan Sinclaira98600a2016-03-21 15:15:56 -04001// Copyright 2016 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/*
7 * Copyright 2011 ZXing authors
8 *
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 */
21
Dan Sinclaire7786682017-03-29 15:18:41 -040022#include "fxbarcode/cbc_upca.h"
Dan Sinclaira98600a2016-03-21 15:15:56 -040023
Lei Zhang1badb852017-04-20 15:58:56 -070024#include <memory>
25
Dan Sinclaire7786682017-03-29 15:18:41 -040026#include "fxbarcode/oned/BC_OnedUPCAWriter.h"
Tom Sepezea23e0a2017-05-01 14:24:19 -070027#include "third_party/base/ptr_util.h"
Dan Sinclaira98600a2016-03-21 15:15:56 -040028
Tom Sepezea23e0a2017-05-01 14:24:19 -070029CBC_UPCA::CBC_UPCA() : CBC_OneCode(pdfium::MakeUnique<CBC_OnedUPCAWriter>()) {}
Dan Sinclaira98600a2016-03-21 15:15:56 -040030
tsepez52d78562016-06-06 12:57:44 -070031CBC_UPCA::~CBC_UPCA() {}
Dan Sinclaira98600a2016-03-21 15:15:56 -040032
33CFX_WideString CBC_UPCA::Preprocess(const CFX_WideStringC& contents) {
Lei Zhang1badb852017-04-20 15:58:56 -070034 CBC_OnedUPCAWriter* pWriter = GetOnedUPCAWriter();
tsepez52d78562016-06-06 12:57:44 -070035 CFX_WideString encodeContents = pWriter->FilterContents(contents);
Dan Sinclaira98600a2016-03-21 15:15:56 -040036 int32_t length = encodeContents.GetLength();
37 if (length <= 11) {
38 for (int32_t i = 0; i < 11 - length; i++)
Dan Sinclair812e96c2017-03-13 16:43:37 -040039 encodeContents = wchar_t('0') + encodeContents;
Dan Sinclaira98600a2016-03-21 15:15:56 -040040
41 CFX_ByteString byteString = encodeContents.UTF8Encode();
tsepez52d78562016-06-06 12:57:44 -070042 int32_t checksum = pWriter->CalcChecksum(byteString);
Dan Sinclaira98600a2016-03-21 15:15:56 -040043 byteString += checksum - 0 + '0';
44 encodeContents = byteString.UTF8Decode();
45 }
46 if (length > 12)
47 encodeContents = encodeContents.Mid(0, 12);
48
49 return encodeContents;
50}
51
Lei Zhang1badb852017-04-20 15:58:56 -070052bool CBC_UPCA::Encode(const CFX_WideStringC& contents, bool isDevice) {
53 if (contents.IsEmpty())
tsepezd19e9122016-11-02 15:43:18 -070054 return false;
Lei Zhang1badb852017-04-20 15:58:56 -070055
Dan Sinclaira98600a2016-03-21 15:15:56 -040056 BCFORMAT format = BCFORMAT_UPC_A;
57 int32_t outWidth = 0;
58 int32_t outHeight = 0;
59 CFX_WideString encodeContents = Preprocess(contents);
60 CFX_ByteString byteString = encodeContents.UTF8Encode();
61 m_renderContents = encodeContents;
tsepez52d78562016-06-06 12:57:44 -070062
Lei Zhang1badb852017-04-20 15:58:56 -070063 CBC_OnedUPCAWriter* pWriter = GetOnedUPCAWriter();
tsepez52d78562016-06-06 12:57:44 -070064 pWriter->Init();
Lei Zhang1badb852017-04-20 15:58:56 -070065 std::unique_ptr<uint8_t, FxFreeDeleter> data(
66 pWriter->Encode(byteString, format, outWidth, outHeight));
67 if (!data)
Tom Sepezc8017b22017-01-31 13:02:10 -080068 return false;
Lei Zhang1badb852017-04-20 15:58:56 -070069 return pWriter->RenderResult(encodeContents.AsStringC(), data.get(), outWidth,
70 isDevice);
Dan Sinclaira98600a2016-03-21 15:15:56 -040071}
72
tsepezd19e9122016-11-02 15:43:18 -070073bool CBC_UPCA::RenderDevice(CFX_RenderDevice* device,
Lei Zhang1badb852017-04-20 15:58:56 -070074 const CFX_Matrix* matrix) {
75 return GetOnedUPCAWriter()->RenderDeviceResult(device, matrix,
76 m_renderContents.AsStringC());
Dan Sinclaira98600a2016-03-21 15:15:56 -040077}
78
weili29b8ad02016-06-14 18:20:04 -070079BC_TYPE CBC_UPCA::GetType() {
80 return BC_UPCA;
81}
Lei Zhang1badb852017-04-20 15:58:56 -070082
83CBC_OnedUPCAWriter* CBC_UPCA::GetOnedUPCAWriter() {
84 return static_cast<CBC_OnedUPCAWriter*>(m_pBCWriter.get());
85}