diff options
author | Lei Zhang <thestig@chromium.org> | 2017-04-20 15:58:56 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-21 00:54:04 +0000 |
commit | 1badb85e5c3a4b4cd42ca1a2b223d6b3bc67cc4a (patch) | |
tree | 55bf63857592387531797b0f08e0a6effc0f40c9 /fxbarcode/cbc_code39.cpp | |
parent | aeee187c927c07f47a9e5886a417dcc58badefb6 (diff) | |
download | pdfium-1badb85e5c3a4b4cd42ca1a2b223d6b3bc67cc4a.tar.xz |
Change more fxbarcode to use return values.
Change-Id: Idcc05fb8c5a1448f552b4db5ae131ad82aef4d59
Reviewed-on: https://pdfium-review.googlesource.com/4258
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fxbarcode/cbc_code39.cpp')
-rw-r--r-- | fxbarcode/cbc_code39.cpp | 64 |
1 files changed, 25 insertions, 39 deletions
diff --git a/fxbarcode/cbc_code39.cpp b/fxbarcode/cbc_code39.cpp index 94b7602974..8b7e08b67e 100644 --- a/fxbarcode/cbc_code39.cpp +++ b/fxbarcode/cbc_code39.cpp @@ -21,53 +21,41 @@ #include "fxbarcode/cbc_code39.h" +#include <memory> + #include "fxbarcode/oned/BC_OnedCode39Writer.h" CBC_Code39::CBC_Code39() : CBC_OneCode(new CBC_OnedCode39Writer) {} CBC_Code39::~CBC_Code39() {} -bool CBC_Code39::Encode(const CFX_WideStringC& contents, - bool isDevice, - int32_t& e) { - if (contents.IsEmpty()) { - e = BCExceptionNoContents; +bool CBC_Code39::Encode(const CFX_WideStringC& contents, bool isDevice) { + if (contents.IsEmpty()) return false; - } + BCFORMAT format = BCFORMAT_CODE_39; int32_t outWidth = 0; int32_t outHeight = 0; - CFX_WideString filtercontents = - static_cast<CBC_OnedCode39Writer*>(m_pBCWriter.get()) - ->FilterContents(contents); - CFX_WideString renderContents = - static_cast<CBC_OnedCode39Writer*>(m_pBCWriter.get()) - ->RenderTextContents(contents); + auto* pWriter = GetOnedCode39Writer(); + CFX_WideString filtercontents = pWriter->FilterContents(contents); + CFX_WideString renderContents = pWriter->RenderTextContents(contents); m_renderContents = renderContents; CFX_ByteString byteString = filtercontents.UTF8Encode(); - uint8_t* data = static_cast<CBC_OnedCode39Writer*>(m_pBCWriter.get()) - ->Encode(byteString, format, outWidth, outHeight, e); - if (e != BCExceptionNO) - return false; - static_cast<CBC_OneDimWriter*>(m_pBCWriter.get()) - ->RenderResult(renderContents.AsStringC(), data, outWidth, isDevice, e); - FX_Free(data); - if (e != BCExceptionNO) + std::unique_ptr<uint8_t, FxFreeDeleter> data( + pWriter->Encode(byteString, format, outWidth, outHeight)); + if (!data) return false; - return true; + return pWriter->RenderResult(renderContents.AsStringC(), data.get(), outWidth, + isDevice); } bool CBC_Code39::RenderDevice(CFX_RenderDevice* device, - const CFX_Matrix* matrix, - int32_t& e) { - CFX_WideString renderCon = - static_cast<CBC_OnedCode39Writer*>(m_pBCWriter.get()) - ->encodedContents(m_renderContents.AsStringC(), e); - static_cast<CBC_OneDimWriter*>(m_pBCWriter.get()) - ->RenderDeviceResult(device, matrix, renderCon.AsStringC(), e); - if (e != BCExceptionNO) + const CFX_Matrix* matrix) { + auto* pWriter = GetOnedCode39Writer(); + CFX_WideString renderCon; + if (!pWriter->encodedContents(m_renderContents.AsStringC(), &renderCon)) return false; - return true; + return pWriter->RenderDeviceResult(device, matrix, renderCon.AsStringC()); } BC_TYPE CBC_Code39::GetType() { @@ -75,15 +63,13 @@ BC_TYPE CBC_Code39::GetType() { } bool CBC_Code39::SetTextLocation(BC_TEXT_LOC location) { - if (m_pBCWriter) - return static_cast<CBC_OnedCode39Writer*>(m_pBCWriter.get()) - ->SetTextLocation(location); - return false; + return GetOnedCode39Writer()->SetTextLocation(location); +} + +bool CBC_Code39::SetWideNarrowRatio(int8_t ratio) { + return GetOnedCode39Writer()->SetWideNarrowRatio(ratio); } -bool CBC_Code39::SetWideNarrowRatio(int32_t ratio) { - if (m_pBCWriter) - return static_cast<CBC_OnedCode39Writer*>(m_pBCWriter.get()) - ->SetWideNarrowRatio(ratio); - return false; +CBC_OnedCode39Writer* CBC_Code39::GetOnedCode39Writer() { + return static_cast<CBC_OnedCode39Writer*>(m_pBCWriter.get()); } |