Merge "DALi Version 2.0.32" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-scene-loader / internal / json-util.h
1 #ifndef DALI_SCENE_LOADER_JSON_UTIL_H_
2 #define DALI_SCENE_LOADER_JSON_UTIL_H_
3 /*
4  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 // INTERNAL INCLUDES
21 #include "dali-scene-loader/public-api/index.h"
22
23 // EXTERNAL INCLUDES
24 #include "dali-toolkit/devel-api/builder/tree-node.h"
25 #include "dali/public-api/animation/time-period.h"
26 #include "dali/public-api/common/vector-wrapper.h"
27 #include "dali/public-api/math/vector4.h"
28 #include "dali/public-api/object/property.h"
29
30 namespace Dali
31 {
32 namespace SceneLoader
33 {
34 bool ReadBool(const Toolkit::TreeNode* node, bool& num);
35
36 bool ReadInt(const Toolkit::TreeNode* node, int& num);
37
38 bool ReadFloat(const Toolkit::TreeNode* node, float& num);
39
40 bool ReadIndex(const Toolkit::TreeNode* node, Index& num);
41
42 bool ReadBlob(const Toolkit::TreeNode* node, unsigned int& offset, unsigned int& length);
43
44 /**
45  * @brief Gets the number of numerical element of a JSON array;
46  * @return 0 if not an array, otherwise the number of float or integer elements
47  *  at the front of the array.
48  */
49 size_t GetNumericalArraySize(const Toolkit::TreeNode* node);
50
51 bool ReadVector(const Toolkit::TreeNode* node, float* num, unsigned int size);
52
53 bool ReadVector(const Toolkit::TreeNode* node, int* num, unsigned int size);
54
55 /**
56  * @brief Reads a color.
57  * 
58  * The node contents could be a vector of 4 floats [r,g,b,a].
59  * 
60  * @param[in] node The tree node with the color.
61  * @param[out] color The RGBA color.
62  * 
63  * @return true if succedded to read the color.
64  */
65 bool ReadColor(const Toolkit::TreeNode* node, Vector4& color);
66
67 bool ReadTimePeriod(const Toolkit::TreeNode* node, TimePeriod& timePeriod);
68
69 bool ReadString(const Toolkit::TreeNode* node, std::string& strValue);
70
71 bool ReadStringVector(const Toolkit::TreeNode* node, std::vector<std::string>& strvector);
72
73 /**
74  * @brief Attempts to read a property of the given type from the given JSON node.
75  * @return The property value that it could interpret. If unsuccessful, its type will be NONE.
76  * @note Currently only numerical types are supported (including boolean).
77  */
78 Property::Value ReadPropertyValue(const Property::Type& propType, const Toolkit::TreeNode& tn);
79
80 /**
81  * @brief Attempts to read a property, whose type it will attempt to determine from the given
82  *  JSON node.
83  * @return The property value that it could interpret. If unsuccessful, its type will be NONE.
84  * @note Currently only numerical types are supported (including boolean).
85  * @note Supports a disambiguation syntax, whereby the type can be specified explicitly:
86  *  { "type": "rotation", "value": [...] } .
87  * @note: rotation / rectangle / extents type properties must be disambiguated in all circumstances.
88  */
89 Property::Value ReadPropertyValue(const Toolkit::TreeNode& tn);
90
91 } // namespace SceneLoader
92 } // namespace Dali
93
94 #endif //DALI_SCENE_LOADER_JSON_UTIL_H_