Updated all cpp files to new format
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / builder / builder-impl-debug.cpp
1 /*
2  * Copyright (c) 2021 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 #ifdef DEBUG_ENABLED
18 #include <dali-toolkit/internal/builder/builder-get-is.inl.h>
19 #include <dali-toolkit/internal/builder/builder-impl-debug.h>
20 #include <dali-toolkit/internal/builder/builder-impl.h>
21 #include <cstring>
22 #include <iostream>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28 namespace Internal
29 {
30 void LogTree(const Toolkit::JsonParser& parser)
31 {
32   if(OptionalChild constants = IsChild(parser.GetRoot(), "constants"))
33   {
34     for(TreeNode::ConstIterator iter = (*constants).CBegin();
35         iter != (*constants).CEnd();
36         ++iter)
37     {
38       if(((*iter).first && strcmp((*iter).first, "DUMP_TREE") == 0) ||
39          ((*iter).second.GetType() == TreeNode::STRING && strcmp((*iter).second.GetString(), "DUMP_TREE") == 0))
40       {
41         std::ostringstream oss;
42         parser.Write(oss, 2);
43         std::cout << oss.str() << std::endl;
44       }
45     }
46   }
47 }
48
49 std::string PropertyValueToString(const Property::Value& value)
50 {
51   std::ostringstream oss;
52   oss << value;
53
54   return oss.str();
55 }
56
57 } // namespace Internal
58 } // namespace Toolkit
59 } // namespace Dali
60
61 #endif // DEBUG_ENABLED