| // 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 |
| |
| #ifndef CORE_FXGE_CFX_FONTMGR_H_ |
| #define CORE_FXGE_CFX_FONTMGR_H_ |
| |
| #include <stddef.h> |
| #include <stdint.h> |
| |
| #include <array> |
| #include <map> |
| #include <memory> |
| #include <tuple> |
| |
| #include "core/fxcrt/bytestring.h" |
| #include "core/fxcrt/cfx_read_only_container_stream.h" |
| #include "core/fxcrt/fixed_size_data_vector.h" |
| #include "core/fxcrt/observed_ptr.h" |
| #include "core/fxcrt/retain_ptr.h" |
| #include "core/fxcrt/span.h" |
| #include "core/fxge/cfx_face.h" |
| #include "core/fxge/freetype/fx_freetype.h" |
| |
| #if defined(PDF_USE_SKIA) |
| #include "third_party/skia/include/core/SkRefCnt.h" // nogncheck |
| #endif |
| |
| class CFX_Font; |
| class CFX_FontMapper; |
| class CFX_GlyphCache; |
| |
| #if defined(PDF_USE_SKIA) |
| class SkFontMgr; |
| class SkTypeface; |
| #endif |
| |
| class CFX_FontMgr { |
| public: |
| class FontCacheEntry final : public Retainable, public Observable { |
| public: |
| CONSTRUCT_VIA_MAKE_RETAIN; |
| |
| RetainPtr<CFX_ReadOnlyFixedSizeDataVectorStream> FontStream() { |
| return font_stream_; |
| } |
| void SetFace(uint32_t face_index, CFX_Face* face); |
| CFX_Face* GetFace(uint32_t face_index) const; |
| |
| private: |
| explicit FontCacheEntry(FixedSizeDataVector<uint8_t>&& data); |
| ~FontCacheEntry() override; |
| |
| const RetainPtr<CFX_ReadOnlyFixedSizeDataVectorStream> font_stream_; |
| std::array<ObservedPtr<CFX_Face>, 16> ttc_faces_; |
| }; |
| |
| // `index` must be less than `CFX_FontMapper::kNumStandardFonts`. |
| static pdfium::span<const uint8_t> GetStandardFont(size_t index); |
| static pdfium::span<const uint8_t> GetGenericSansFont(); |
| static pdfium::span<const uint8_t> GetGenericSerifFont(); |
| |
| enum class FontBackend { kFreeType, kFontations }; // Currently skia-only. |
| |
| explicit CFX_FontMgr(FontBackend backend); |
| ~CFX_FontMgr(); |
| |
| RetainPtr<FontCacheEntry> GetFontCacheEntry(const ByteString& face_name, |
| int weight, |
| bool italic); |
| RetainPtr<FontCacheEntry> AddFontCacheEntry( |
| const ByteString& face_name, |
| int weight, |
| bool italic, |
| FixedSizeDataVector<uint8_t> data); |
| |
| RetainPtr<FontCacheEntry> GetTTCFontCacheEntry(size_t ttc_size, |
| uint32_t checksum); |
| RetainPtr<FontCacheEntry> AddTTCFontCacheEntry( |
| size_t ttc_size, |
| uint32_t checksum, |
| FixedSizeDataVector<uint8_t> data); |
| |
| RetainPtr<CFX_GlyphCache> GetGlyphCache(const CFX_Font* font); |
| |
| // Always present. |
| CFX_FontMapper* GetBuiltinMapper() const { return builtin_mapper_.get(); } |
| |
| FXFT_LibraryRec* GetFTLibrary() const { return ft_library_.get(); } |
| bool FTLibrarySupportsHinting() const { return ft_library_supports_hinting_; } |
| |
| #if defined(PDF_USE_SKIA) |
| sk_sp<SkTypeface> MakeSkTypeface(pdfium::span<const uint8_t> font_span); |
| #endif |
| |
| private: |
| using NameWeightItalic = std::tuple<ByteString, int, bool>; |
| using SizeChecksum = std::tuple<size_t, uint32_t>; |
| |
| // Must come before |builtin_mapper_| and |face_map_|. |
| ScopedFXFTLibraryRec const ft_library_; |
| #if defined(PDF_USE_SKIA) |
| const FontBackend font_backend_; |
| sk_sp<SkFontMgr> skia_fontmgr_; |
| sk_sp<SkFontMgr> skia_fontmgr_fallback_; |
| #endif |
| std::unique_ptr<CFX_FontMapper> builtin_mapper_; |
| std::map<NameWeightItalic, ObservedPtr<FontCacheEntry>> face_map_; |
| std::map<SizeChecksum, ObservedPtr<FontCacheEntry>> ttc_face_map_; |
| std::map<CFX_Face*, ObservedPtr<CFX_GlyphCache>> glyph_cache_map_; |
| const bool ft_library_supports_hinting_; |
| }; |
| |
| #if defined(PDF_USE_SKIA) && defined(PDF_USE_SKIA_CUSTOM_FONT_MANAGER) |
| extern sk_sp<SkFontMgr> pdfium_skia_custom_font_manager(); |
| #endif // defined(PDF_USE_SKIA) && defined(PDF_USE_SKIA_CUSTOM_FONT_MANAGER) |
| |
| #endif // CORE_FXGE_CFX_FONTMGR_H_ |