Provided color-conversion helpers
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / builder / builder-impl-debug.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 #ifdef DEBUG_ENABLED
18 #include <dali-toolkit/internal/builder/builder-impl-debug.h>
19 #include <dali-toolkit/internal/builder/builder-impl.h>
20 #include <dali-toolkit/internal/builder/builder-get-is.inl.h>
21 #include <iostream>
22 #include <cstring>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28 namespace Internal
29 {
30
31 void LogTree( const Toolkit::JsonParser& parser )
32 {
33   if( OptionalChild constants = IsChild(parser.GetRoot(), "constants") )
34   {
35     for(TreeNode::ConstIterator iter = (*constants).CBegin();
36         iter != (*constants).CEnd(); ++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 } // Internal
58 } // Toolkit
59 } // Dali
60
61 #endif // DEBUG_ENABLED