Merge "remove the exports for enumerated property types" into tizen
[platform/core/uifw/dali-core.git] / dali / public-api / object / type-registry.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/type-registry.h>
20
21 // EXTERNAL INCLUDES
22
23 // INTERNAL INCLUDES
24 #include <dali/public-api/object/property-index.h>
25 #include <dali/internal/event/common/type-registry-impl.h>
26 #include <dali/internal/event/common/property-index-ranges.h>
27
28 namespace Dali
29 {
30
31 TypeRegistry::TypeRegistry()
32 {
33 }
34
35 TypeRegistry::~TypeRegistry()
36 {
37 }
38
39 TypeRegistry::TypeRegistry(const TypeRegistry& copy)
40 : BaseHandle(copy)
41 {
42 }
43
44 TypeRegistry& TypeRegistry::operator=(const TypeRegistry& rhs)
45 {
46   BaseHandle::operator=(rhs);
47   return *this;
48 }
49
50 TypeRegistry TypeRegistry::Get()
51 {
52   return TypeRegistry(Internal::TypeRegistry::Get());
53 }
54
55 Dali::TypeInfo TypeRegistry::GetTypeInfo( const std::string &uniqueTypeName )
56 {
57   return GetImplementation(*this).GetTypeInfo( uniqueTypeName );
58 }
59
60 Dali::TypeInfo TypeRegistry::GetTypeInfo( const std::type_info& registerType )
61 {
62   return GetImplementation(*this).GetTypeInfo( registerType );
63 }
64
65 TypeRegistry::NameContainer TypeRegistry::GetTypeNames() const
66 {
67   return GetImplementation(*this).GetTypeNames();
68 }
69
70 TypeRegistry::TypeRegistry(Internal::TypeRegistry* internal)
71 : BaseHandle(internal)
72 {
73 }
74
75 TypeRegistration::TypeRegistration( const std::type_info& registerType, const std::type_info& baseType,
76                                     TypeInfo::CreateFunction f )
77   : mReference(Internal::TypeRegistry::Get())
78 {
79   Internal::TypeRegistry *impl = Internal::TypeRegistry::Get();
80
81   if( impl->Register( registerType, baseType, f, false ) )
82   {
83     mName = impl->RegistrationName( registerType );
84   }
85 }
86
87 TypeRegistration::TypeRegistration( const std::type_info& registerType, const std::type_info& baseType,
88                                     TypeInfo::CreateFunction f, bool callCreateOnInit )
89   : mReference(Internal::TypeRegistry::Get())
90 {
91   Internal::TypeRegistry *impl = Internal::TypeRegistry::Get();
92
93   if( impl->Register( registerType, baseType, f, callCreateOnInit ) )
94   {
95     mName = impl->RegistrationName( registerType );
96   }
97 }
98
99 TypeRegistration::TypeRegistration( const std::string& name, const std::type_info& baseType,
100                                     TypeInfo::CreateFunction f )
101   : mReference(Internal::TypeRegistry::Get())
102 {
103   Internal::TypeRegistry *impl = Internal::TypeRegistry::Get();
104
105   if( impl->Register( name, baseType, f, false ) )
106   {
107     mName = name;
108   }
109 }
110
111
112 const std::string TypeRegistration::RegisteredName() const
113 {
114   return mName;
115 }
116
117 SignalConnectorType::SignalConnectorType( TypeRegistration& typeRegistration, const std::string& name, TypeInfo::SignalConnectorFunctionV2 func )
118 {
119   Internal::TypeRegistry::Get()->RegisterSignal( typeRegistration, name, func );
120 }
121
122 TypeAction::TypeAction( TypeRegistration &registered, const std::string &name, TypeInfo::ActionFunction f)
123 {
124   Internal::TypeRegistry::Get()->RegisterAction( registered, name, f );
125 }
126
127 PropertyRegistration::PropertyRegistration( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Type type, TypeInfo::SetPropertyFunction setFunc, TypeInfo::GetPropertyFunction getFunc )
128 {
129   DALI_ASSERT_ALWAYS( ( index >= PROPERTY_REGISTRATION_START_INDEX ) && ( index <= PROPERTY_REGISTRATION_MAX_INDEX ) );
130
131   Internal::TypeRegistry::Get()->RegisterProperty( registered, name, index, type, setFunc, getFunc );
132 }
133
134 } // namespace Dali