[dali_1.1.15] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / internal / common / memory-pool-object-allocator.h
1 #ifndef __DALI_INTERNAL_MEMORY_POOL_OBJECT_ALLOCATOR_H__
2 #define __DALI_INTERNAL_MEMORY_POOL_OBJECT_ALLOCATOR_H__
3
4 /*
5  * Copyright (c) 2015 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 // INTERNAL INCLUDES
22 #include <dali/internal/common/fixed-size-memory-pool.h>
23
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 /**
31  * @brief Helper for allocating/deallocating objects using a memory pool.
32  *
33  * This is a helper class for creating and destroying objects of a single given type.
34  * The type may be a class or POD.
35  *
36  */
37 template< typename T >
38 class MemoryPoolObjectAllocator
39 {
40 public:
41
42   /**
43    * @brief Constructor
44    */
45   MemoryPoolObjectAllocator()
46   : mPool( NULL )
47   {
48     ResetMemoryPool();
49   }
50
51   /**
52    * @brief Destructor
53    */
54   ~MemoryPoolObjectAllocator()
55   {
56     delete mPool;
57   }
58
59   /**
60    * @brief Allocate from the memory pool
61    *
62    * @return Return the allocated object
63    */
64   T* Allocate()
65   {
66     return new ( mPool->Allocate() ) T();
67   }
68
69   /**
70    * @brief Thread-safe version of Allocate()
71    *
72    * @return Return the allocated object
73    */
74   T* AllocateThreadSafe()
75   {
76     return new ( mPool->AllocateThreadSafe() ) T();
77   }
78
79   /**
80    * @brief Allocate a block of memory from the memory pool of the appropriate size to
81    *        store an object of type T. This is usually so the memory can be used in a
82    *        placement new for an object of type T with a constructor that takes multiple
83    *        parameters.
84    *
85    * @return Return the allocated memory block
86    */
87   void* AllocateRaw()
88   {
89     return mPool->Allocate();
90   }
91
92   /**
93    * @brief Thread-safe version of AllocateRaw()
94    *
95    * @return Return the allocated memory block
96    */
97   void* AllocateRawThreadSafe()
98   {
99     return mPool->AllocateThreadSafe();
100   }
101
102   /**
103    * @brief Return the object to the memory pool
104    *
105    * @param object Pointer to the object to delete
106    */
107   void Free( T* object )
108   {
109     object->~T();
110
111     mPool->Free( object );
112   }
113
114   /**
115    * @brief Thread-safe version of Free()
116    *
117    * @param object Pointer to the object to delete
118    */
119   void FreeThreadSafe( T* object )
120   {
121     object->~T();
122
123     mPool->FreeThreadSafe( object );
124   }
125
126   /**
127    * @brief Reset the memory pool, unloading all block memory previously allocated
128    */
129   void ResetMemoryPool()
130   {
131     if( mPool )
132     {
133       delete mPool;
134     }
135
136     mPool = new FixedSizeMemoryPool( TypeSizeWithAlignment< T >::size );
137   }
138
139 private:
140
141   // Undefined
142   MemoryPoolObjectAllocator( const MemoryPoolObjectAllocator& memoryPoolObjectAllocator );
143
144   // Undefined
145   MemoryPoolObjectAllocator& operator=( const MemoryPoolObjectAllocator& memoryPoolObjectAllocator );
146
147 private:
148
149   FixedSizeMemoryPool* mPool;      ///< Memory pool from which allocations are made
150
151 };
152
153 } // namespace Internal
154
155 } // namespace Dali
156
157 #endif /* __DALI_INTERNAL_MEMORY_POOL_OBJECT_ALLOCATOR_H__ */