Merge "FontClient - Fix issues when selecting fonts." into devel/master
[platform/core/uifw/dali-adaptor.git] / text / dali / internal / 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) 2015 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/font-metrics.h>
23 #include <dali/devel-api/text-abstraction/glyph-info.h>
24 #include <dali/internal/text-abstraction/font-client-impl.h>
25
26 #ifdef ENABLE_VECTOR_BASED_TEXT_RENDERING
27 #include <dali/internal/glyphy/vector-font-cache.h>
28 #else
29 class VectorFontCache;
30 #endif
31
32 // EXTERNAL INCLUDES
33 #include <ft2build.h>
34 #include FT_FREETYPE_H
35 #include FT_GLYPH_H
36
37 // forward declarations of font config types.
38 struct _FcFontSet;
39 struct _FcPattern;
40
41 namespace Dali
42 {
43
44 namespace TextAbstraction
45 {
46
47 namespace Internal
48 {
49
50 /**
51  *@brief Type used for indices addressing the vector with front descriptions of validated fonts.
52  */
53 typedef uint32_t FontDescriptionId;
54
55 /**
56  * @brief FontClient implementation.
57  */
58 struct FontClient::Plugin
59 {
60   /**
61    * @brief Caches an list of fallback fonts for a given font-description
62    */
63   struct FallbackCacheItem
64   {
65     FallbackCacheItem( const FontDescription& fontDescription, FontList* fallbackFonts );
66
67     FontDescription fontDescription; ///< The font description.
68     FontList* fallbackFonts;         ///< The list of fallback fonts for the given font-description.
69   };
70
71   /**
72    * @brief Caches an index to the vector of font descriptions for a given font.
73    */
74   struct FontDescriptionCacheItem
75   {
76     FontDescriptionCacheItem( const FontDescription& fontDescription,
77                               FontDescriptionId index );
78
79     FontDescription fontDescription; ///< The font description.
80     FontDescriptionId index;         ///< Index to the vector of font descriptions.
81   };
82
83   /**
84    * @brief Caches the font id of the pair font point size and the index to the vector of font descriptions of validated fonts.
85    */
86   struct FontIdCacheItem
87   {
88     FontIdCacheItem( FontDescriptionId validatedFontId,
89                      PointSize26Dot6 requestedPointSize,
90                      FontId fontId );
91
92     FontDescriptionId validatedFontId;    ///< Index to the vector with font descriptions.
93     PointSize26Dot6   requestedPointSize; ///< The font point size.
94     FontId            fontId;             ///< The font identifier.
95   };
96
97   /**
98    * @brief Caches the FreeType face and font metrics of the triplet 'path to the font file name, font point size and face index'.
99    */
100   struct FontFaceCacheItem
101   {
102     FontFaceCacheItem( FT_Face ftFace,
103                        const FontPath& path,
104                        PointSize26Dot6 requestedPointSize,
105                        FaceIndex face,
106                        const FontMetrics& metrics );
107
108     FontFaceCacheItem( FT_Face ftFace,
109                        const FontPath& path,
110                        PointSize26Dot6 requestedPointSize,
111                        FaceIndex face,
112                        const FontMetrics& metrics,
113                        float fixedWidth,
114                        float fixedHeight );
115
116     FT_Face mFreeTypeFace;               ///< The FreeType face.
117     FontPath mPath;                      ///< The path to the font file name.
118     PointSize26Dot6 mRequestedPointSize; ///< The font point size.
119     FaceIndex mFaceIndex;                ///< The face index.
120     FontMetrics mMetrics;                ///< The font metrics.
121     FT_Short mFixedWidthPixels;          ///< The height in pixels (fixed size bitmaps only)
122     FT_Short mFixedHeightPixels;         ///< The height in pixels (fixed size bitmaps only)
123     unsigned int mVectorFontId;          ///< The ID of the equivalent vector-based font
124     bool mIsFixedSizeBitmap;             ///< Whether the font has fixed size bitmaps.
125   };
126
127   struct EllipsisItem
128   {
129     PointSize26Dot6 requestedPointSize;
130     GlyphInfo glyph;
131   };
132
133   /**
134    * Constructor.
135    *
136    * Initializes the FreeType library.
137    * Initializes the dpi values.
138    *
139    * @param[in] horizontalDpi The horizontal dpi.
140    * @param[in] verticalDpi The vertical dpi.
141    */
142   Plugin( unsigned int horizontalDpi, unsigned int verticalDpi );
143
144   /**
145    * Default destructor.
146    *
147    * Frees any allocated resource.
148    */
149   ~Plugin();
150
151   /**
152    * @copydoc Dali::FontClient::SetDpi()
153    */
154   void SetDpi( unsigned int horizontalDpi, unsigned int verticalDpi );
155
156   /**
157    * @copydoc Dali::FontClient::ResetSystemDefaults()
158    */
159   void ResetSystemDefaults();
160
161   /**
162    * @copydoc Dali::FontClient::SetDefaultFont()
163    */
164   void SetDefaultFont( const FontDescription& preferredFontDescription );
165
166   /**
167    * @copydoc Dali::FontClient::GetDefaultPlatformFontDescription()
168    */
169   void GetDefaultPlatformFontDescription( FontDescription& fontDescription );
170
171   /**
172    * @copydoc Dali::FontClient::GetDefaultFonts()
173    */
174   void GetDefaultFonts( FontList& defaultFonts );
175
176   /**
177    * @copydoc Dali::FontClient::GetSystemFonts()
178    */
179   void GetSystemFonts( FontList& systemFonts );
180
181   /**
182    * @copydoc Dali::FontClient::GetDescription()
183    */
184   void GetDescription( FontId id, FontDescription& fontDescription ) const;
185
186   /**
187    * @copydoc Dali::FontClient::GetPointSize()
188    */
189   PointSize26Dot6 GetPointSize( FontId id );
190
191   /**
192    * @brief Finds within the @p fontList a font which support the @p carcode.
193    *
194    * @param[in] fontList A list of font paths, family, width, weight and slant.
195    * @param[in] charcode The character for which a font is needed.
196    * @param[in] requestedPointSize The point size in 26.6 fractional points.
197    * @param[in] preferColor @e true if a color font is preferred.
198    *
199    * @return A valid font identifier, or zero if no font is found.
200    */
201   FontId FindFontForCharacter( const FontList& fontList,
202                                Character charcode,
203                                PointSize26Dot6 requestedPointSize,
204                                bool preferColor );
205
206   /**
207    * @copydoc Dali::FontClient::FindDefaultFont()
208    */
209   FontId FindDefaultFont( Character charcode,
210                           PointSize26Dot6 requestedPointSize,
211                           bool preferColor );
212
213   /**
214    * @copydoc Dali::FontClient::FindFallbackFont()
215    */
216   FontId FindFallbackFont( Character charcode,
217                            const FontDescription& preferredFontDescription,
218                            PointSize26Dot6 requestedPointSize,
219                            bool preferColor );
220
221   /**
222    * @see Dali::FontClient::GetFontId( const FontPath& path, PointSize26Dot6 requestedPointSize, FaceIndex faceIndex )
223    *
224    * @param[in] actualPointSize The actual point size. In case of emojis the @p requestedPointSize is used to build the metrics and cache the font and the @p actualPointSize is used to load the glyph.
225    * @param[in] cacheDescription Whether to cache the font description.
226    */
227   FontId GetFontId( const FontPath& path,
228                     PointSize26Dot6 requestedPointSize,
229                     PointSize26Dot6 actualPointSize,
230                     FaceIndex faceIndex,
231                     bool cacheDescription = true );
232
233   /**
234    * @see Dali::FontClient::GetFontId( const FontDescription& preferredFontDescription, PointSize26Dot6 requestedPointSize, FaceIndex faceIndex )
235    *
236    * @param[in] actualPointSize The actual point size. In case of emojis the @p requestedPointSize is used to build the metrics and cache the font and the @p actualPointSize is used to load the glyph.
237    */
238   FontId GetFontId( const FontDescription& fontDescription,
239                     PointSize26Dot6 requestedPointSize,
240                     PointSize26Dot6 actualPointSize,
241                     FaceIndex faceIndex );
242
243   /**
244    * @copydoc Dali::FontClient::IsScalable( const FontPath& path )
245    */
246   bool IsScalable( const FontPath& path );
247
248   /**
249    * @copydoc Dali::FontClient::IsScalable( const FontDescription& fontDescription )
250    */
251   bool IsScalable( const FontDescription& fontDescription );
252
253   /**
254    * @copydoc Dali::FontClient::GetFixedSizes()
255    */
256   void GetFixedSizes( const FontPath& path, Dali::Vector< PointSize26Dot6>& sizes );
257
258   /**
259    * @copydoc Dali::FontClient::GetFixedSizes()
260    */
261   void GetFixedSizes( const FontDescription& fontDescription,
262                       Dali::Vector< PointSize26Dot6 >& sizes );
263
264   /**
265    * @copydoc Dali::FontClient::GetFontMetrics()
266    */
267   void GetFontMetrics( FontId fontId, FontMetrics& metrics );
268
269   /**
270    * @copydoc Dali::FontClient::GetGlyphIndex()
271    */
272   GlyphIndex GetGlyphIndex( FontId fontId, Character charcode );
273
274   /**
275    * @copydoc Dali::FontClient::GetGlyphMetrics()
276    */
277   bool GetGlyphMetrics( GlyphInfo* array, uint32_t size, GlyphType type, bool horizontal );
278
279   /**
280    * Helper for GetGlyphMetrics when using bitmaps
281    */
282   bool GetBitmapMetrics( GlyphInfo* array, uint32_t size, bool horizontal );
283
284   /**
285    * Helper for GetGlyphMetrics when using vectors
286    */
287   bool GetVectorMetrics( GlyphInfo* array, uint32_t size, bool horizontal );
288
289   /**
290    * @copydoc Dali::FontClient::CreateBitmap()
291    */
292   PixelData CreateBitmap( FontId fontId, GlyphIndex glyphIndex );
293
294   /**
295    * @copydoc Dali::FontClient::CreateVectorBlob()
296    */
297   void CreateVectorBlob( FontId fontId, GlyphIndex glyphIndex, VectorBlob*& blob, unsigned int& blobLength, unsigned int& nominalWidth, unsigned int& nominalHeight );
298
299   /**
300    * @copydoc Dali::FontClient::GetEllipsisGlyph()
301    */
302   const GlyphInfo& GetEllipsisGlyph( PointSize26Dot6 requestedPointSize );
303
304 private:
305
306   /**
307    * Caches the fonts present in the platform.
308    *
309    * Calls GetFcFontSet() to retrieve the fonts.
310    */
311   void InitSystemFonts();
312
313   /**
314    * Gets the FontDescription which matches the given pattern
315    * @param[in] pattern pattern to match against
316    * @param[out] fontDescription the resultant fontDescription that matched
317    * @return true if match found
318    */
319   bool MatchFontDescriptionToPattern( _FcPattern* pattern, Dali::TextAbstraction::FontDescription& fontDescription );
320
321   /**
322    * @brief Creates a font family pattern used to match fonts.
323    *
324    * @param[in] fontDescription The font to cache.
325    *
326    * @return The pattern.
327    */
328   _FcPattern* CreateFontFamilyPattern( const FontDescription& fontDescription );
329
330   /**
331    * Retrieves the fonts present in the platform.
332    *
333    * @return A font fonfig data structure with the platform's fonts.
334    */
335   _FcFontSet* GetFcFontSet() const;
336
337   /**
338    * Retrieves a font config object's value from a pattern.
339    *
340    * @param[in] pattern The font config pattern.
341    * @param[in] n The object.
342    * @param[out] string The object's value.
343    *
344    * @return @e true if the operation is successful.
345    */
346   bool GetFcString( const _FcPattern* const pattern, const char* const n, std::string& string );
347
348   /**
349    * Retrieves a font config object's value from a pattern.
350    *
351    * @param[in] pattern The font config pattern.
352    * @param[in] n The object.
353    * @param[out] intVal The object's value.
354    *
355    * @return @e true if the operation is successful.
356    */
357   bool GetFcInt( const _FcPattern* const pattern, const char* const n, int& intVal );
358
359   /**
360    * @brief Creates a font.
361    *
362    * @param[in] path The path to the font file name.
363    * @param[in] requestedPointSize The requested point size.
364    * @param[in] actualPointSize The actual point size (for color emojis).
365    * @param[in] faceIndex A face index.
366    * @param[in] cacheDescription Whether to cache the font description.
367    *
368    * @return The font identifier.
369    */
370   FontId CreateFont( const FontPath& path,
371                      PointSize26Dot6 requestedPointSize,
372                      PointSize26Dot6 actualPointSize,
373                      FaceIndex faceIndex,
374                      bool cacheDescription );
375
376   /**
377    *
378    * @param[in] destBitmap
379    * @param[in] srcBitmap
380    */
381   void ConvertBitmap( PixelData& destBitmap, FT_Bitmap srcBitmap );
382
383   /**
384    * @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.
385    * If there is one , if writes the font identifier in the param @p fontId.
386    *
387    * @param[in] path Path to the font file name.
388    * @param[in] requestedPointSize The font point size.
389    * @param[in] faceIndex The face index.
390    * @param[out] fontId The font identifier.
391    *
392    * @return @e true if there triplet is found.
393    */
394   bool FindFont( const FontPath& path, PointSize26Dot6 requestedPointSize, FaceIndex faceIndex, FontId& fontId ) const;
395
396   /**
397    * @brief Finds in the cache a cluster 'font family, font width, font weight, font slant'
398    * If there is one, it writes the index to the vector with font descriptions in the param @p validatedFontId.
399    *
400    * @param[in] fontDescription The font to validate.
401    * @param[out] validatedFontId The index to the vector with font descriptions.
402    *
403    * @return @e true if the pair is found.
404    */
405   bool FindValidatedFont( const FontDescription& fontDescription,
406                           FontDescriptionId& validatedFontId );
407
408   /**
409    * @brief Finds a fallback font list from the cache for a given font-description
410    *
411    * @param[in] fontDescription The font to validate.
412    * @param[out] A valid pointer to a font list, or NULL if not found.
413    */
414   bool FindFallbackFontList( const FontDescription& fontDescription,
415                              FontList*& fontList );
416
417   /**
418    * @brief Finds in the cache a pair 'validated font identifier and font point size'.
419    * If there is one it writes the font identifier in the param @p fontId.
420    *
421    * @param[in] validatedFontId Index to the vector with font descriptions.
422    * @param[in] requestedPointSize The font point size.
423    * @param[out] fontId The font identifier.
424    *
425    * @return @e true if the pair is found.
426    */
427   bool FindFont( FontDescriptionId validatedFontId,
428                  PointSize26Dot6 requestedPointSize,
429                  FontId& fontId );
430
431   /**
432    * @brief Validate a font description.
433    *
434    * @param[in] fontDescription The font to validate.
435    * @param[out] validatedFontId Result of validation
436    */
437   void ValidateFont( const FontDescription& fontDescription,
438                      FontDescriptionId& validatedFontId );
439
440   /**
441    * Helper for GetDefaultFonts etc.
442    *
443    * @param[in] fontDescription A font description.
444    * @param[out] fontList A list of the fonts which are a close match for fontDescription.
445    */
446   void SetFontList( const FontDescription& fontDescription, FontList& fontList );
447
448   /**
449    * Caches a font path.
450    *
451    * @param[in] ftFace The FreeType face.
452    * @param[in] id The font identifier.
453    * @param[in] requestedPointSize The font point size.
454    * @param[in] path Path to the font file name.
455    */
456   void CacheFontPath( FT_Face ftFace, FontId id, PointSize26Dot6 requestedPointSize,  const FontPath& path );
457
458 private:
459
460   // Declared private and left undefined to avoid copies.
461   Plugin( const Plugin& );
462   // Declared private and left undefined to avoid copies.
463   Plugin& operator=( const Plugin& );
464
465 private:
466
467   FT_Library mFreeTypeLibrary; ///< A handle to a FreeType library instance.
468
469   unsigned int mDpiHorizontal; ///< Horizontal dpi.
470   unsigned int mDpiVertical;   ///< Vertical dpi.
471
472   FontDescription mDefaultFontDescription; ///< The cached default font from the system
473
474   FontList mSystemFonts;       ///< Cached system fonts.
475   FontList mDefaultFonts;      ///< Cached default fonts.
476
477   std::vector<FallbackCacheItem> mFallbackCache; ///< Cached fallback font lists.
478
479   std::vector<FontFaceCacheItem>        mFontCache;            ///< Caches the FreeType face and font metrics of the triplet 'path to the font file name, font point size and face index'.
480   std::vector<FontDescriptionCacheItem> mValidatedFontCache;   ///< Caches indices to the vector of font descriptions for a given font.
481   FontList                              mFontDescriptionCache; ///< Caches font descriptions for the validated font.
482   std::vector<FontIdCacheItem>          mFontIdCache;          ///< Caches font identifiers for the pairs of font point size and the index to the vector with font descriptions of the validated fonts.
483
484   VectorFontCache* mVectorFontCache; ///< Separate cache for vector data blobs etc.
485
486   Vector<EllipsisItem> mEllipsisCache;      ///< Caches ellipsis glyphs for a particular point size.
487
488   bool mDefaultFontDescriptionCached : 1; ///< Whether the default font is cached or not
489 };
490
491 } // namespace Internal
492
493 } // namespace TextAbstraction
494
495 } // namespace Dali
496
497 #endif // __DALI_INTERNAL_TEXT_ABSTRACTION_FONT_CLIENT_PLUGIN_IMPL_H__