3f9743fc52be0f50e231a8e12925705ac8d4139f
[platform/core/uifw/dali-adaptor.git] / dali / internal / text / text-abstraction / plugin / font-client-utils.cpp
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <dali/internal/text/text-abstraction/plugin/font-client-utils.h>
18
19 #include <dali/integration-api/debug.h>
20 #include <dali/internal/imaging/common/image-operations.h>
21
22 #include <memory>
23
24 #if defined(DEBUG_ENABLED)
25 extern Dali::Integration::Log::Filter* gFontClientLogFilter;
26 #endif
27
28 namespace Dali::TextAbstraction::Internal
29 {
30 namespace
31 {
32 // http://www.freedesktop.org/software/fontconfig/fontconfig-user.html
33
34 // NONE            -1  --> DEFAULT_FONT_WIDTH (NORMAL) will be used.
35 // ULTRA_CONDENSED 50
36 // EXTRA_CONDENSED 63
37 // CONDENSED       75
38 // SEMI_CONDENSED  87
39 // NORMAL         100
40 // SEMI_EXPANDED  113
41 // EXPANDED       125
42 // EXTRA_EXPANDED 150
43 // ULTRA_EXPANDED 200
44 const int          FONT_WIDTH_TYPE_TO_INT[] = {-1, 50, 63, 75, 87, 100, 113, 125, 150, 200};
45 const unsigned int NUM_FONT_WIDTH_TYPE      = sizeof(FONT_WIDTH_TYPE_TO_INT) / sizeof(int);
46
47 // NONE                       -1  --> DEFAULT_FONT_WEIGHT (NORMAL) will be used.
48 // THIN                        0
49 // ULTRA_LIGHT, EXTRA_LIGHT   40
50 // LIGHT                      50
51 // DEMI_LIGHT, SEMI_LIGHT     55
52 // BOOK                       75
53 // NORMAL, REGULAR            80
54 // MEDIUM                    100
55 // DEMI_BOLD, SEMI_BOLD      180
56 // BOLD                      200
57 // ULTRA_BOLD, EXTRA_BOLD    205
58 // BLACK, HEAVY, EXTRA_BLACK 210
59 const int          FONT_WEIGHT_TYPE_TO_INT[] = {-1, 0, 40, 50, 55, 75, 80, 100, 180, 200, 205, 210};
60 const unsigned int NUM_FONT_WEIGHT_TYPE      = sizeof(FONT_WEIGHT_TYPE_TO_INT) / sizeof(int);
61
62 // NONE             -1 --> DEFAULT_FONT_SLANT (NORMAL) will be used.
63 // NORMAL, ROMAN     0
64 // ITALIC          100
65 // OBLIQUE         110
66 const int          FONT_SLANT_TYPE_TO_INT[] = {-1, 0, 100, 110};
67 const unsigned int NUM_FONT_SLANT_TYPE      = sizeof(FONT_SLANT_TYPE_TO_INT) / sizeof(int);
68
69 } // namespace
70
71 /**
72  * @brief Returns the FontWidth's enum index for the given width value.
73  *
74  * @param[in] width The width value.
75  *
76  * @return The FontWidth's enum index.
77  */
78 const FontWidth::Type IntToWidthType(int width)
79 {
80   return static_cast<FontWidth::Type>(ValueToIndex(width, FONT_WIDTH_TYPE_TO_INT, NUM_FONT_WIDTH_TYPE - 1u));
81 }
82
83 /**
84  * @brief Returns the FontWeight's enum index for the given weight value.
85  *
86  * @param[in] weight The weight value.
87  *
88  * @return The FontWeight's enum index.
89  */
90 const FontWeight::Type IntToWeightType(int weight)
91 {
92   return static_cast<FontWeight::Type>(ValueToIndex(weight, FONT_WEIGHT_TYPE_TO_INT, NUM_FONT_WEIGHT_TYPE - 1u));
93 }
94
95 /**
96  * @brief Returns the FontSlant's enum index for the given slant value.
97  *
98  * @param[in] slant The slant value.
99  *
100  * @return The FontSlant's enum index.
101  */
102 const FontSlant::Type IntToSlantType(int slant)
103 {
104   return static_cast<FontSlant::Type>(ValueToIndex(slant, FONT_SLANT_TYPE_TO_INT, NUM_FONT_SLANT_TYPE - 1u));
105 }
106
107 const int DEFAULT_FONT_WIDTH(100);
108 const int DEFAULT_FONT_WEIGHT(80);
109 const int DEFAULT_FONT_SLANT(0);
110
111 const FontWidth::Type DefaultFontWidth()
112 {
113   return IntToWidthType(DEFAULT_FONT_WIDTH);
114 }
115 const FontWeight::Type DefaultFontWeight()
116 {
117   return IntToWeightType(DEFAULT_FONT_WEIGHT);
118 }
119 const FontSlant::Type DefaultFontSlant()
120 {
121   return IntToSlantType(DEFAULT_FONT_SLANT);
122 }
123
124 /**
125  * @brief Copy the color bitmap given in @p srcBuffer to @p data.
126  *
127  * @param[out] data The bitmap data.
128  * @param[in] srcWidth The width of the bitmap.
129  * @param[in] srcHeight The height of the bitmap.
130  * @param[in] srcBuffer The buffer of the bitmap.
131  */
132 void ConvertBitmap(TextAbstraction::FontClient::GlyphBufferData& data, unsigned int srcWidth, unsigned int srcHeight, const unsigned char* const srcBuffer)
133 {
134   // Set the input dimensions.
135   const ImageDimensions inputDimensions(srcWidth, srcHeight);
136
137   // Set the output dimensions.
138   // If the output dimension is not given, the input dimension is set
139   // and won't be downscaling.
140   data.width  = (data.width == 0) ? srcWidth : data.width;
141   data.height = (data.height == 0) ? srcHeight : data.height;
142   const ImageDimensions desiredDimensions(data.width, data.height);
143
144   // Creates the output buffer
145   const unsigned int bufferSize = data.width * data.height * 4u;
146   data.buffer                   = new unsigned char[bufferSize]; // @note The caller is responsible for deallocating the bitmap data using delete[].
147
148   if(inputDimensions == desiredDimensions)
149   {
150     // There isn't downscaling.
151     memcpy(data.buffer, srcBuffer, bufferSize);
152   }
153   else
154   {
155     Dali::Internal::Platform::LanczosSample4BPP(srcBuffer,
156                                                 inputDimensions,
157                                                 data.buffer,
158                                                 desiredDimensions);
159   }
160 }
161
162 /**
163  * @brief Copy the FreeType bitmap to the given buffer.
164  *
165  * @param[out] data The bitmap data.
166  * @param[in] srcBitmap The FreeType bitmap.
167  * @param[in] isShearRequired Whether the bitmap needs a shear transform (for software italics).
168  */
169 void ConvertBitmap(TextAbstraction::FontClient::GlyphBufferData& data, FT_Bitmap srcBitmap, bool isShearRequired)
170 {
171   if(srcBitmap.width * srcBitmap.rows > 0)
172   {
173     switch(srcBitmap.pixel_mode)
174     {
175       case FT_PIXEL_MODE_GRAY:
176       {
177         if(srcBitmap.pitch == static_cast<int>(srcBitmap.width))
178         {
179           uint8_t*     pixelsIn = srcBitmap.buffer;
180           unsigned int width    = srcBitmap.width;
181           unsigned     height   = srcBitmap.rows;
182
183           std::unique_ptr<uint8_t, void (*)(void*)> pixelsOutPtr(nullptr, free);
184
185           if(isShearRequired)
186           {
187             /**
188              * Glyphs' bitmaps with no slant retrieved from FreeType:
189              * __________     ____
190              * |XXXXXXXX|     |XX|
191              * |   XX   |     |XX|
192              * |   XX   |     |XX|
193              * |   XX   |     |XX|
194              * |   XX   |     |XX|
195              * |   XX   |     |XX|
196              * ----------     ----
197              *
198              * Expected glyphs' bitmaps with italic slant:
199              * ____________   ______
200              * |  XXXXXXXX|   |  XX|
201              * |     XX   |   |  XX|
202              * |    XX    |   | XX |
203              * |    XX    |   | XX |
204              * |   XX     |   |XX  |
205              * |   XX     |   |XX  |
206              * ------------   ------
207              *
208              * Glyphs' bitmaps with software italic slant retrieved from FreeType:
209              * __________     ______
210              * |XXXXXXXX|     |  XX|
211              * |   XX   |     |  XX|
212              * |  XX    |     | XX |
213              * |  XX    |     | XX |
214              * | XX     |     |XX  |
215              * | XX     |     |XX  |
216              * ----------     ------
217              *
218              * This difference in some bitmaps' width causes an overlap of some glyphs. This is the reason why a shear operation is done here instead of relying on the experimental FT_GlyphSlot_Oblique() implementation.
219              */
220             unsigned int widthOut  = 0u;
221             unsigned int heightOut = 0u;
222             uint8_t*     pixelsOut = nullptr;
223
224             Dali::Internal::Platform::HorizontalShear(pixelsIn,
225                                                       width,
226                                                       height,
227                                                       1u,
228                                                       -TextAbstraction::FontClient::DEFAULT_ITALIC_ANGLE,
229                                                       pixelsOut,
230                                                       widthOut,
231                                                       heightOut);
232
233             width    = widthOut;
234             height   = heightOut;
235             pixelsIn = pixelsOut;
236             pixelsOutPtr.reset(pixelsOut);
237           }
238
239           const unsigned int bufferSize = width * height;
240           data.buffer                   = new unsigned char[bufferSize]; // @note The caller is responsible for deallocating the bitmap data using delete[].
241           data.width                    = width;
242           data.height                   = height;
243           data.format                   = Pixel::L8; // Sets the pixel format.
244           memcpy(data.buffer, pixelsIn, bufferSize);
245         }
246         break;
247       }
248
249 #ifdef FREETYPE_BITMAP_SUPPORT
250       case FT_PIXEL_MODE_BGRA:
251       {
252         if(srcBitmap.pitch == static_cast<int>(srcBitmap.width << 2u))
253         {
254           ConvertBitmap(data, srcBitmap.width, srcBitmap.rows, srcBitmap.buffer);
255
256           // Sets the pixel format.
257           data.format = Pixel::BGRA8888;
258         }
259         break;
260       }
261 #endif
262       default:
263       {
264         DALI_LOG_INFO(gFontClientLogFilter, Debug::General, "FontClient::Plugin::ConvertBitmap. FontClient Unable to create Bitmap of this PixelType\n");
265         break;
266       }
267     }
268   }
269 }
270
271 FcPattern* CreateFontFamilyPattern(const FontDescription& fontDescription)
272 {
273   // create the cached font family lookup pattern
274   // a pattern holds a set of names, each name refers to a property of the font
275   FcPattern* fontFamilyPattern = FcPatternCreate(); // FcPatternCreate creates a new pattern that needs to be destroyed by calling FcPatternDestroy.
276
277   if(!fontFamilyPattern)
278   {
279     return nullptr;
280   }
281
282   // add a property to the pattern for the font family
283   FcPatternAddString(fontFamilyPattern, FC_FAMILY, reinterpret_cast<const FcChar8*>(fontDescription.family.c_str()));
284
285   // add a property to the pattern for local setting.
286   const char* locale = setlocale(LC_MESSAGES, nullptr);
287   if(locale != nullptr)
288   {
289     FcPatternAddString(fontFamilyPattern, FC_LANG, reinterpret_cast<const FcChar8*>(locale));
290   }
291
292   int width = FONT_WIDTH_TYPE_TO_INT[fontDescription.width];
293   if(width < 0)
294   {
295     // Use default.
296     width = DEFAULT_FONT_WIDTH;
297   }
298
299   int weight = FONT_WEIGHT_TYPE_TO_INT[fontDescription.weight];
300   if(weight < 0)
301   {
302     // Use default.
303     weight = DEFAULT_FONT_WEIGHT;
304   }
305
306   int slant = FONT_SLANT_TYPE_TO_INT[fontDescription.slant];
307   if(slant < 0)
308   {
309     // Use default.
310     slant = DEFAULT_FONT_SLANT;
311   }
312
313   FcPatternAddInteger(fontFamilyPattern, FC_WIDTH, width);
314   FcPatternAddInteger(fontFamilyPattern, FC_WEIGHT, weight);
315   FcPatternAddInteger(fontFamilyPattern, FC_SLANT, slant);
316
317   // modify the config, with the mFontFamilyPatterm
318   FcConfigSubstitute(nullptr /* use default configure */, fontFamilyPattern, FcMatchPattern);
319
320   // provide default values for unspecified properties in the font pattern
321   // e.g. patterns without a specified style or weight are set to Medium
322   FcDefaultSubstitute(fontFamilyPattern);
323
324   return fontFamilyPattern;
325 }
326
327 FcCharSet* CreateCharacterSetFromDescription(const FontDescription& description)
328 {
329   FcCharSet* characterSet = nullptr;
330
331   FcPattern* pattern = CreateFontFamilyPattern(description); // Creates a new pattern that needs to be destroyed by calling FcPatternDestroy.
332
333   if(nullptr != pattern)
334   {
335     FcResult   result = FcResultMatch;
336     FcPattern* match  = FcFontMatch(nullptr, pattern, &result); // FcFontMatch creates a new pattern that needs to be destroyed by calling FcPatternDestroy.
337
338     FcPatternGetCharSet(match, FC_CHARSET, 0u, &characterSet);
339
340     // Destroys the created patterns.
341     FcPatternDestroy(match);
342     FcPatternDestroy(pattern);
343   }
344
345   return characterSet;
346 }
347
348 } // namespace Dali::TextAbstraction::Internal