Fix code to not include std set directly
[platform/core/uifw/dali-core.git] / dali / internal / event / common / object-registry-impl.h
1 #ifndef __DALI_INTERNAL_OBJECT_REGISTRY_H__
2 #define __DALI_INTERNAL_OBJECT_REGISTRY_H__
3
4 //
5 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 //
7 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 // INTERNAL INCLUDES
21 #ifdef DEBUG_ENABLED
22 #include <dali/public-api/common/set-wrapper.h>
23 #endif
24 #include <dali/public-api/object/ref-object.h>
25 #include <dali/public-api/object/object-registry.h>
26 #include <dali/public-api/object/base-object.h>
27
28 namespace Dali
29 {
30
31 struct Vector2;
32
33 namespace Internal
34 {
35
36 namespace SceneGraph
37 {
38 class UpdateManager;
39 }
40
41 class ObjectRegistry;
42
43 typedef IntrusivePtr<ObjectRegistry> ObjectRegistryPtr;
44
45 /**
46  * The ObjectRegistry notifies it's observers when an object is created.
47  * There is a single instance of Object registry for each Dali-core instance.
48  * All Dali Objects need to register with ObjectRegistry to be observed by
49  * feedback plugin's and other observers.
50  */
51 class ObjectRegistry : public BaseObject
52 {
53 public:
54
55   /**
56    * Create the objectRegistry
57    */
58   static ObjectRegistryPtr New();
59
60   /**
61    * Registers the Object into the Object Registry, Which notifies
62    * about this object creation to its observers.
63    * @pre The object is not already registered.
64    * @param[in] object Pointer to the object.
65    */
66   void RegisterObject( Dali::BaseObject* object );
67
68   /**
69    * Unregisters the Object from the Object Registry, Which notifies
70    * about this object destruction to its observers.
71    * @pre The object is already registered.
72    * @param[in] object Pointer to the object.
73    */
74   void UnregisterObject( Dali::BaseObject* object );
75
76   /**
77    * @copydoc Dali::ObjectRegistry::ObjectCreatedSignal()
78    */
79   Dali::ObjectRegistry::ObjectCreatedSignalV2& ObjectCreatedSignal()
80   {
81     return mObjectCreatedSignalV2;
82   }
83
84   /**
85    * @copydoc Dali::ObjectRegistry::ObjectDestroyedSignal()
86    */
87   Dali::ObjectRegistry::ObjectDestroyedSignalV2& ObjectDestroyedSignal()
88   {
89     return mObjectDestroyedSignalV2;
90   }
91
92   /**
93    * Connects a callback function with the object registry signals.
94    * @param[in] object The object providing the signal.
95    * @param[in] tracker Used to disconnect the signal.
96    * @param[in] signalName The signal to connect to.
97    * @param[in] functor A newly allocated FunctorDelegate.
98    * @return True if the signal was connected.
99    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
100    */
101   static bool DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor );
102
103 private:
104
105   /**
106    * Protected constructor; see also ObjectRegistry::New()
107    */
108   ObjectRegistry();
109
110   /**
111    * A reference counted object may only be deleted by calling Unreference()
112    */
113   ~ObjectRegistry();
114
115 private:
116
117   Dali::ObjectRegistry::ObjectCreatedSignalV2 mObjectCreatedSignalV2;
118   Dali::ObjectRegistry::ObjectDestroyedSignalV2 mObjectDestroyedSignalV2;
119
120 #ifdef DEBUG_ENABLED
121   std::set< Dali::BaseObject* > mDebugRegistry; ///< This allows us to assert that an object is only registered once (debug builds only)
122 #endif
123
124 };
125
126 } // namespace Internal
127
128 // Helpers for public-api forwarding methods
129
130 inline Internal::ObjectRegistry& GetImplementation(Dali::ObjectRegistry& objectRegistry)
131 {
132   DALI_ASSERT_ALWAYS( objectRegistry && "ObjectRegistry handle is empty" );
133
134   BaseObject& handle = objectRegistry.GetBaseObject();
135
136   return static_cast<Internal::ObjectRegistry&>(handle);
137 }
138
139 inline const Internal::ObjectRegistry& GetImplementation(const Dali::ObjectRegistry& objectRegistry)
140 {
141   DALI_ASSERT_ALWAYS( objectRegistry && "ObjectRegistry handle is empty" );
142
143   const BaseObject& handle = objectRegistry.GetBaseObject();
144
145   return static_cast<const Internal::ObjectRegistry&>(handle);
146 }
147
148 } // namespace Dali
149
150 #endif // __DALI_INTERNAL_OBJECT_REGISTRY_H__