[dali_1.0.43] Merge branch 'tizen'
[platform/core/uifw/dali-core.git] / dali / internal / event / common / type-info-impl.h
1 #ifndef __DALI_INTERNAL_TYPE_INFO_H__
2 #define __DALI_INTERNAL_TYPE_INFO_H__
3
4 /*
5  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <string>
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/object/base-handle.h>
26 #include <dali/public-api/object/base-object.h>
27 #include <dali/public-api/object/type-info.h>
28
29 namespace Dali
30 {
31
32 namespace Internal
33 {
34
35 /**
36  * A TypeInfo class to support registered type creation, and introspection of available
37  * actions and signal connection.
38  * It also supports doing actions and connecting signal handlers. Note this is properly
39  * conducted through the BaseHandle interface which uses the TypeRegistry to walk
40  * all base classes.
41  */
42 class TypeInfo : public BaseObject
43 {
44 public:
45   /**
46    * Create TypeInfo
47    * @param [name] the registered name
48    * @param [baseName] the base type registered name
49    * @param [creator] the creator function for this type
50    */
51   TypeInfo(const std::string &name, const std::string &baseName, Dali::TypeInfo::CreateFunction creator);
52
53   /**
54    *
55    */
56   ~TypeInfo();
57
58   /**
59    * @copydoc Dali::TypeInfo::GetName
60    */
61   const std::string& GetName() const;
62
63   /**
64    * @copydoc Dali::TypeInfo::GetBaseName
65    */
66   const std::string& GetBaseName() const;
67
68   /**
69    * @copydoc TypeInfo::CreateFunction
70    */
71   BaseHandle CreateInstance() const;
72
73   /**
74    * @copydoc Dali::TypeInfo::GetCreator
75    */
76   Dali::TypeInfo::CreateFunction GetCreator() const;
77
78   /**
79    * @copydoc Dali::TypeInfo::GetActionCount
80    */
81   size_t GetActionCount() const;
82
83   /**
84    * @copydoc Dali::TypeInfo::GetActionName
85    */
86   std::string GetActionName(size_t index) const;
87
88   /**
89    * @copydoc Dali::TypeInfo::GetSignalCount
90    */
91   size_t GetSignalCount() const;
92
93   /**
94    * @copydoc Dali::TypeInfo::GetSignalName
95    */
96   std::string GetSignalName(size_t index) const;
97
98   /**
99    * @copydoc Dali::TypeInfo::GetPropertyCount
100    */
101   size_t GetPropertyCount() const;
102
103   /**
104    * @copydoc Dali::TypeInfo::GetPropertyName
105    */
106   std::string GetPropertyName(size_t index) const;
107
108   /**
109    * Adds the property indices to the container specified.
110    * @param[in/out] indices The container where the property indices are added.
111    */
112   void GetPropertyIndices( Property::IndexContainer& indices ) const;
113
114   /**
115    * @copydoc Dali::TypeInfo::GetPropertyName() const
116    */
117   const std::string& GetPropertyName( Property::Index index ) const;
118
119   /*
120    * Add an action function
121    */
122   void AddActionFunction( const std::string &actionName, Dali::TypeInfo::ActionFunction function );
123
124   /*
125    * Add a function for connecting a signal.
126    * @param[in] signalName The name of the signal.
127    * @param[in] function The function used for connecting to the signal.
128    */
129   void AddConnectorFunction( const std::string& signalName, Dali::TypeInfo::SignalConnectorFunction function );
130
131   /**
132    * Adds an event-thread only property to the type.
133    * @param[in] name The name of the property.
134    * @param[in] index The index of the property.
135    * @param[in] type The Property::Type.
136    * @param[in] setFunc The function to call to set the property (Can be NULL).
137    * @param[in] getFunc The function to call to retrieve the value of the property.
138    */
139   void AddProperty( const std::string& name, Property::Index index, Property::Type type, Dali::TypeInfo::SetPropertyFunction setFunc, Dali::TypeInfo::GetPropertyFunction getFunc );
140
141   /**
142    * Adds an animatable property to the type.
143    * @param[in] name The name of the property.
144    * @param[in] index The index of the property
145    * @param[in] type The Property::Type.
146    */
147   void AddAnimatableProperty( const std::string& name, Property::Index index, Property::Type type );
148
149   /**
150    * Adds a component of an animatable property to the type.
151    * The animatable property must have been type-registered and must be a Vector2, Vector3 or Vector4 type.
152    * @param[in] name The name of the component.
153    * @param[in] index The index of the property
154    * @param[in] baseIndex The index of the base animatable property
155    * @param[in] component The index The index of the component.
156    */
157   void AddAnimatablePropertyComponent( const std::string& name, Property::Index index, Property::Index baseIndex, unsigned int componentIndex );
158
159   /**
160    * Do an action on base object
161    * @param [in] object The base object to act upon
162    * @param [in] actionName The name of the desired action
163    * @param [in] properties The arguments of the action
164    * @return bool If the action could be executed
165    */
166   bool DoActionTo(BaseObject *object, const std::string &actionName, const Property::Map &properties);
167
168   /**
169    * Connects a callback function with the object's signals.
170    * @param[in] object The object providing the signal.
171    * @param[in] tracker Used to disconnect the signal.
172    * @param[in] signalName The signal to connect to.
173    * @param[in] functor A newly allocated FunctorDelegate.
174    * @return True if the signal was connected.
175    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
176    */
177   bool ConnectSignal( BaseObject* object, ConnectionTrackerInterface* connectionTracker, const std::string& signalName, FunctorDelegate* functor );
178
179   /**
180    * Given a property name, retrieve the index.
181    * @param[in] name The name of the property.
182    * @return The index associated with that name.
183    */
184   Property::Index GetPropertyIndex( const std::string& name ) const;
185
186   /**
187    * Given a property index, retrieve the index of its base property.
188    * @param[in] index The index of the property.
189    * @return The index of the base property associated with the given property index.
190    */
191   Property::Index GetBasePropertyIndex( Property::Index index ) const;
192
193   /**
194    * Given a property index, retrieve its component index.
195    * @param[in] index The index of the property.
196    * @return The component index associated with that property index.
197    */
198   int GetComponentIndex( Property::Index index ) const;
199
200   /**
201    * Checks if there is a setter for the property. If there is then it is writable.
202    * @param[in] index The property index.
203    * @return True, if writable, false otherwise.
204    */
205   bool IsPropertyWritable( Property::Index index ) const;
206
207   /**
208    * Retrieve the Property::Type of the property at the given index.
209    * @param[in] index The property index.
210    * @return The Property::Type at that index.
211    */
212   Property::Type GetPropertyType( Property::Index index ) const;
213
214   /**
215    * Sets the value of a property at the index specified for the given object.
216    * @param[in] object The object whose property is to be set.
217    * @param[in] index The property index.
218    * @param[in] value The value to set.
219    */
220   void SetProperty( BaseObject *object, Property::Index index, const Property::Value& value ) const;
221
222   /**
223    * Sets the value of a property with the name specified for the given object.
224    * @param[in] object The object whose property is to be set.
225    * @param[in] name The property name.
226    * @param[in] value The value to set.
227    */
228   void SetProperty( BaseObject *object, const std::string& name, const Property::Value& value ) const;
229
230   /**
231    * Retrieves the value of a property at the index specified for the given object.
232    * @param[in] object The object whose property is to be queried.
233    * @param[in] index The property index.
234    * @return The current value of the property.
235    */
236   Property::Value GetProperty( const BaseObject *object, Property::Index index ) const;
237
238   /**
239    * Retrieves the value of a property with the name specified for the given object.
240    * @param[in] object The object whose property is to be queried.
241    * @param[in] name The property name.
242    * @return The current value of the property.
243    */
244   Property::Value GetProperty( const BaseObject *object, const std::string& name ) const;
245
246 private:
247
248   struct RegisteredProperty
249   {
250     RegisteredProperty()
251     : type( Property::NONE ),
252       setFunc( NULL ),
253       getFunc( NULL ),
254       name(),
255       basePropertyIndex(Property::INVALID_INDEX),
256       componentIndex(Property::INVALID_COMPONENT_INDEX)
257     {
258     }
259
260     RegisteredProperty( Property::Type propType, Dali::TypeInfo::SetPropertyFunction set, Dali::TypeInfo::GetPropertyFunction get, const std::string& propName, Property::Index basePropertyIndex, int componentIndex )
261     : type( propType ),
262       setFunc( set ),
263       getFunc( get ),
264       name( propName ),
265       basePropertyIndex(basePropertyIndex),
266       componentIndex(componentIndex)
267     {
268     }
269
270     Property::Type type;
271     Dali::TypeInfo::SetPropertyFunction setFunc;
272     Dali::TypeInfo::GetPropertyFunction getFunc;
273     std::string name;
274     Property::Index basePropertyIndex;
275     int componentIndex;
276   };
277
278   typedef std::pair<std::string, Dali::TypeInfo::SignalConnectorFunction > ConnectionPair;
279   typedef std::pair<std::string, Dali::TypeInfo::ActionFunction > ActionPair;
280   typedef std::pair<Property::Index, RegisteredProperty> RegisteredPropertyPair;
281
282   typedef std::vector< ActionPair > ActionContainer;
283   typedef std::vector< ConnectionPair > ConnectorContainer;
284   typedef std::vector< RegisteredPropertyPair > RegisteredPropertyContainer;
285
286   std::string mTypeName;
287   std::string mBaseTypeName;
288   Dali::TypeInfo::CreateFunction mCreate;
289   ActionContainer mActions;
290   ConnectorContainer mSignalConnectors;
291   RegisteredPropertyContainer mRegisteredProperties;
292 };
293
294 } // namespace Internal
295
296 // Helpers for public-api forwarding methods
297
298 inline Internal::TypeInfo& GetImplementation(Dali::TypeInfo& typeInfo)
299 {
300   DALI_ASSERT_ALWAYS(typeInfo);
301
302   BaseObject& handle = typeInfo.GetBaseObject();
303
304   return static_cast<Internal::TypeInfo&>(handle);
305 }
306
307 inline const Internal::TypeInfo& GetImplementation(const Dali::TypeInfo& typeInfo)
308 {
309   DALI_ASSERT_ALWAYS(typeInfo);
310
311   const BaseObject& handle = typeInfo.GetBaseObject();
312
313   return static_cast<const Internal::TypeInfo&>(handle);
314 }
315
316 } // namespace Dali
317
318 #endif // header