Merge "Added FileReader and FileWriter classes to wrap FileCloser" into devel/master
[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/devel-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   /**
45    * Constructor
46    * @param timeInterval to specify the frequency of reporting
47    */
48   ObjectProfiler( unsigned int timeInterval );
49
50   /**
51    * Destructor
52    */
53   ~ObjectProfiler();
54
55   /**
56    * Display a list of types with the current number of instances in the system
57    */
58   void DisplayInstanceCounts();
59
60 private:
61   /**
62    * If timer is running, display the instance counts
63    */
64   bool OnTimeout();
65
66   /**
67    * Callback used when objects are created. Increases instance count for that object type
68    * @param[in] handle of the created object
69    */
70   void OnObjectCreated(BaseHandle handle);
71
72   /**
73    * Callback used when objects are created. Decreases instance count for that object type
74    * @param[in] object The object being destroyed
75    */
76   void OnObjectDestroyed(const Dali::RefObject* object);
77
78   /**
79    * Get the memory size of the given object
80    */
81   int GetMemorySize(const std::string& name, int count);
82
83 private:
84   typedef std::map<std::string, int> InstanceCountMap;
85   typedef std::pair<const std::string, int> InstanceCountPair;
86   typedef InstanceCountMap::iterator InstanceCountMapIterator;
87   typedef std::pair<BaseObject*, std::string> InstanceTypePair;
88   typedef std::vector<InstanceTypePair> InstanceTypes;
89
90   Dali::ObjectRegistry    mObjectRegistry;
91   Dali::Timer             mTimer;
92   InstanceCountMap        mInstanceCountMap;
93   InstanceTypes           mInstanceTypes;
94 };
95
96 } // Adaptor
97 } // Internal
98 } // Dali
99
100 #endif // __DALI_ADAPTOR_OBJECT_PROFILER_H__