[dali_1.0.8] Merge branch 'tizen'
[platform/core/uifw/dali-adaptor.git] / adaptors / common / singleton-service-impl.h
1 #ifndef __DALI_INTERNAL_SINGLETON_SERVICE_H__
2 #define __DALI_INTERNAL_SINGLETON_SERVICE_H__
3
4 /*
5  * Copyright (c) 2014 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 <dali/public-api/object/base-object.h>
23 #include <dali/public-api/common/map-wrapper.h>
24
25 // INTERNAL INCLUDES
26 #include <singleton-service.h>
27
28 namespace Dali
29 {
30
31 namespace Internal
32 {
33
34 namespace Adaptor
35 {
36
37 class SingletonService : public Dali::BaseObject
38 {
39 public:
40
41   /**
42    * Create a SingletonService.
43    * This should only be called once by the Application class.
44    * @return A newly created SingletonService.
45    */
46   static Dali::SingletonService New() DALI_IMPORT_API;
47
48   /**
49    * @copydoc Dali::SingletonService::Get()
50    */
51   static Dali::SingletonService Get();
52
53   /**
54    * @copydoc Dali::SingletonService::Register()
55    */
56   void Register( const std::type_info& info, BaseHandle singleton );
57
58   /**
59    * @copydoc Dali::SingletonService::GetSingleton()
60    */
61   BaseHandle GetSingleton( const std::type_info& info ) const;
62
63 private:
64
65   /**
66    * Private Constructor
67    * @see SingletonService::New()
68    */
69   SingletonService();
70
71   /**
72    * Virtual Destructor
73    */
74   virtual ~SingletonService();
75
76   // Undefined
77   SingletonService( const SingletonService& );
78   SingletonService& operator=( SingletonService& );
79
80 private:
81
82   typedef std::pair<std::string, BaseHandle> SingletonPair;
83   typedef std::map<std::string, BaseHandle>  SingletonContainer;
84   typedef SingletonContainer::const_iterator SingletonConstIter;
85
86   SingletonContainer mSingletonContainer; ///< The container to look up singleton by its type name
87 };
88
89 } // namespace Adaptor
90
91 } // namespace Internal
92
93 // Helpers for public-api forwarding methods
94
95 inline Internal::Adaptor::SingletonService& GetImplementation(Dali::SingletonService& player)
96 {
97   DALI_ASSERT_ALWAYS( player && "SingletonService handle is empty" );
98
99   BaseObject& handle = player.GetBaseObject();
100
101   return static_cast<Internal::Adaptor::SingletonService&>(handle);
102 }
103
104 inline const Internal::Adaptor::SingletonService& GetImplementation(const Dali::SingletonService& player)
105 {
106   DALI_ASSERT_ALWAYS( player && "SingletonService handle is empty" );
107
108   const BaseObject& handle = player.GetBaseObject();
109
110   return static_cast<const Internal::Adaptor::SingletonService&>(handle);
111 }
112
113 } // namespace Dali
114
115 #endif // __DALI_INTERNAL_SINGLETON_SERVICE_H__