License conversion from Flora to Apache 2.0
[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::Get()
40 {
41   return TypeRegistry(Internal::TypeRegistry::Get());
42 }
43
44 Dali::TypeInfo TypeRegistry::GetTypeInfo( const std::string &uniqueTypeName )
45 {
46   return GetImplementation(*this).GetTypeInfo( uniqueTypeName );
47 }
48
49 Dali::TypeInfo TypeRegistry::GetTypeInfo( const std::type_info& registerType )
50 {
51   return GetImplementation(*this).GetTypeInfo( registerType );
52 }
53
54 TypeRegistry::NameContainer TypeRegistry::GetTypeNames() const
55 {
56   return GetImplementation(*this).GetTypeNames();
57 }
58
59 TypeRegistry::TypeRegistry(Internal::TypeRegistry* internal)
60 : BaseHandle(internal)
61 {
62 }
63
64 TypeRegistration::TypeRegistration( const std::type_info& registerType, const std::type_info& baseType,
65                                     TypeInfo::CreateFunction f )
66   : mReference(Internal::TypeRegistry::Get())
67 {
68   Internal::TypeRegistry *impl = Internal::TypeRegistry::Get();
69
70   if( impl->Register( registerType, baseType, f, false ) )
71   {
72     mName = impl->RegistrationName( registerType );
73   }
74 }
75
76 TypeRegistration::TypeRegistration( const std::type_info& registerType, const std::type_info& baseType,
77                                     TypeInfo::CreateFunction f, bool callCreateOnInit )
78   : mReference(Internal::TypeRegistry::Get())
79 {
80   Internal::TypeRegistry *impl = Internal::TypeRegistry::Get();
81
82   if( impl->Register( registerType, baseType, f, callCreateOnInit ) )
83   {
84     mName = impl->RegistrationName( registerType );
85   }
86 }
87
88 TypeRegistration::TypeRegistration( const std::string& name, const std::type_info& baseType,
89                                     TypeInfo::CreateFunction f )
90   : mReference(Internal::TypeRegistry::Get())
91 {
92   Internal::TypeRegistry *impl = Internal::TypeRegistry::Get();
93
94   if( impl->Register( name, baseType, f, false ) )
95   {
96     mName = name;
97   }
98 }
99
100
101 const std::string TypeRegistration::RegisteredName() const
102 {
103   return mName;
104 }
105
106 SignalConnectorType::SignalConnectorType( TypeRegistration& typeRegistration, const std::string& name, TypeInfo::SignalConnectorFunctionV2 func )
107 {
108   Internal::TypeRegistry::Get()->RegisterSignal( typeRegistration, name, func );
109 }
110
111 TypeAction::TypeAction( TypeRegistration &registered, const std::string &name, TypeInfo::ActionFunction f)
112 {
113   Internal::TypeRegistry::Get()->RegisterAction( registered, name, f );
114 }
115
116 PropertyRegistration::PropertyRegistration( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Type type, TypeInfo::SetPropertyFunction setFunc, TypeInfo::GetPropertyFunction getFunc )
117 {
118   DALI_ASSERT_ALWAYS( ( index >= PROPERTY_REGISTRATION_START_INDEX ) && ( index <= PROPERTY_REGISTRATION_MAX_INDEX ) );
119
120   Internal::TypeRegistry::Get()->RegisterProperty( registered, name, index, type, setFunc, getFunc );
121 }
122
123 } // namespace Dali