Optimize type-info-impl and type-registry-impl
[platform/core/uifw/dali-core.git] / dali / internal / event / common / type-registry-impl.h
index 1eba3ee..8f72dd0 100644 (file)
@@ -1,28 +1,30 @@
 #ifndef __DALI_INTERNAL_TYPE_REGISTRY_H__
 #define __DALI_INTERNAL_TYPE_REGISTRY_H__
 
-//
-// Copyright (c) 2014 Samsung Electronics Co., Ltd.
-//
-// Licensed under the Flora License, Version 1.0 (the License);
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://floralicense.org/license/
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an AS IS BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
+/*
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
 
 // INTERNAL INCLUDES
-#include <dali/public-api/common/map-wrapper.h>
+#include <dali/devel-api/object/csharp-type-info.h>
 #include <dali/public-api/object/type-registry.h>
 #include <dali/public-api/object/base-handle.h>
 #include <dali/public-api/object/base-object.h>
 #include <dali/internal/event/common/type-info-impl.h>
+#include <dali/internal/event/object/default-property-metadata.h>
 
 namespace Dali
 {
@@ -30,8 +32,7 @@ namespace Dali
 namespace Internal
 {
 
-////////////////////////////////////////////////////////////////////////////////
-class TypeRegistry;
+class PropertyDetails;
 
 /*
 * @copydoc Dali::TypeRegistry
@@ -39,64 +40,99 @@ class TypeRegistry;
 class TypeRegistry : public Dali::BaseObject
 {
 public:
+
+  // using intrusive pointer instead of handles internally as they are considerably cheaper
+  using TypeInfoPointer = IntrusivePtr<Dali::Internal::TypeInfo>;
+
   /**
    * Get the TypeRegistry
    */
   static TypeRegistry *Get();
 
-  /*
+  /**
    * @copydoc Dali::TypeRegistry::GetTypeInfo
    */
-  Dali::TypeInfo GetTypeInfo( const std::string &uniqueTypeName );
+  TypeInfoPointer GetTypeInfo( const std::string &uniqueTypeName );
 
-  /*
+  /**
    * @copydoc Dali::TypeRegistry::GetTypeInfo
    */
-  Dali::TypeInfo GetTypeInfo( const std::type_info& registerType );
+  TypeInfoPointer GetTypeInfo( const std::type_info& registerType );
 
-  /*
-   * @copydoc Dali::TypeRegistry::GetTypeNames
+  /**
+   * @copydoc Dali::TypeRegistry::GetTypeNameCount
    */
-  Dali::TypeRegistry::NameContainer GetTypeNames() const;
+  size_t GetTypeNameCount() const;
 
-  /*
-   * Register a creation function under a unique name.
+  /**
+   * @copydoc Dali::TypeRegistry::GetTypeName
+   */
+  std::string GetTypeName(size_t index) const;
+
+  /**
+   * Register a type
+   *
    * @param [in] theTypeInfo Type info for the type to be registered
    * @param [in] baseTypeInfo Type info for its base class
    * @param [in] createInstance Instance creation function
-   * @param [in] callCreateOnInit If true call createInstance on dali initialisation
-   * @return true if the name could be registered.
+   * @param [in] callCreateOnInit If true call createInstance on DALi initialisation
+   * @return the name of the registered type.
    */
-  bool Register( const std::type_info& theTypeInfo, const std::type_info& baseTypeInfo,
-                 Dali::TypeInfo::CreateFunction createInstance, bool callCreateOnInit );
+  std::string Register( const std::type_info& theTypeInfo, const std::type_info& baseTypeInfo,
+                        Dali::TypeInfo::CreateFunction createInstance, bool callCreateOnInit );
 
-  /*
-   * Register a creation function under a unique name.
-   * @param [in] name The name type to be registered (must be unique)
+  /**
+   * Register a type
+   *
+   * @param [in] theTypeInfo Type info for the type to be registered
    * @param [in] baseTypeInfo Type info for its base class
    * @param [in] createInstance Instance creation function
-   * @param [in] callCreateOnInit If true call createInstance on dali initialisation
-   * @return true if the name could be registered.
+   * @param [in] callCreateOnInit If true call createInstance on DALi initialisation
+   * @param [in] defaultProperties the table of default property metadata
+   * @param [in] defaultPropertyCount count of default properties
+   * @return the name of the registered type.
    */
-  bool Register( const std::string& name, const std::type_info& baseTypeInfo,
-                 Dali::TypeInfo::CreateFunction createInstance, bool callCreateOnInit  );
+  std::string Register( const std::type_info& theTypeInfo, const std::type_info& baseTypeInfo,
+                        Dali::TypeInfo::CreateFunction createInstance, bool callCreateOnInit,
+                        const Dali::PropertyDetails* defaultProperties, Property::Index defaultPropertyCount );
 
-  /*
+  /**
+   * Register a type
+   *
+   * @param [in] theTypeInfo Type info for the type to be registered
+   * @param [in] baseTypeInfo Type info for its base class
+   * @param [in] createInstance Instance creation function
+   * @param [in] callCreateOnInit If true call createInstance on DALi initialisation
+   * @param [in] defaultProperties the table of default property metadata
+   * @param [in] defaultPropertyCount count of default properties
+   * @return the name of the registered type.
+   */
+  std::string Register( const std::string& name, const std::type_info& baseTypeInfo,
+                        Dali::TypeInfo::CreateFunction createInstance, bool callCreateOnInit,
+                        const Dali::PropertyDetails* defaultProperties = nullptr, Property::Index defaultPropertyCount = 0 );
+
+  /**
+   * @copydoc CSharpTypeRegistry::TypeRegistration( const std::string&, const std::type_info&, TypeInfo::CreateFunction );
+   */
+  void Register( const std::string& name, const std::type_info& baseTypeInfo,
+                 Dali::CSharpTypeInfo::CreateFunction createInstance );
+
+  /**
    * Register a signal connector function to a type
    * @param [in] typeRegistration TypeRegistration object used to register the type
    * @param [in] name Signal name
    * @param [in] func Signal connector function
    */
-  void RegisterSignal( TypeRegistration& typeRegistration, const std::string& name, Dali::TypeInfo::SignalConnectorFunctionV2 func );
+  void RegisterSignal( TypeRegistration& typeRegistration, const std::string& name, Dali::TypeInfo::SignalConnectorFunction func );
 
-  /*
+  /**
    * Register an action function to a type
    * @param [in] registered TypeRegistration object used to register the type
    * @param [in] name Action name
    * @param [in] f Action function
    * @return true if registered
    */
-  bool RegisterAction( TypeRegistration &registered, const std::string &name, Dali::TypeInfo::ActionFunction f);
+  bool RegisterAction( TypeRegistration& registered, const std::string& name, Dali::TypeInfo::ActionFunction f );
 
   /**
    * Register an event-thread only property with a type
@@ -110,25 +146,89 @@ public:
    */
   bool RegisterProperty( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Type type, Dali::TypeInfo::SetPropertyFunction setFunc, Dali::TypeInfo::GetPropertyFunction getFunc );
 
-  /*
+  /**
+   * Register an event-thread only property with a type (used by C# Custom controls)
+   * @param [in] objectName name of the object used to register the type
+   * @param [in] name Property name
+   * @param [in] index Property index
+   * @param [in] type Property type
+   * @param [in] setFunc The function to set the property (Can be NULL).
+   * @param [in] getFunc The function to get the value of a property.
+   * @return true if registered
+   */
+  bool RegisterProperty( const std::string& objectName, const std::string& name, Property::Index index, Property::Type type, Dali::CSharpTypeInfo::SetPropertyFunction setFunc, Dali::CSharpTypeInfo::GetPropertyFunction getFunc );
+
+
+  /**
+   * Register a scene graph only property with a type
+   * @param [in] registered TypeRegistration object used to register the type
+   * @param [in] name Property name
+   * @param [in] index Property index
+   * @param [in] type Property type
+   * @return true if registered
+   */
+  bool RegisterAnimatableProperty( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Type type );
+
+  /**
+   * Register a scene graph only property with a default value
+   * @param [in] registered TypeRegistration object used to register the type
+   * @param [in] name Property name
+   * @param [in] index Property index
+   * @param [in] value Property default value
+   * @return true if registered
+   */
+  bool RegisterAnimatableProperty( TypeRegistration& registered, const std::string& name, Property::Index index, const Property::Value& defaultValue );
+
+  /**
+   * Register a component of a scene graph only property that supports components (i.e. Vector2, Vector3 and Vector4)
+   * @param [in] registered TypeRegistration object used to register the type
+   * @param [in] name Component name
+   * @param [in] index Property index
+   * @param [in] baseIndex Base animatable property index
+   * @param [in] componentIndex Component index
+   * @return true if registered
+   */
+  bool RegisterAnimatablePropertyComponent( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Index baseIndex, unsigned int componentIndex );
+
+  /**
+   * Register a event-thread only property with a type and a default value
+   * @param [in] registeredType Name of a registered type on which to register the child property.
+   * @param [in] name Property name
+   * @param [in] index Property index
+   * @param [in] type Property type
+   * @return true if registered
+   */
+  bool RegisterChildProperty( const std::string& registeredType, const std::string& name, Property::Index index, Property::Type type );
+
+  /**
+   * Register a event-thread only property with a type and a default value
+   * @param [in] registered TypeRegistration object used to register the type
+   * @param [in] name Property name
+   * @param [in] index Property index
+   * @param [in] type Property type
+   * @return true if registered
+   */
+  bool RegisterChildProperty( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Type type );
+
+  /**
    * @copydoc Dali::Internal::TypeInfo::DoActionTo
    * Walks all base types until it finds a doer.
    */
-  bool DoActionTo( BaseObject * const object, const std::string &actionName, const std::vector<Property::Value> &properties);
+  bool DoActionTo( BaseObject * const object, const std::string &actionName, const Property::Map& properties);
 
   /**
    * @copydoc Dali::BaseHandle::ConnectSignal()
    */
   bool ConnectSignal( BaseObject* object, ConnectionTrackerInterface* connectionTracker, const std::string& signalName, FunctorDelegate* functor );
 
-  /*
+  /**
    * Return the type info for a given BaseObject pointer
    * @param [in] pBaseObject Pointer to a BaseObject
    * @return TypeInfo for the BaseObject.
    */
-  Dali::TypeInfo GetTypeInfo(const Dali::BaseObject * const pBaseObject);
+  TypeInfoPointer GetTypeInfo(const Dali::BaseObject * const pBaseObject);
 
-  /*
+  /**
    * Calls any type creation functions that have been flagged as initialization functions
    */
   void CallInitFunctions(void) const;
@@ -144,13 +244,11 @@ public:
 
 private:
   /*
-   * Map from type name to TypeInfo
+   * Mapping from type name to TypeInfo
    */
-  typedef std::map<std::string, Dali::TypeInfo> RegistryMap;
-  RegistryMap mRegistryLut;
+  std::vector< TypeInfoPointer > mRegistryLut;
 
-  typedef std::vector<Dali::TypeInfo::CreateFunction> InitFunctions;
-  InitFunctions mInitFunctions;
+  std::vector< Dali::TypeInfo::CreateFunction > mInitFunctions;
 
 private:
   TypeRegistry();