// Copyright 2016 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #include "core/fpdfdoc/cpvt_fontmap.h" #include #include "core/fpdfapi/font/cpdf_font.h" #include "core/fpdfapi/parser/cpdf_dictionary.h" #include "core/fpdfapi/parser/cpdf_document.h" #include "core/fpdfapi/parser/cpdf_reference.h" #include "core/fpdfapi/parser/fpdf_parser_utility.h" #include "core/fpdfdoc/cpdf_interactiveform.h" #include "core/fxcrt/check.h" #include "core/fxcrt/fx_codepage.h" #include "core/fxcrt/notreached.h" CPVT_FontMap::CPVT_FontMap(CPDF_Document* pDoc, RetainPtr pResDict, RetainPtr pDefFont, const ByteString& sDefFontAlias) : m_pDocument(pDoc), m_pResDict(std::move(pResDict)), m_pDefFont(std::move(pDefFont)), m_sDefFontAlias(sDefFontAlias) {} CPVT_FontMap::~CPVT_FontMap() = default; void CPVT_FontMap::SetupAnnotSysPDFFont() { if (!m_pDocument || !m_pResDict) return; RetainPtr pPDFFont = CPDF_InteractiveForm::AddNativeInteractiveFormFont(m_pDocument, &m_sSysFontAlias); if (!pPDFFont) return; RetainPtr pFontList = m_pResDict->GetMutableDictFor("Font"); if (ValidateFontResourceDict(pFontList.Get()) && !pFontList->KeyExist(m_sSysFontAlias)) { pFontList->SetNewFor(m_sSysFontAlias, m_pDocument, pPDFFont->GetFontDictObjNum()); } m_pSysFont = std::move(pPDFFont); } RetainPtr CPVT_FontMap::GetPDFFont(int32_t nFontIndex) { switch (nFontIndex) { case 0: return m_pDefFont; case 1: if (!m_pSysFont) SetupAnnotSysPDFFont(); return m_pSysFont; default: return nullptr; } } ByteString CPVT_FontMap::GetPDFFontAlias(int32_t nFontIndex) { switch (nFontIndex) { case 0: return m_sDefFontAlias; case 1: if (!m_pSysFont) SetupAnnotSysPDFFont(); return m_sSysFontAlias; default: return ByteString(); } } int32_t CPVT_FontMap::GetWordFontIndex(uint16_t word, FX_Charset charset, int32_t nFontIndex) { NOTREACHED_NORETURN(); } int32_t CPVT_FontMap::CharCodeFromUnicode(int32_t nFontIndex, uint16_t word) { NOTREACHED_NORETURN(); } FX_Charset CPVT_FontMap::CharSetFromUnicode(uint16_t word, FX_Charset nOldCharset) { NOTREACHED_NORETURN(); }