Replace std::string global variables with C-style string.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / markup-processor / markup-processor-font.cpp
1 /*
2  * Copyright (c) 2022 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
18 // FILE HEADER
19 #include <dali-toolkit/internal/text/markup-processor/markup-processor-font.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/common/dali-vector.h>
23 #include <memory.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/text/font-description-run.h>
27 #include <dali-toolkit/internal/text/markup-processor/markup-processor-attribute-helper-functions.h>
28 #include <dali-toolkit/internal/text/markup-processor/markup-processor-helper-functions.h>
29 #include <dali-toolkit/internal/text/markup-tags-and-attributes.h>
30 #include <dali-toolkit/internal/text/text-font-style.h>
31
32 namespace Dali
33 {
34 namespace Toolkit
35 {
36 namespace Text
37 {
38 namespace
39 {
40 const unsigned int MAX_FONT_ATTRIBUTE_SIZE = 15u;  ///< The maximum length of any of the possible 'weight', 'width' or 'slant' values.
41 const float        PIXEL_FORMAT_64_FACTOR  = 64.f; ///< 64.f is used to convert from point size to 26.6 pixel format.
42 } // namespace
43
44 void processFontAttributeValue(char value[], const Attribute& attribute)
45 {
46   // The StringToWeight() uses the Scripting::GetEnumeration() function which requires the input string to end with a '\0' char.
47   const Length length = attribute.valueLength > MAX_FONT_ATTRIBUTE_SIZE ? MAX_FONT_ATTRIBUTE_SIZE : attribute.valueLength;
48   memcpy(value, attribute.valueBuffer, length);
49   value[length] = 0;
50 }
51
52 void ProcessFontFamily(const Attribute& attribute, FontDescriptionRun& fontRun)
53 {
54   fontRun.familyDefined = true;
55   fontRun.familyLength  = attribute.valueLength;
56   fontRun.familyName    = new char[fontRun.familyLength];
57   memcpy(fontRun.familyName, attribute.valueBuffer, fontRun.familyLength);
58   // The memory is freed when the font run is removed from the logical model.
59 }
60
61 void ProcessFontSize(const Attribute& attribute, FontDescriptionRun& fontRun)
62 {
63   // 64.f is used to convert from point size to 26.6 pixel format.
64   fontRun.size        = static_cast<PointSize26Dot6>(ProcessFloatAttribute(attribute) * PIXEL_FORMAT_64_FACTOR);
65   fontRun.sizeDefined = true;
66 }
67
68 void ProcessFontWeight(const Attribute& attribute, FontDescriptionRun& fontRun)
69 {
70   fontRun.weightDefined = ProcessEnumerationAttribute<FontWeight>(attribute, MAX_FONT_ATTRIBUTE_SIZE, &StringToWeight, fontRun.weight);
71 }
72
73 void ProcessFontWidth(const Attribute& attribute, FontDescriptionRun& fontRun)
74 {
75   fontRun.widthDefined = ProcessEnumerationAttribute<FontWidth>(attribute, MAX_FONT_ATTRIBUTE_SIZE, &StringToWidth, fontRun.width);
76 }
77
78 void ProcessFontSlant(const Attribute& attribute, FontDescriptionRun& fontRun)
79 {
80   fontRun.slantDefined = ProcessEnumerationAttribute<FontSlant>(attribute, MAX_FONT_ATTRIBUTE_SIZE, &StringToSlant, fontRun.slant);
81 }
82
83 void ProcessFontTag(const Tag& tag, FontDescriptionRun& fontRun)
84 {
85   for(Vector<Attribute>::ConstIterator it    = tag.attributes.Begin(),
86                                        endIt = tag.attributes.End();
87       it != endIt;
88       ++it)
89   {
90     const Attribute& attribute(*it);
91
92     if(TokenComparison(MARKUP::FONT_ATTRIBUTES::FAMILY, attribute.nameBuffer, attribute.nameLength))
93     {
94       ProcessFontFamily(attribute, fontRun);
95     }
96     else if(TokenComparison(MARKUP::FONT_ATTRIBUTES::SIZE, attribute.nameBuffer, attribute.nameLength))
97     {
98       ProcessFontSize(attribute, fontRun);
99     }
100     else if(TokenComparison(MARKUP::FONT_ATTRIBUTES::WEIGHT, attribute.nameBuffer, attribute.nameLength))
101     {
102       ProcessFontWeight(attribute, fontRun);
103     }
104     else if(TokenComparison(MARKUP::FONT_ATTRIBUTES::WIDTH, attribute.nameBuffer, attribute.nameLength))
105     {
106       ProcessFontWidth(attribute, fontRun);
107     }
108     else if(TokenComparison(MARKUP::FONT_ATTRIBUTES::SLANT, attribute.nameBuffer, attribute.nameLength))
109     {
110       ProcessFontSlant(attribute, fontRun);
111     }
112   }
113 }
114
115 } // namespace Text
116
117 } // namespace Toolkit
118
119 } // namespace Dali