Fix the life cicle of the FcCharSet objects.
[platform/core/uifw/dali-adaptor.git] / dali / internal / text / text-abstraction / font-client-plugin-impl.h
1 #ifndef DALI_INTERNAL_TEXT_ABSTRACTION_FONT_CLIENT_PLUGIN_IMPL_H
2 #define DALI_INTERNAL_TEXT_ABSTRACTION_FONT_CLIENT_PLUGIN_IMPL_H
3
4 /*
5  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/devel-api/text-abstraction/bitmap-font.h>
23 #include <dali/devel-api/text-abstraction/font-metrics.h>
24 #include <dali/devel-api/text-abstraction/glyph-info.h>
25 #include <dali/internal/text/text-abstraction/font-client-impl.h>
26 #include <dali/devel-api/adaptor-framework/pixel-buffer.h>
27
28 #ifdef ENABLE_VECTOR_BASED_TEXT_RENDERING
29 #include <dali/internal/text/glyphy/vector-font-cache.h>
30 #else
31 class VectorFontCache;
32 #endif
33
34 // EXTERNAL INCLUDES
35 #include <ft2build.h>
36 #include FT_FREETYPE_H
37 #include FT_GLYPH_H
38 #include FT_OUTLINE_H
39 #include FT_STROKER_H
40 #include FT_SYNTHESIS_H
41
42 // forward declarations of font config types.
43 struct _FcCharSet;
44 struct _FcFontSet;
45 struct _FcPattern;
46
47 namespace Dali
48 {
49
50 namespace TextAbstraction
51 {
52
53 namespace Internal
54 {
55
56 /**
57  * @brief Type used for indices addressing the vector with front descriptions of validated fonts.
58  */
59 typedef uint32_t FontDescriptionId;
60
61 /**
62  * @brief Type used for indices addressing the vector with pixel buffers.
63  */
64 typedef uint32_t PixelBufferId;
65
66 /**
67  * @brief Vector of character sets.
68  */
69 typedef Vector<_FcCharSet*> CharacterSetList;
70
71 /**
72  * @brief FontClient implementation.
73  */
74 struct FontClient::Plugin
75 {
76   struct FontIdCacheItem
77   {
78     FontDescription::Type type; ///< The type of font.
79     FontId                id;   ///< Index to the cache of fonts for the specified type.
80   };
81
82   /**
83    * @brief Caches an list of fallback fonts for a given font-description
84    */
85   struct FallbackCacheItem
86   {
87     FallbackCacheItem( FontDescription&& fontDescription, FontList* fallbackFonts, CharacterSetList* characterSets );
88
89     FontDescription fontDescription; ///< The font description.
90     FontList* fallbackFonts;         ///< The list of fallback fonts for the given font-description.
91     CharacterSetList* characterSets; ///< The list of character sets for the given font-description.
92   };
93
94   /**
95    * @brief Caches an index to the vector of font descriptions for a given font.
96    */
97   struct FontDescriptionCacheItem
98   {
99     FontDescriptionCacheItem( const FontDescription& fontDescription,
100                               FontDescriptionId index );
101     FontDescriptionCacheItem( FontDescription&& fontDescription,
102                               FontDescriptionId index );
103
104     FontDescription fontDescription; ///< The font description.
105     FontDescriptionId index;         ///< Index to the vector of font descriptions.
106   };
107
108   /**
109    * @brief Caches the font id of the pair font point size and the index to the vector of font descriptions of validated fonts.
110    */
111   struct FontDescriptionSizeCacheItem
112   {
113     FontDescriptionSizeCacheItem( FontDescriptionId validatedFontId,
114                                   PointSize26Dot6 requestedPointSize,
115                                   FontId fontId );
116
117     FontDescriptionId validatedFontId;    ///< Index to the vector with font descriptions.
118     PointSize26Dot6   requestedPointSize; ///< The font point size.
119     FontId            fontId;             ///< The font identifier.
120   };
121
122   /**
123    * @brief Caches the FreeType face and font metrics of the triplet 'path to the font file name, font point size and face index'.
124    */
125   struct FontFaceCacheItem
126   {
127     FontFaceCacheItem( FT_Face ftFace,
128                        const FontPath& path,
129                        PointSize26Dot6 requestedPointSize,
130                        FaceIndex face,
131                        const FontMetrics& metrics );
132
133     FontFaceCacheItem( FT_Face ftFace,
134                        const FontPath& path,
135                        PointSize26Dot6 requestedPointSize,
136                        FaceIndex face,
137                        const FontMetrics& metrics,
138                        int fixedSizeIndex,
139                        float fixedWidth,
140                        float fixedHeight,
141                        bool hasColorTables );
142
143     FT_Face mFreeTypeFace;               ///< The FreeType face.
144     FontPath mPath;                      ///< The path to the font file name.
145     PointSize26Dot6 mRequestedPointSize; ///< The font point size.
146     FaceIndex mFaceIndex;                ///< The face index.
147     FontMetrics mMetrics;                ///< The font metrics.
148     _FcCharSet* mCharacterSet;           ///< Pointer with the range of characters.
149     int mFixedSizeIndex;                 ///< Index to the fixed size table for the requested size.
150     float mFixedWidthPixels;             ///< The height in pixels (fixed size bitmaps only)
151     float mFixedHeightPixels;            ///< The height in pixels (fixed size bitmaps only)
152     unsigned int mVectorFontId;          ///< The ID of the equivalent vector-based font
153     FontId mFontId;                      ///< Index to the vector with the cache of font's ids.
154     bool mIsFixedSizeBitmap : 1;         ///< Whether the font has fixed size bitmaps.
155     bool mHasColorTables    : 1;         ///< Whether the font has color tables.
156   };
157
158   struct EllipsisItem
159   {
160     PointSize26Dot6 requestedPointSize;
161     GlyphInfo glyph;
162   };
163
164  /**
165   * @brief Caches pixel buffers.
166   */
167  struct PixelBufferCacheItem
168  {
169    Devel::PixelBuffer pixelBuffer; ///< The pixel buffer loaded from the url.
170    std::string url;                ///< The url.
171  };
172
173   /**
174    * @brief Caches embedded items.
175    */
176  struct EmbeddedItem
177  {
178    PixelBufferId pixelBufferId; ///< Index to the vector of pixel buffers
179    unsigned int width;          ///< The desired width.
180    unsigned int height;         ///< The desired height.
181  };
182
183  /**
184   * @brief Stores a bitmap font and its pixel buffers per glyph.
185   */
186  struct BitmapFontCacheItem
187  {
188    BitmapFont font;                              ///< The bitmap font.
189    std::vector<Devel::PixelBuffer> pixelBuffers; ///< The pixel buffers of the glyphs.
190    FontId id;                                    ///< Index to the vector with the cache of font's ids.
191  };
192
193   /**
194    * Constructor.
195    *
196    * Initializes the FreeType library.
197    * Initializes the dpi values.
198    *
199    * @param[in] horizontalDpi The horizontal dpi.
200    * @param[in] verticalDpi The vertical dpi.
201    */
202   Plugin( unsigned int horizontalDpi, unsigned int verticalDpi );
203
204   /**
205    * Default destructor.
206    *
207    * Frees any allocated resource.
208    */
209   ~Plugin();
210
211   /**
212    * @copydoc Dali::TextAbstraction::FontClient::SetDpi()
213    */
214   void SetDpi( unsigned int horizontalDpi, unsigned int verticalDpi );
215
216   /**
217    * @copydoc Dali::TextAbstraction::FontClient::ResetSystemDefaults()
218    */
219   void ResetSystemDefaults();
220
221   /**
222    * @copydoc Dali::TextAbstraction::FontClient::SetDefaultFont()
223    */
224   void SetDefaultFont( const FontDescription& preferredFontDescription );
225
226   /**
227    * @copydoc Dali::TextAbstraction::FontClient::GetDefaultPlatformFontDescription()
228    */
229   void GetDefaultPlatformFontDescription( FontDescription& fontDescription );
230
231   /**
232    * @copydoc Dali::TextAbstraction::FontClient::GetDefaultFonts()
233    */
234   void GetDefaultFonts( FontList& defaultFonts );
235
236   /**
237    * @copydoc Dali::TextAbstraction::FontClient::GetSystemFonts()
238    */
239   void GetSystemFonts( FontList& systemFonts );
240
241   /**
242    * @copydoc Dali::TextAbstraction::FontClient::GetDescription()
243    */
244   void GetDescription( FontId id, FontDescription& fontDescription ) const;
245
246   /**
247    * @copydoc Dali::TextAbstraction::FontClient::GetPointSize()
248    */
249   PointSize26Dot6 GetPointSize( FontId id );
250
251   /**
252    * @copydoc Dali::TextAbstraction::FontClient::IsCharacterSupportedByFont()
253    */
254   bool IsCharacterSupportedByFont( FontId fontId, Character character );
255
256   /**
257    * @brief Finds within the @p fontList a font which support the @p carcode.
258    *
259    * @param[in] fontList A list of font paths, family, width, weight and slant.
260    * @param[in] characterSetList A list that contains a character set for each description of the font list.
261    * @param[in] charcode The character for which a font is needed.
262    * @param[in] requestedPointSize The point size in 26.6 fractional points.
263    * @param[in] preferColor @e true if a color font is preferred.
264    *
265    * @return A valid font identifier, or zero if no font is found.
266    */
267   FontId FindFontForCharacter( const FontList& fontList,
268                                const CharacterSetList& characterSetList,
269                                Character charcode,
270                                PointSize26Dot6 requestedPointSize,
271                                bool preferColor );
272
273   /**
274    * @copydoc Dali::TextAbstraction::FontClient::FindDefaultFont()
275    */
276   FontId FindDefaultFont( Character charcode,
277                           PointSize26Dot6 requestedPointSize,
278                           bool preferColor );
279
280   /**
281    * @copydoc Dali::TextAbstraction::FontClient::FindFallbackFont()
282    */
283   FontId FindFallbackFont( Character charcode,
284                            const FontDescription& preferredFontDescription,
285                            PointSize26Dot6 requestedPointSize,
286                            bool preferColor );
287
288   /**
289    * @see Dali::TextAbstraction::FontClient::GetFontId( const FontPath& path, PointSize26Dot6 requestedPointSize, FaceIndex faceIndex )
290    *
291    * @param[in] cacheDescription Whether to cache the font description.
292    */
293   FontId GetFontId( const FontPath& path,
294                     PointSize26Dot6 requestedPointSize,
295                     FaceIndex faceIndex,
296                     bool cacheDescription );
297
298   /**
299    * @copydoc Dali::TextAbstraction::FontClient::GetFontId( const FontDescription& preferredFontDescription, PointSize26Dot6 requestedPointSize, FaceIndex faceIndex )
300    */
301   FontId GetFontId( const FontDescription& fontDescription,
302                     PointSize26Dot6 requestedPointSize,
303                     FaceIndex faceIndex );
304
305   /**
306    * @copydoc Dali::TextAbstraction::FontClient::GetFontId( const BitmapFont& bitmapFont )
307    */
308   FontId GetFontId( const BitmapFont& bitmapFont );
309
310   /**
311    * @copydoc Dali::TextAbstraction::FontClient::IsScalable( const FontPath& path )
312    */
313   bool IsScalable( const FontPath& path );
314
315   /**
316    * @copydoc Dali::TextAbstraction::FontClient::IsScalable( const FontDescription& fontDescription )
317    */
318   bool IsScalable( const FontDescription& fontDescription );
319
320   /**
321    * @copydoc Dali::TextAbstraction::FontClient::GetFixedSizes()
322    */
323   void GetFixedSizes( const FontPath& path, Dali::Vector< PointSize26Dot6>& sizes );
324
325   /**
326    * @copydoc Dali::TextAbstraction::FontClient::GetFixedSizes()
327    */
328   void GetFixedSizes( const FontDescription& fontDescription,
329                       Dali::Vector< PointSize26Dot6 >& sizes );
330
331   /**
332    * @copydoc Dali::TextAbstraction::FontClient::HasItalicStyle()
333    */
334   bool HasItalicStyle( FontId fontId ) const;
335
336   /**
337    * @copydoc Dali::TextAbstraction::FontClient::GetFontMetrics()
338    */
339   void GetFontMetrics( FontId fontId, FontMetrics& metrics );
340
341   /**
342    * @copydoc Dali::TextAbstraction::FontClient::GetGlyphIndex()
343    */
344   GlyphIndex GetGlyphIndex( FontId fontId, Character charcode );
345
346   /**
347    * @copydoc Dali::TextAbstraction::FontClient::GetGlyphMetrics()
348    */
349   bool GetGlyphMetrics( GlyphInfo* array, uint32_t size, GlyphType type, bool horizontal );
350
351   /**
352    * Helper for GetGlyphMetrics when using bitmaps
353    */
354   bool GetBitmapMetrics( GlyphInfo* array, uint32_t size, bool horizontal );
355
356   /**
357    * Helper for GetGlyphMetrics when using vectors
358    */
359   bool GetVectorMetrics( GlyphInfo* array, uint32_t size, bool horizontal );
360
361   /**
362    * @copydoc Dali::TextAbstraction::FontClient::CreateBitmap( FontId fontId, GlyphIndex glyphIndex, bool isItalicRequired, bool isBoldRequired, Dali::TextAbstraction::FontClient::GlyphBufferData& data, int outlineWidth )
363    */
364   void CreateBitmap( FontId fontId, GlyphIndex glyphIndex, bool isItalicRequired, bool isBoldRequired, Dali::TextAbstraction::FontClient::GlyphBufferData& data, int outlineWidth );
365
366   /**
367    * @copydoc Dali::TextAbstraction::FontClient::CreateBitmap( FontId fontId, GlyphIndex glyphIndex, int outlineWidth )
368    */
369   PixelData CreateBitmap( FontId fontId, GlyphIndex glyphIndex, int outlineWidth );
370
371   /**
372    * @copydoc Dali::TextAbstraction::FontClient::CreateVectorBlob()
373    */
374   void CreateVectorBlob( FontId fontId, GlyphIndex glyphIndex, VectorBlob*& blob, unsigned int& blobLength, unsigned int& nominalWidth, unsigned int& nominalHeight );
375
376   /**
377    * @copydoc Dali::TextAbstraction::FontClient::GetEllipsisGlyph()
378    */
379   const GlyphInfo& GetEllipsisGlyph( PointSize26Dot6 requestedPointSize );
380
381   /**
382    * @copydoc Dali::TextAbstraction::FontClient::IsColorGlyph()
383    */
384   bool IsColorGlyph( FontId fontId, GlyphIndex glyphIndex );
385
386   /**
387    * @copydoc Dali::TextAbstraction::FontClient::CreateEmbeddedItem()
388    */
389   GlyphIndex CreateEmbeddedItem( const TextAbstraction::FontClient::EmbeddedItemDescription& description, Pixel::Format& pixelFormat );
390
391   /**
392    * @copydoc Dali::TextAbstraction::Internal::FontClient::GetFreetypeFace()
393    */
394   FT_FaceRec_* GetFreetypeFace( FontId fontId );
395
396   /**
397    * @copydoc Dali::TextAbstraction::Internal::FontClient::GetFontType()
398    */
399   FontDescription::Type GetFontType( FontId fontId );
400
401   /**
402    * @copydoc Dali::TextAbstraction::FontClient::AddCustomFontDirectory()
403    */
404   bool AddCustomFontDirectory( const FontPath& path );
405
406 private:
407
408   /**
409    * @brief Caches the fonts present in the platform.
410    *
411    * Calls GetFcFontSet() to retrieve the fonts.
412    */
413   void InitSystemFonts();
414
415   /**
416    * @brief Gets the FontDescription which matches the given pattern.
417    *
418    * @note The reference counter of the @p characterSet has been increased. Call FcCharSetDestroy to decrease it.
419    *
420    * @param[in] pattern pattern to match against.
421    * @param[out] fontDescription the resultant fontDescription that matched.
422    * @param[out] characterSet The character set for that pattern.
423    * @return true if match found.
424    */
425   bool MatchFontDescriptionToPattern( _FcPattern* pattern, Dali::TextAbstraction::FontDescription& fontDescription, _FcCharSet** characterSet );
426
427   /**
428    * @brief Creates a font family pattern used to match fonts.
429    *
430    * @note Need to call FcPatternDestroy to free the resources.
431    *
432    * @param[in] fontDescription The font to cache.
433    *
434    * @return The pattern.
435    */
436   _FcPattern* CreateFontFamilyPattern( const FontDescription& fontDescription ) const;
437
438   /**
439    * @brief Retrieves the fonts present in the platform.
440    *
441    * @note Need to call FcFontSetDestroy to free the allocated resources.
442    *
443    * @return A font fonfig data structure with the platform's fonts.
444    */
445   _FcFontSet* GetFcFontSet() const;
446
447   /**
448    * @brief Retrieves a font config object's value from a pattern.
449    *
450    * @param[in] pattern The font config pattern.
451    * @param[in] n The object.
452    * @param[out] string The object's value.
453    *
454    * @return @e true if the operation is successful.
455    */
456   bool GetFcString( const _FcPattern* const pattern, const char* const n, std::string& string );
457
458   /**
459    * @brief Retrieves a font config object's value from a pattern.
460    *
461    * @param[in] pattern The font config pattern.
462    * @param[in] n The object.
463    * @param[out] intVal The object's value.
464    *
465    * @return @e true if the operation is successful.
466    */
467   bool GetFcInt( const _FcPattern* const pattern, const char* const n, int& intVal );
468
469   /**
470    * @brief Creates a font.
471    *
472    * @param[in] path The path to the font file name.
473    * @param[in] requestedPointSize The requested point size.
474    * @param[in] faceIndex A face index.
475    * @param[in] cacheDescription Whether to cache the font description.
476    *
477    * @return The font identifier.
478    */
479   FontId CreateFont( const FontPath& path,
480                      PointSize26Dot6 requestedPointSize,
481                      FaceIndex faceIndex,
482                      bool cacheDescription );
483
484   /**
485    * @brief Copy the color bitmap given in @p srcBuffer to @p data.
486    *
487    * @param[out] data The bitmap data.
488    * @param[in] srcWidth The width of the bitmap.
489    * @param[in] srcHeight The height of the bitmap.
490    * @param[in] srcBuffer The buffer of the bitmap.
491    */
492   void ConvertBitmap( TextAbstraction::FontClient::GlyphBufferData& data, unsigned int srcWidth, unsigned int srcHeight, const unsigned char* const srcBuffer );
493
494   /**
495    * @brief Copy the FreeType bitmap to the given buffer.
496    *
497    * @param[out] data The bitmap data.
498    * @param[in] srcBitmap The FreeType bitmap.
499    * @param[in] isShearRequired Whether the bitmap needs a shear transform (for software italics).
500    */
501   void ConvertBitmap( TextAbstraction::FontClient::GlyphBufferData& data, FT_Bitmap srcBitmap, bool isShearRequired );
502
503   /**
504    * @brief Finds in the cache if there is a triplet with the path to the font file name, the font point size and the face index.
505    * If there is one , if writes the font identifier in the param @p fontId.
506    *
507    * @param[in] path Path to the font file name.
508    * @param[in] requestedPointSize The font point size.
509    * @param[in] faceIndex The face index.
510    * @param[out] fontId The font identifier.
511    *
512    * @return @e true if there triplet is found.
513    */
514   bool FindFont( const FontPath& path, PointSize26Dot6 requestedPointSize, FaceIndex faceIndex, FontId& fontId ) const;
515
516   /**
517    * @brief Finds in the cache a cluster 'font family, font width, font weight, font slant'
518    * If there is one, it writes the index to the vector with font descriptions in the param @p validatedFontId.
519    *
520    * @param[in] fontDescription The font to validate.
521    * @param[out] validatedFontId The index to the vector with font descriptions.
522    *
523    * @return @e true if the pair is found.
524    */
525   bool FindValidatedFont( const FontDescription& fontDescription,
526                           FontDescriptionId& validatedFontId );
527
528   /**
529    * @brief Finds a fallback font list from the cache for a given font-description
530    *
531    * @param[in] fontDescription The font to validate.
532    * @param[out] A valid pointer to a font list, or @e nullptr if not found.
533    * @param[out] characterSetList A valid pointer to a character set list, or @e nullptr if not found.
534    */
535   bool FindFallbackFontList( const FontDescription& fontDescription,
536                              FontList*& fontList,
537                              CharacterSetList*& characterSetList );
538
539   /**
540    * @brief Finds in the cache a pair 'validated font identifier and font point size'.
541    * If there is one it writes the font identifier in the param @p fontId.
542    *
543    * @param[in] validatedFontId Index to the vector with font descriptions.
544    * @param[in] requestedPointSize The font point size.
545    * @param[out] fontId The font identifier.
546    *
547    * @return @e true if the pair is found.
548    */
549   bool FindFont( FontDescriptionId validatedFontId,
550                  PointSize26Dot6 requestedPointSize,
551                  FontId& fontId );
552
553   /**
554    * @brief Finds in the cache a bitmap font with the @p bitmapFont family name.
555    *
556    * @param[in] bitmapFont The font's family name.
557    * @param[out] fontId The id of the font.
558    *
559    * @return Whether the font has been found.
560    */
561   bool FindBitmapFont( const FontFamily& bitmapFont, FontId& fontId ) const;
562
563   /**
564    * @brief Validate a font description.
565    *
566    * @param[in] fontDescription The font to validate.
567    * @param[out] validatedFontId Result of validation
568    */
569   void ValidateFont( const FontDescription& fontDescription,
570                      FontDescriptionId& validatedFontId );
571
572   /**
573    * @brief Helper for GetDefaultFonts etc.
574    *
575    * @note CharacterSetList is a vector of FcCharSet that are reference counted. It's needed to call FcCharSetDestroy to decrease the reference counter.
576    *
577    * @param[in] fontDescription A font description.
578    * @param[out] fontList A list of the fonts which are a close match for fontDescription.
579    * @param[out] characterSetList A list of character sets which are a close match for fontDescription.
580    */
581   void SetFontList( const FontDescription& fontDescription, FontList& fontList, CharacterSetList& characterSetList );
582
583   /**
584    * Caches a font path.
585    *
586    * @param[in] ftFace The FreeType face.
587    * @param[in] id The font identifier.
588    * @param[in] requestedPointSize The font point size.
589    * @param[in] path Path to the font file name.
590    */
591   void CacheFontPath( FT_Face ftFace, FontId id, PointSize26Dot6 requestedPointSize,  const FontPath& path );
592
593   /**
594    * @brief Creates a character set from a given font's @p description.
595    *
596    * @note Need to call FcCharSetDestroy to free the resources.
597    *
598    * @param[in] description The font's description.
599    *
600    * @return A character set.
601    */
602   _FcCharSet* CreateCharacterSetFromDescription( const FontDescription& description );
603
604   /**
605    * @brief Free the resources allocated in the fallback cache.
606    *
607    * @param[in] fallbackCache The fallback cache.
608    */
609   void ClearFallbackCache( std::vector<FallbackCacheItem>& fallbackCache );
610
611   /**
612    * @brief Free the resources allocated by the FcCharSet objects.
613    */
614   void ClearCharacterSetFromFontFaceCache();
615
616 private:
617
618   // Declared private and left undefined to avoid copies.
619   Plugin( const Plugin& );
620   // Declared private and left undefined to avoid copies.
621   Plugin& operator=( const Plugin& );
622
623 private:
624
625   FT_Library mFreeTypeLibrary; ///< A handle to a FreeType library instance.
626
627   unsigned int mDpiHorizontal; ///< Horizontal dpi.
628   unsigned int mDpiVertical;   ///< Vertical dpi.
629
630   FontDescription mDefaultFontDescription; ///< The cached default font from the system
631
632   FontList mSystemFonts;       ///< Cached system fonts.
633   FontList mDefaultFonts;      ///< Cached default fonts.
634   CharacterSetList mDefaultFontCharacterSets;
635
636   std::vector<FallbackCacheItem> mFallbackCache; ///< Cached fallback font lists.
637
638   Vector<FontIdCacheItem>                   mFontIdCache;
639   std::vector<FontFaceCacheItem>            mFontFaceCache;            ///< Caches the FreeType face and font metrics of the triplet 'path to the font file name, font point size and face index'.
640   std::vector<FontDescriptionCacheItem>     mValidatedFontCache;       ///< Caches indices to the vector of font descriptions for a given font.
641   FontList                                  mFontDescriptionCache;     ///< Caches font descriptions for the validated font.
642   CharacterSetList                          mCharacterSetCache;        ///< Caches character set lists for the validated font.
643   std::vector<FontDescriptionSizeCacheItem> mFontDescriptionSizeCache; ///< Caches font identifiers for the pairs of font point size and the index to the vector with font descriptions of the validated fonts.
644
645   VectorFontCache* mVectorFontCache; ///< Separate cache for vector data blobs etc.
646
647   Vector<EllipsisItem> mEllipsisCache;      ///< Caches ellipsis glyphs for a particular point size.
648   std::vector<PixelBufferCacheItem> mPixelBufferCache; ///< Caches the pixel buffer of a url.
649   Vector<EmbeddedItem> mEmbeddedItemCache; ///< Cache embedded items.
650   std::vector<BitmapFontCacheItem> mBitmapFontCache; ///< Stores bitmap fonts.
651
652   bool mDefaultFontDescriptionCached : 1; ///< Whether the default font is cached or not
653 };
654
655 } // namespace Internal
656
657 } // namespace TextAbstraction
658
659 } // namespace Dali
660
661 #endif // DALI_INTERNAL_TEXT_ABSTRACTION_FONT_CLIENT_PLUGIN_IMPL_H