From 11a6becb837a16972ffda8f94c8fb69ae100f3f4 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Wed, 25 Jul 2018 23:25:55 +0000 Subject: Remove some ASSERT (and cast) in favor of checked cases. Because it is a stronger pattern at runtime. These were found by essentially: grep -ni '\bassert\b.*type' Change-Id: I913d77139053e8980528597a6633e1859e5204c4 Reviewed-on: https://pdfium-review.googlesource.com/38890 Reviewed-by: Lei Zhang Commit-Queue: Tom Sepez --- core/fpdfapi/cmaps/fpdf_cmaps.cpp | 92 +++++++++++++++---------- core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp | 21 ++++-- 2 files changed, 69 insertions(+), 44 deletions(-) (limited to 'core/fpdfapi') diff --git a/core/fpdfapi/cmaps/fpdf_cmaps.cpp b/core/fpdfapi/cmaps/fpdf_cmaps.cpp index ad1091910c..630942bde7 100644 --- a/core/fpdfapi/cmaps/fpdf_cmaps.cpp +++ b/core/fpdfapi/cmaps/fpdf_cmaps.cpp @@ -74,31 +74,40 @@ uint16_t FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, uint32_t charcode) { return 0; } - while (pMap) { - if (!pMap->m_pWordMap) - return 0; - if (pMap->m_WordMapType == FXCMAP_CMap::Single) { - const auto* begin = reinterpret_cast(pMap->m_pWordMap); - const auto* end = begin + pMap->m_WordCount; - const auto* found = std::lower_bound( - begin, end, loword, [](const SingleCmap& element, uint16_t code) { - return element.code < code; - }); - if (found != end && found->code == loword) - return found->cid; - } else { - ASSERT(pMap->m_WordMapType == FXCMAP_CMap::Range); - const auto* begin = reinterpret_cast(pMap->m_pWordMap); - const auto* end = begin + pMap->m_WordCount; - const auto* found = std::lower_bound( - begin, end, loword, [](const RangeCmap& element, uint16_t code) { - return element.high < code; - }); - if (found != end && loword >= found->low && loword <= found->high) - return found->cid + loword - found->low; + while (pMap && pMap->m_pWordMap) { + switch (pMap->m_WordMapType) { + case FXCMAP_CMap::Single: { + const auto* begin = + reinterpret_cast(pMap->m_pWordMap); + const auto* end = begin + pMap->m_WordCount; + const auto* found = std::lower_bound( + begin, end, loword, [](const SingleCmap& element, uint16_t code) { + return element.code < code; + }); + if (found != end && found->code == loword) + return found->cid; + break; + } + case FXCMAP_CMap::Range: { + const auto* begin = + reinterpret_cast(pMap->m_pWordMap); + const auto* end = begin + pMap->m_WordCount; + const auto* found = std::lower_bound( + begin, end, loword, [](const RangeCmap& element, uint16_t code) { + return element.high < code; + }); + if (found != end && loword >= found->low && loword <= found->high) + return found->cid + loword - found->low; + break; + } + default: { + NOTREACHED(); + break; + } } pMap = FindNextCMap(pMap); } + return 0; } @@ -110,22 +119,31 @@ uint32_t FPDFAPI_CharCodeFromCID(const FXCMAP_CMap* pMap, uint16_t cid) { // second while loop.) ASSERT(pMap); while (pMap) { - if (pMap->m_WordMapType == FXCMAP_CMap::Single) { - const auto* pCur = reinterpret_cast(pMap->m_pWordMap); - const auto* pEnd = pCur + pMap->m_WordCount; - while (pCur < pEnd) { - if (pCur->cid == cid) - return pCur->code; - ++pCur; + switch (pMap->m_WordMapType) { + case FXCMAP_CMap::Single: { + const auto* pCur = + reinterpret_cast(pMap->m_pWordMap); + const auto* pEnd = pCur + pMap->m_WordCount; + while (pCur < pEnd) { + if (pCur->cid == cid) + return pCur->code; + ++pCur; + } + break; + } + case FXCMAP_CMap::Range: { + const auto* pCur = reinterpret_cast(pMap->m_pWordMap); + const auto* pEnd = pCur + pMap->m_WordCount; + while (pCur < pEnd) { + if (cid >= pCur->cid && cid <= pCur->cid + pCur->high - pCur->low) + return pCur->low + cid - pCur->cid; + ++pCur; + } + break; } - } else { - ASSERT(pMap->m_WordMapType == FXCMAP_CMap::Range); - const auto* pCur = reinterpret_cast(pMap->m_pWordMap); - const auto* pEnd = pCur + pMap->m_WordCount; - while (pCur < pEnd) { - if (cid >= pCur->cid && cid <= pCur->cid + pCur->high - pCur->low) - return pCur->low + cid - pCur->cid; - ++pCur; + default: { + NOTREACHED(); + break; } } pMap = FindNextCMap(pMap); diff --git a/core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp b/core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp index 9693bc48ff..e2fa801a58 100644 --- a/core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp +++ b/core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp @@ -264,13 +264,20 @@ const CPDF_ContentMark* CPDF_PageContentGenerator::ProcessContentMarks( } // If there are parameters, write properties, direct or indirect. - if (item->GetParamType() == CPDF_ContentMarkItem::DirectDict) { - CPDF_StringArchiveStream archive_stream(buf); - item->GetParam()->WriteTo(&archive_stream, nullptr); - *buf << " "; - } else { - ASSERT(item->GetParamType() == CPDF_ContentMarkItem::PropertiesDict); - *buf << "/" << item->GetPropertyName() << " "; + switch (item->GetParamType()) { + case CPDF_ContentMarkItem::DirectDict: { + CPDF_StringArchiveStream archive_stream(buf); + item->GetParam()->WriteTo(&archive_stream, nullptr); + *buf << " "; + break; + } + case CPDF_ContentMarkItem::PropertiesDict: { + *buf << "/" << item->GetPropertyName() << " "; + break; + } + default: + NOTREACHED(); + break; } // Write BDC (begin dictionary content) operator. -- cgit v1.2.3