1 #ifndef __DALI_OWNER_CONTAINER_H__
2 #define __DALI_OWNER_CONTAINER_H__
5 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <dali/public-api/common/dali-common.h>
23 #include <dali/public-api/common/dali-vector.h>
29 * OwnerContainer is a vector which own heap-allocated objects.
30 * Unlike vector this will call delete on the stored pointers during destruction.
31 * For example, you can define a vector of heap-allocated Node objects:
33 * typedef OwnerContainer< Node* > NodeContainer;
35 * NodeContainer container;
36 * container.PushBack( new Node() );
37 * // container is now responsible for calling delete on Node
42 class OwnerContainer : public Dali::Vector< T >
46 typedef typename Dali::Vector< T >::SizeType SizeType;
47 typedef typename Vector< T >::Iterator Iterator;
48 typedef typename Vector< T >::ConstIterator ConstIterator;
51 * Create a pointer-container.
57 * Non-virtual destructor; OwnerContainer<T> is not suitable as base class.
62 VectorBase::Release();
66 * Test whether the container is empty.
67 * @return True if the container is empty
71 return VectorBase::Count() == 0u;
75 * Erase an object from the container (delete from heap).
76 * @param[in] position A dereferencable iterator to an element in mContainer.
77 * @return iterator pointing to next element
79 Iterator Erase( Iterator position )
82 return Vector< T >::Erase( position );
86 * Erase an object from OwnerContainer
87 * @param object to remove
89 inline void EraseObject( T object )
91 DALI_ASSERT_DEBUG( object && "NULL object not allowed" );
93 Iterator iter = Vector< T >::Begin();
94 const ConstIterator endIter = Vector< T >::End();
95 for ( ; iter != endIter; ++iter )
97 if ( *iter == object )
106 * Release the ownership of an object, without deleting it.
107 * @param[in] position A dereferencable iterator to an element in mContainer.
108 * @post iterators are invalidated by this method.
109 * @return pointer to the released item
111 T Release( Iterator position )
113 T pointer = *position;
114 Vector< T >::Erase( position );
119 * Destroy all of the elements in the container.
123 ConstIterator end = Vector< T >::End();
124 for( Iterator iter = Vector< T >::Begin(); iter != end; ++iter )
128 Vector< T >::Clear();
132 * Resizes the container to hold specific amount of elements
133 * @param size to resize to
135 void Resize( SizeType size )
137 if( size < VectorBase::Count() )
139 // OwnerContainer owns these heap-allocated objects
140 ConstIterator end = Vector< T >::End();
141 for( Iterator iter = Vector< T >::Begin() + size; iter != end; ++iter )
146 Vector< T >::Resize( size );
150 * Move the ownership of objects from another OwnerContainer to this one
151 * without deleting them. It will keep the original items here as well.
152 * @param[in] source where to move elements from to this OwnerContainer
154 void MoveFrom( OwnerContainer& source )
156 typename Vector< T >::SizeType sourceCount = source.Count();
157 // if source is empty, nothing to move
158 if( sourceCount > 0u )
160 // Optimisation for the case that this is empty
163 VectorBase::Swap( source );
167 // make space for new items
168 Vector< T >::Reserve( VectorBase::Count() + sourceCount );
169 Iterator iter = source.Begin();
170 ConstIterator end = source.End();
171 for( ; iter != end; ++iter )
174 Vector< T >::PushBack( pointer );
176 // cannot call Clear on OwnerContainer as that deletes the elements
177 source.Vector< T >::Clear();
184 // Undefined copy constructor.
185 OwnerContainer( const OwnerContainer& );
186 // Undefined assignment operator.
187 OwnerContainer& operator=( const OwnerContainer& );
190 * @brief delete the contents of the pointer
191 * Function provided to allow classes to provide a custom destructor through template specialisation
192 * @param pointer to the object
194 void Delete( T pointer )
204 #endif //__DALI_OWNER_CONTAINER_H__