Moved Text Controller & Markup Processor to sub-folders
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / property-string-parser.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/property-string-parser.h>
20
21 // EXTERNAL HEADERS
22 #include <sstream>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/devel-api/builder/json-parser.h>
26 #include <dali-toolkit/devel-api/builder/tree-node.h>
27 #include <dali-toolkit/internal/text/markup-processor/markup-processor-helper-functions.h>
28
29 namespace Dali
30 {
31 namespace Toolkit
32 {
33 namespace Text
34 {
35 void CreatePropertyMap(const TreeNode* const node, Property::Map& map)
36 {
37   switch(node->GetType())
38   {
39     case TreeNode::IS_NULL:
40     case TreeNode::OBJECT:
41     case TreeNode::ARRAY: // FALL THROUGH
42     {
43       break;
44     }
45     case TreeNode::STRING:
46     {
47       map.Insert(node->GetName(), Property::Value(node->GetString()));
48       break;
49     }
50     case TreeNode::INTEGER:
51     case TreeNode::FLOAT:
52     case TreeNode::BOOLEAN: // FALL THROUGH
53     {
54       break;
55     }
56   }
57
58   for(TreeNode::ConstIterator it = node->CBegin(), endIt = node->CEnd(); it != endIt; ++it)
59   {
60     const TreeNode::KeyNodePair& pair = *it;
61     CreatePropertyMap(&pair.second, map);
62   }
63 }
64
65 void ParsePropertyString(const std::string& property, Property::Map& map)
66 {
67   Toolkit::JsonParser parser = Toolkit::JsonParser::New();
68
69   if(parser.Parse(property))
70   {
71     const TreeNode* const node = parser.GetRoot();
72     if(node)
73     {
74       CreatePropertyMap(node, map);
75     }
76   }
77 }
78
79 } //namespace Text
80
81 } //namespace Toolkit
82
83 } //namespace Dali