1 #ifndef DALI_OWNER_CONTAINER_H
2 #define DALI_OWNER_CONTAINER_H
5 * Copyright (c) 2020 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>
28 * OwnerContainer is a vector which own heap-allocated objects.
29 * Unlike vector this will call delete on the stored pointers during destruction.
30 * For example, you can define a vector of heap-allocated Node objects:
32 * typedef OwnerContainer< Node* > NodeContainer;
34 * NodeContainer container;
35 * container.PushBack( new Node() );
36 * // container is now responsible for calling delete on Node
41 class OwnerContainer : public Dali::Vector<T>
44 using SizeType = typename Dali::Vector<T>::SizeType;
45 using Iterator = typename Vector<T>::Iterator;
46 using ConstIterator = typename Vector<T>::ConstIterator;
49 * Create a pointer-container.
51 OwnerContainer() = default;
54 * Non-virtual destructor; OwnerContainer<T> is not suitable as base class.
59 VectorBase::Release();
62 // Not copyable or movable
63 OwnerContainer(const OwnerContainer&) = delete; ///< Deleted copy constructor
64 OwnerContainer(OwnerContainer&&) = delete; ///< Deleted move constructor
65 OwnerContainer& operator=(const OwnerContainer&) = delete; ///< Deleted copy assignment operator
66 OwnerContainer& operator=(OwnerContainer&&) = delete; ///< Deleted move assignment operator
69 * Test whether the container is empty.
70 * @return True if the container is empty
74 return VectorBase::Count() == 0u;
78 * Erase an object from the container (delete from heap).
79 * @param[in] position A dereferencable iterator to an element in mContainer.
80 * @return iterator pointing to next element
82 Iterator Erase(Iterator position)
85 return Vector<T>::Erase(position);
89 * Erase an object from OwnerContainer
90 * @param object to remove
92 inline void EraseObject(T object)
94 DALI_ASSERT_DEBUG(object && "NULL object not allowed");
96 Iterator iter = Vector<T>::Begin();
97 const ConstIterator endIter = Vector<T>::End();
98 for(; iter != endIter; ++iter)
109 * Release the ownership of an object, without deleting it.
110 * @param[in] position A dereferencable iterator to an element in mContainer.
111 * @post iterators are invalidated by this method.
112 * @return pointer to the released item
114 T Release(Iterator position)
116 T pointer = *position;
117 Vector<T>::Erase(position);
122 * Destroy all of the elements in the container.
126 ConstIterator end = Vector<T>::End();
127 for(Iterator iter = Vector<T>::Begin(); iter != end; ++iter)
135 * Resizes the container to hold specific amount of elements
136 * @param size to resize to
138 void Resize(SizeType size)
140 if(size < VectorBase::Count())
142 // OwnerContainer owns these heap-allocated objects
143 ConstIterator end = Vector<T>::End();
144 for(Iterator iter = Vector<T>::Begin() + size; iter != end; ++iter)
149 Vector<T>::Resize(size);
153 * Move the ownership of objects from another OwnerContainer to this one
154 * without deleting them. It will keep the original items here as well.
155 * @param[in] source where to move elements from to this OwnerContainer
157 void MoveFrom(OwnerContainer& source)
159 typename Vector<T>::SizeType sourceCount = source.Count();
160 // if source is empty, nothing to move
163 // Optimisation for the case that this is empty
166 VectorBase::Swap(source);
170 // make space for new items
171 Vector<T>::Reserve(VectorBase::Count() + sourceCount);
172 Iterator iter = source.Begin();
173 ConstIterator end = source.End();
174 for(; iter != end; ++iter)
177 Vector<T>::PushBack(pointer);
179 // cannot call Clear on OwnerContainer as that deletes the elements
180 source.Vector<T>::Clear();
187 * @brief delete the contents of the pointer
188 * Function provided to allow classes to provide a custom destructor through template specialisation
189 * @param pointer to the object
191 void Delete(T pointer)
199 #endif //DALI_OWNER_CONTAINER_H