13a78c0297bbfec57e64069102c657f79c3d8d50
[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) 2017 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/common/vector-wrapper.h>
23 #include <dali/public-api/object/object-registry.h>
24 #include <dali/public-api/object/type-registry.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
85   using InstanceCountPair = std::pair< const std::string, int >;
86   using InstanceTypePair = std::pair< BaseObject*, std::string >;
87
88   Dali::ObjectRegistry    mObjectRegistry;
89   Dali::Timer             mTimer;
90   std::vector< InstanceCountPair > mInstanceCountContainer;
91   std::vector< InstanceTypePair >  mInstanceTypes;
92 };
93
94 } // Adaptor
95 } // Internal
96 } // Dali
97
98 #endif // __DALI_ADAPTOR_OBJECT_PROFILER_H__