/* * Copyright (c) 2014, Siemens AG. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifndef EMBB_CONTAINERS_INTERNAL_OBJECT_POOL_INL_H_ #define EMBB_CONTAINERS_INTERNAL_OBJECT_POOL_INL_H_ namespace embb { namespace containers { template ObjectPool:: ReturningTrueIterator::ReturningTrueIterator(size_t count_value) : count_value(count_value), ret_value(true) {} template typename ObjectPool:: ReturningTrueIterator::self_type ObjectPool:: ReturningTrueIterator::operator++() { self_type i = *this; count_value++; return i; } template typename ObjectPool:: ReturningTrueIterator::self_type ObjectPool:: ReturningTrueIterator::operator++(int junk) { count_value++; return *this; } template typename ObjectPool:: ReturningTrueIterator::reference ObjectPool:: ReturningTrueIterator::operator*() { return ret_value; } template typename ObjectPool:: ReturningTrueIterator::pointer ObjectPool:: ReturningTrueIterator::operator->() { return &ret_value; } template bool ObjectPool:: ReturningTrueIterator::operator==(const self_type& rhs) { return count_value == rhs.count_value; } template bool ObjectPool:: ReturningTrueIterator::operator!=(const self_type& rhs) { return count_value != rhs.count_value; } template bool ObjectPool:: IsContained(const T &obj) const { if ((&obj < &objects[0]) || (&obj > &objects[capacity - 1])) { return false; } else { return true; } } template int ObjectPool:: GetIndexOfObject(const T &obj) const { assert(IsContained(obj)); return(static_cast(&obj - &objects[0])); } template T* ObjectPool::AllocateRaw() { int val; int allocated_index = p.Allocate(val); if (allocated_index == -1) { return NULL; } else { T* ret_pointer = &(objects[allocated_index]); return ret_pointer; } } template size_t ObjectPool::GetCapacity() { return capacity; } template ObjectPool::ObjectPool(size_t capacity) : capacity(capacity), p(ReturningTrueIterator(0), ReturningTrueIterator(capacity)) { // Allocate the objects (without construction, just get the memory) objects = objectAllocator.allocate(capacity); } template void ObjectPool::Free(T* obj) { int index = GetIndexOfObject(*obj); obj->~T(); p.Free(1, index); } template T* ObjectPool::Allocate() { T* rawObject = AllocateRaw(); if (rawObject != NULL) new (rawObject)T(); return rawObject; } template template T* ObjectPool::Allocate( Param1 const& param1) { T* rawObject = AllocateRaw(); if (rawObject != NULL) new (rawObject)T(param1); return rawObject; } template template T* ObjectPool::Allocate( Param1 const& param1, Param2 const& param2) { T* rawObject = AllocateRaw(); if (rawObject != NULL) new (rawObject)T(param1, param2); return rawObject; } template template T* ObjectPool::Allocate( Param1 const& param1, Param2 const& param2, Param3 const& param3) { T* rawObject = AllocateRaw(); if (rawObject != NULL) new (rawObject)T(param1, param2, param3); return rawObject; } template template T* ObjectPool::Allocate( Param1 const& param1, Param2 const& param2, Param3 const& param3, Param4 const& param4) { T* rawObject = AllocateRaw(); if (rawObject != NULL) new (rawObject)T(param1, param2, param3, param4); return rawObject; } template ObjectPool::~ObjectPool() { // Deallocate the objects objectAllocator.deallocate(objects, capacity); } } // namespace containers } // namespace embb #endif // EMBB_CONTAINERS_INTERNAL_OBJECT_POOL_INL_H_