Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(420)

Side by Side Diff: xfa/fxfa/app/xfa_fontmgr.cpp

Issue 2095653002: Remove NULL in xfa/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "xfa/fxfa/include/xfa_fontmgr.h" 7 #include "xfa/fxfa/include/xfa_fontmgr.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <utility> 10 #include <utility>
(...skipping 1704 matching lines...) Expand 10 before | Expand all | Expand 10 after
1715 } 1715 }
1716 const XFA_FONTINFO* XFA_GetFontINFOByFontName( 1716 const XFA_FONTINFO* XFA_GetFontINFOByFontName(
1717 const CFX_WideStringC& wsFontName) { 1717 const CFX_WideStringC& wsFontName) {
1718 CFX_WideString wsFontNameTemp(wsFontName); 1718 CFX_WideString wsFontNameTemp(wsFontName);
1719 wsFontNameTemp.Remove(L' '); 1719 wsFontNameTemp.Remove(L' ');
1720 uint32_t dwCurFontNameHash = 1720 uint32_t dwCurFontNameHash =
1721 FX_HashCode_GetW(wsFontNameTemp.AsStringC(), true); 1721 FX_HashCode_GetW(wsFontNameTemp.AsStringC(), true);
1722 int32_t iStart = 0; 1722 int32_t iStart = 0;
1723 int32_t iEnd = sizeof(g_XFAFontsMap) / sizeof(XFA_FONTINFO) - 1; 1723 int32_t iEnd = sizeof(g_XFAFontsMap) / sizeof(XFA_FONTINFO) - 1;
1724 int32_t iMid = 0; 1724 int32_t iMid = 0;
1725 const XFA_FONTINFO* pFontInfo = NULL; 1725 const XFA_FONTINFO* pFontInfo = nullptr;
1726 do { 1726 do {
1727 iMid = (iStart + iEnd) / 2; 1727 iMid = (iStart + iEnd) / 2;
1728 uint32_t dwFontNameHash = g_XFAFontsMap[iMid].dwFontNameHash; 1728 uint32_t dwFontNameHash = g_XFAFontsMap[iMid].dwFontNameHash;
1729 if (dwFontNameHash == dwCurFontNameHash) { 1729 if (dwFontNameHash == dwCurFontNameHash) {
1730 pFontInfo = &g_XFAFontsMap[iMid]; 1730 pFontInfo = &g_XFAFontsMap[iMid];
1731 break; 1731 break;
1732 } else if (dwFontNameHash < dwCurFontNameHash) { 1732 } else if (dwFontNameHash < dwCurFontNameHash) {
1733 iStart = iMid + 1; 1733 iStart = iMid + 1;
1734 } else { 1734 } else {
1735 iEnd = iMid - 1; 1735 iEnd = iMid - 1;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
1791 } 1791 }
1792 1792
1793 CFGAS_GEFont* CXFA_DefFontMgr::GetDefaultFont( 1793 CFGAS_GEFont* CXFA_DefFontMgr::GetDefaultFont(
1794 CXFA_FFDoc* hDoc, 1794 CXFA_FFDoc* hDoc,
1795 const CFX_WideStringC& wsFontFamily, 1795 const CFX_WideStringC& wsFontFamily,
1796 uint32_t dwFontStyles, 1796 uint32_t dwFontStyles,
1797 uint16_t wCodePage) { 1797 uint16_t wCodePage) {
1798 IFGAS_FontMgr* pFDEFontMgr = hDoc->GetApp()->GetFDEFontMgr(); 1798 IFGAS_FontMgr* pFDEFontMgr = hDoc->GetApp()->GetFDEFontMgr();
1799 CFGAS_GEFont* pFont = 1799 CFGAS_GEFont* pFont =
1800 pFDEFontMgr->LoadFont(L"Arial Narrow", dwFontStyles, wCodePage); 1800 pFDEFontMgr->LoadFont(L"Arial Narrow", dwFontStyles, wCodePage);
1801 if (!pFont) 1801 if (!pFont)
Lei Zhang 2016/06/23 18:21:44 braces
dsinclair 2016/06/23 18:46:53 Done.
1802 pFont = 1802 pFont = pFDEFontMgr->LoadFont((const FX_WCHAR*)nullptr, dwFontStyles,
1803 pFDEFontMgr->LoadFont((const FX_WCHAR*)NULL, dwFontStyles, wCodePage); 1803 wCodePage);
1804 ASSERT(pFont); 1804 ASSERT(pFont);
1805 if (pFont) { 1805 if (pFont) {
1806 m_CacheFonts.Add(pFont); 1806 m_CacheFonts.Add(pFont);
1807 } 1807 }
1808 return pFont; 1808 return pFont;
1809 } 1809 }
1810 struct XFA_PDFFONTNAME { 1810 struct XFA_PDFFONTNAME {
1811 const FX_CHAR* lpPsName; 1811 const FX_CHAR* lpPsName;
1812 const FX_CHAR* lpNormal; 1812 const FX_CHAR* lpNormal;
1813 const FX_CHAR* lpBold; 1813 const FX_CHAR* lpBold;
(...skipping 13 matching lines...) Expand all
1827 if (pair.second) 1827 if (pair.second)
1828 pair.second->Release(); 1828 pair.second->Release();
1829 } 1829 }
1830 } 1830 }
1831 CFGAS_GEFont* CXFA_PDFFontMgr::FindFont(CFX_ByteString strPsName, 1831 CFGAS_GEFont* CXFA_PDFFontMgr::FindFont(CFX_ByteString strPsName,
1832 FX_BOOL bBold, 1832 FX_BOOL bBold,
1833 FX_BOOL bItalic, 1833 FX_BOOL bItalic,
1834 CPDF_Font** pDstPDFFont, 1834 CPDF_Font** pDstPDFFont,
1835 FX_BOOL bStrictMatch) { 1835 FX_BOOL bStrictMatch) {
1836 CPDF_Document* pDoc = m_pDoc->GetPDFDoc(); 1836 CPDF_Document* pDoc = m_pDoc->GetPDFDoc();
1837 if (pDoc == NULL) { 1837 if (!pDoc) {
1838 return NULL; 1838 return nullptr;
1839 } 1839 }
1840 CPDF_Dictionary* pFontSetDict = 1840 CPDF_Dictionary* pFontSetDict =
1841 pDoc->GetRoot()->GetDictBy("AcroForm")->GetDictBy("DR"); 1841 pDoc->GetRoot()->GetDictBy("AcroForm")->GetDictBy("DR");
1842 if (!pFontSetDict) { 1842 if (!pFontSetDict) {
1843 return NULL; 1843 return nullptr;
1844 } 1844 }
1845 pFontSetDict = pFontSetDict->GetDictBy("Font"); 1845 pFontSetDict = pFontSetDict->GetDictBy("Font");
1846 if (!pFontSetDict) { 1846 if (!pFontSetDict) {
1847 return NULL; 1847 return nullptr;
1848 } 1848 }
1849 strPsName.Remove(' '); 1849 strPsName.Remove(' ');
1850 IFGAS_FontMgr* pFDEFontMgr = m_pDoc->GetApp()->GetFDEFontMgr(); 1850 IFGAS_FontMgr* pFDEFontMgr = m_pDoc->GetApp()->GetFDEFontMgr();
1851 for (const auto& it : *pFontSetDict) { 1851 for (const auto& it : *pFontSetDict) {
1852 const CFX_ByteString& key = it.first; 1852 const CFX_ByteString& key = it.first;
1853 CPDF_Object* pObj = it.second; 1853 CPDF_Object* pObj = it.second;
1854 if (!PsNameMatchDRFontName(strPsName.AsStringC(), bBold, bItalic, key, 1854 if (!PsNameMatchDRFontName(strPsName.AsStringC(), bBold, bItalic, key,
1855 bStrictMatch)) { 1855 bStrictMatch)) {
1856 continue; 1856 continue;
1857 } 1857 }
1858 CPDF_Dictionary* pFontDict = ToDictionary(pObj->GetDirect()); 1858 CPDF_Dictionary* pFontDict = ToDictionary(pObj->GetDirect());
1859 if (!pFontDict || pFontDict->GetStringBy("Type") != "Font") { 1859 if (!pFontDict || pFontDict->GetStringBy("Type") != "Font") {
1860 return NULL; 1860 return nullptr;
1861 } 1861 }
1862 CPDF_Font* pPDFFont = pDoc->LoadFont(pFontDict); 1862 CPDF_Font* pPDFFont = pDoc->LoadFont(pFontDict);
1863 if (!pPDFFont) { 1863 if (!pPDFFont) {
1864 return NULL; 1864 return nullptr;
1865 } 1865 }
1866 if (!pPDFFont->IsEmbedded()) { 1866 if (!pPDFFont->IsEmbedded()) {
1867 *pDstPDFFont = pPDFFont; 1867 *pDstPDFFont = pPDFFont;
1868 return NULL; 1868 return nullptr;
1869 } 1869 }
1870 return CFGAS_GEFont::LoadFont(&pPDFFont->m_Font, pFDEFontMgr); 1870 return CFGAS_GEFont::LoadFont(&pPDFFont->m_Font, pFDEFontMgr);
1871 } 1871 }
1872 return NULL; 1872 return nullptr;
1873 } 1873 }
1874 1874
1875 CFGAS_GEFont* CXFA_PDFFontMgr::GetFont(const CFX_WideStringC& wsFontFamily, 1875 CFGAS_GEFont* CXFA_PDFFontMgr::GetFont(const CFX_WideStringC& wsFontFamily,
1876 uint32_t dwFontStyles, 1876 uint32_t dwFontStyles,
1877 CPDF_Font** pPDFFont, 1877 CPDF_Font** pPDFFont,
1878 FX_BOOL bStrictMatch) { 1878 FX_BOOL bStrictMatch) {
1879 uint32_t dwHashCode = FX_HashCode_GetW(wsFontFamily, false); 1879 uint32_t dwHashCode = FX_HashCode_GetW(wsFontFamily, false);
1880 CFX_ByteString strKey; 1880 CFX_ByteString strKey;
1881 strKey.Format("%u%u", dwHashCode, dwFontStyles); 1881 strKey.Format("%u%u", dwHashCode, dwFontStyles);
1882 auto it = m_FontMap.find(strKey); 1882 auto it = m_FontMap.find(strKey);
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
2053 m_PDFFontMgrMap[hDoc].reset(new CXFA_PDFFontMgr(hDoc)); 2053 m_PDFFontMgrMap[hDoc].reset(new CXFA_PDFFontMgr(hDoc));
2054 } 2054 }
2055 2055
2056 void CXFA_FontMgr::ReleaseDocFonts(CXFA_FFDoc* hDoc) { 2056 void CXFA_FontMgr::ReleaseDocFonts(CXFA_FFDoc* hDoc) {
2057 m_PDFFontMgrMap.erase(hDoc); 2057 m_PDFFontMgrMap.erase(hDoc);
2058 } 2058 }
2059 2059
2060 void CXFA_FontMgr::SetDefFontMgr(std::unique_ptr<CXFA_DefFontMgr> pFontMgr) { 2060 void CXFA_FontMgr::SetDefFontMgr(std::unique_ptr<CXFA_DefFontMgr> pFontMgr) {
2061 m_pDefFontMgr = std::move(pFontMgr); 2061 m_pDefFontMgr = std::move(pFontMgr);
2062 } 2062 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698