Merge remote-tracking branch 'origin/tizen' into new_text
[platform/core/uifw/dali-adaptor.git] / adaptors / common / object-profiler.h
1 #ifndef __DALI_ADAPTOR_OBJECT_PROFILER_H__
2 #define __DALI_ADAPTOR_OBJECT_PROFILER_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/object-registry.h>
23 #include <dali/public-api/object/type-registry.h>
24 #include <dali/public-api/common/map-wrapper.h>
25 #include <dali/public-api/signals/connection-tracker.h>
26
27 // INTERNAL INCLUDES
28 #include <timer.h>
29
30 namespace Dali
31 {
32 namespace Internal
33 {
34 namespace Adaptor
35 {
36
37 /**
38  * Class to profile the number of instances of Objects in the system
39  */
40 class ObjectProfiler : public ConnectionTracker
41 {
42 public:
43   /**
44    * Constructor
45    */
46   ObjectProfiler();
47
48   /**
49    * Destructor
50    */
51   ~ObjectProfiler();
52
53   /**
54    * Display a list of types with the current number of instances in the system
55    */
56   void DisplayInstanceCounts();
57
58 private:
59   /**
60    * If timer is running, display the instance counts
61    */
62   bool OnTimeout();
63
64   /**
65    * Callback used when objects are created. Increases instance count for that object type
66    * @param[in] handle of the created object
67    */
68   void OnObjectCreated(BaseHandle handle);
69
70   /**
71    * Callback used when objects are created. Decreases instance count for that object type
72    * @param[in] object The object being destroyed
73    */
74   void OnObjectDestroyed(const Dali::RefObject* object);
75
76   /**
77    * Get the memory size of the given object
78    */
79   int GetMemorySize(const std::string& name, int count);
80
81 private:
82   typedef std::map<std::string, int> InstanceCountMap;
83   typedef std::pair<const std::string, int> InstanceCountPair;
84   typedef InstanceCountMap::iterator InstanceCountMapIterator;
85   typedef std::pair<BaseObject*, std::string> InstanceTypePair;
86   typedef std::vector<InstanceTypePair> InstanceTypes;
87
88   Dali::ObjectRegistry    mObjectRegistry;
89   Dali::Timer             mTimer;
90   InstanceCountMap        mInstanceCountMap;
91   InstanceTypes           mInstanceTypes;
92   bool                    mIsActive;
93 };
94
95 } // Adaptor
96 } // Internal
97 } // Dali
98
99 #endif // __DALI_ADAPTOR_OBJECT_PROFILER_H__