LLVM/Emscripten fixes
[platform/core/uifw/dali-core.git] / dali / public-api / object / base-object.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 // CLASS HEADER
19 #include <dali/public-api/object/base-object.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/object/type-registry.h>
23 #include <dali/integration-api/debug.h>
24 #include <dali/internal/event/common/object-registry-impl.h>
25 #include <dali/internal/event/common/stage-impl.h>
26 #include <dali/internal/event/common/type-registry-impl.h>
27
28 using namespace std;
29
30 namespace Dali
31 {
32
33 BaseObject::BaseObject()
34 {
35 }
36
37 BaseObject::~BaseObject()
38 {
39 }
40
41 void BaseObject::RegisterObject()
42 {
43   if( Internal::Stage::IsInstalled() )
44   {
45     Internal::Stage::GetCurrent()->GetObjectRegistry().RegisterObject( this );
46   }
47 }
48
49 void BaseObject::UnregisterObject()
50 {
51   // Guard to allow handle destruction after Core has been destroyed
52   if( Internal::Stage::IsInstalled() )
53   {
54     Internal::Stage::GetCurrent()->GetObjectRegistry().UnregisterObject( this );
55   }
56 }
57
58 bool BaseObject::DoAction(const std::string& actionName, const std::vector<Property::Value>& attributes)
59 {
60   Dali::Internal::TypeRegistry* registry = Dali::Internal::TypeRegistry::Get();
61
62   if( registry )
63   {
64     return registry->DoActionTo(this, actionName, attributes);
65   }
66
67   return false;
68 }
69
70 const std::string& BaseObject::GetTypeName() const
71 {
72   Dali::Internal::TypeRegistry* registry = Dali::Internal::TypeRegistry::Get();
73
74   if( registry )
75   {
76     Dali::TypeInfo typeInfo = registry->GetTypeInfo(this);
77     if( typeInfo )
78     {
79       return typeInfo.GetName();
80     }
81   }
82
83   // Return an empty string if type-name not found.
84   DALI_LOG_WARNING( "TypeName Not Found\n" );
85   return String::EMPTY;
86 }
87
88 bool BaseObject::GetTypeInfo(Dali::TypeInfo& typeInfo) const
89 {
90   Dali::Internal::TypeRegistry* registry = Dali::Internal::TypeRegistry::Get();
91
92   Dali::TypeInfo info = registry->GetTypeInfo(this);
93   if(info)
94   {
95     typeInfo = info;
96     return true;
97   }
98   else
99   {
100     return false;
101   }
102 }
103
104 bool BaseObject::DoConnectSignal( ConnectionTrackerInterface* connectionTracker, const std::string& signalName, FunctorDelegate* functor )
105 {
106   Dali::Internal::TypeRegistry* registry = Dali::Internal::TypeRegistry::Get();
107
108   if( registry )
109   {
110     return registry->ConnectSignal( this, connectionTracker, signalName, functor );
111   }
112
113   return false;
114 }
115
116 } // namespace Dali
117