Merge "Doxygen grouping" into 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 Allocate a block of memory from the memory pool of the appropriate size to
71    *        store an object of type T. This is usually so the memory can be used in a
72    *        placement new for an object of type T with a constructor that takes multiple
73    *        parameters.
74    *
75    * @return Return the allocated memory block
76    */
77   void* AllocateRaw()
78   {
79     return mPool->Allocate();
80   }
81
82   /**
83    * @brief Return the object to the memory pool
84    *
85    * @param object Pointer to the object to delete
86    */
87   void Free( T* object )
88   {
89     object->~T();
90
91     mPool->Free( object );
92   }
93
94   /**
95    * @brief Reset the memory pool, unloading all block memory previously allocated
96    */
97   void ResetMemoryPool()
98   {
99     if( mPool )
100     {
101       delete mPool;
102     }
103
104     mPool = new FixedSizeMemoryPool( TypeSizeWithAlignment< T >::size );
105   }
106
107 private:
108
109   // Undefined
110   MemoryPoolObjectAllocator( const MemoryPoolObjectAllocator& memoryPoolObjectAllocator );
111
112   // Undefined
113   MemoryPoolObjectAllocator& operator=( const MemoryPoolObjectAllocator& memoryPoolObjectAllocator );
114
115 private:
116
117   FixedSizeMemoryPool* mPool;      ///< Memory pool from which allocations are made
118
119 };
120
121 } // namespace Internal
122
123 } // namespace Dali
124
125 #endif /* __DALI_INTERNAL_MEMORY_POOL_OBJECT_ALLOCATOR_H__ */