(Text Controller) Remove meaningless check to see if an unsigned int is positive...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / property-string-parser.cpp
1 /*
2  * Copyright (c) 2016 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-helper-functions.h>
28
29 namespace Dali
30 {
31
32 namespace Toolkit
33 {
34
35 namespace Text
36 {
37
38 void CreatePropertyMap( const TreeNode* const node, Property::Map& map )
39 {
40   switch( node->GetType() )
41   {
42     case TreeNode::IS_NULL:
43     case TreeNode::OBJECT:
44     case TreeNode::ARRAY: // FALL THROUGH
45     {
46       break;
47     }
48     case TreeNode::STRING:
49     {
50       map.Insert( node->GetName(), Property::Value( node->GetString() ) );
51       break;
52     }
53     case TreeNode::INTEGER:
54     case TreeNode::FLOAT:
55     case TreeNode::BOOLEAN: // FALL THROUGH
56     {
57       break;
58     }
59   }
60
61   for( TreeNode::ConstIterator it = node->CBegin(), endIt = node->CEnd(); it != endIt; ++it )
62   {
63     const TreeNode::KeyNodePair& pair = *it;
64     CreatePropertyMap( &pair.second, map );
65   }
66 }
67
68 void ParsePropertyString( const std::string& property, Property::Map& map )
69 {
70   Toolkit::JsonParser parser = Toolkit::JsonParser::New();
71
72   if( parser.Parse( property ) )
73   {
74     const TreeNode* const node = parser.GetRoot();
75     if( node )
76     {
77       CreatePropertyMap( node, map );
78     }
79   }
80 }
81
82 } //namespace Text
83
84 } //namespace Toolkit
85
86 } //namespace Dali