Merge "Prevention for being assigned NULL value" into devel/master
[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
76     CreatePropertyMap( node, map );
77   }
78 }
79
80 void StringOffsetToVector2( const std::string& offsetStr,
81                             Vector2& offset )
82 {
83   offset = Vector2::ZERO;
84
85   unsigned int wsIndex = 0u;
86   for( std::string::const_iterator it = offsetStr.begin(),
87          endIt = offsetStr.end();
88        it != endIt;
89        ++it, ++wsIndex )
90   {
91     if( *it == ' ' )
92     {
93       break;
94     }
95   }
96
97   offset[0] = StringToFloat( offsetStr.c_str() );
98   offset[1] = StringToFloat( offsetStr.c_str() + wsIndex );
99 }
100
101 } //namespace Text
102
103 } //namespace Toolkit
104
105 } //namespace Dali