Merge "Added actor creation from json snippet" into tizen
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / internal / controls / relayout-controller.cpp
1 /*
2  * Copyright (c) 2014 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
20 #include "relayout-controller.h"
21 #include "relayout-controller-impl.h"
22
23 // EXTERNAL INCLUDES
24
25 #include <stack>
26 #include <sstream>
27 #include <dali/integration-api/debug.h>
28
29 // INTERNAL INCLUDES
30
31 #include "dali-toolkit/public-api/controls/control.h"
32 #include "dali-toolkit/public-api/controls/control-impl.h"
33 #include "dali-toolkit/public-api/controls/text-view/text-view.h"
34
35 namespace Dali
36 {
37
38 namespace Toolkit
39 {
40
41 namespace Internal
42 {
43
44 namespace
45 {
46 // Flag to avoid doing more than one request per frame
47 // getting the singleton handle can be expensive as it requires calling to adaptor, dynamic cast etc
48 // and it can get called 100 times per frame easily in startup and new view initialization
49   bool gRelayoutRequestPending = false;
50 }
51
52 RelayoutController::RelayoutController()
53 {
54
55 }
56
57 RelayoutController::~RelayoutController()
58 {
59
60 }
61
62 void RelayoutController::Request()
63 {
64   // are we already going to do it this frame
65   if( !gRelayoutRequestPending )
66   {
67     RelayoutController controller;
68
69     // Check whether the RelayoutController is already created
70     Dali::Adaptor& adaptor = Dali::Adaptor::Get();
71     Dali::BaseHandle handle = adaptor.GetSingleton(typeid(RelayoutController));
72
73     if(handle)
74     {
75       // If so, downcast the handle of singleton to RelayoutController
76       controller = RelayoutController(dynamic_cast<Internal::RelayoutControllerImpl*>(handle.GetObjectPtr()));
77     }
78
79     if(!controller)
80     {
81       // If not, create the RelayoutController and register it as a singleton
82       controller = RelayoutController( new Internal::RelayoutControllerImpl(gRelayoutRequestPending) );
83       adaptor.RegisterSingleton( typeid(controller), controller );
84     }
85
86     GetImpl(controller).Request();
87     gRelayoutRequestPending = true;
88   }
89 }
90
91 RelayoutController::RelayoutController(Internal::RelayoutControllerImpl *impl)
92   : BaseHandle(impl)
93 {
94 }
95
96 } // namespace Internal
97
98 } // namespace Toolkit
99
100 } // namespace Dali
101