indexed_object_pool.h 4.71 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
/*
 * 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_INDEXED_OBJECT_POOL_H_
#define EMBB_CONTAINERS_INTERNAL_INDEXED_OBJECT_POOL_H_

#include <embb/base/atomic.h>
#include <embb/base/memory_allocation.h>

#include <embb/containers/lock_free_tree_value_pool.h>
#include <embb/containers/wait_free_array_value_pool.h>

namespace embb {
namespace containers {
namespace internal {

template<
41
  typename Type,
42 43 44 45 46 47
  class IndexPool = LockFreeTreeValuePool<bool, false>,
  class Allocator = embb::base::Allocator<T>
>
class IndexedObjectPool {
 private:
  const size_t size_;
48
  Type *       elements;
49 50 51 52 53 54 55
  Allocator    allocator;
  IndexPool    indexPool;
  IndexedObjectPool();
  // Prevent copy-construction
  IndexedObjectPool(const IndexedObjectPool&);
  // Prevent assignment
  IndexedObjectPool& operator=(const IndexedObjectPool&);
56 57
  // Allocates pool index and resolves pointer to reserved element
  int AllocateRaw(Type * & newElement);
58 59 60

 public:
  /**
61 62
   * Creates an indexed object pool, initializing all pool elements
   * with elements from given range.
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
   *
   * \notthreadsafe
   *
   * \memory dynamically allocates
   *         \c n * (sizeof(T) + sizeof(embb::base::Atomic<bool>))
   *         bytes, where \c n is the number of elements in the pool.
   */
  template<typename RAI>
  IndexedObjectPool(
    RAI first,
     /**< [IN] first iterator to elements the pool is filled with */
    RAI last
     /**< [IN] last iterator to elements the pool is filled with */
    );

  /**
79 80 81
   * Creates an indexed object pool of size \c capacity, initializing
   * all pool elements with given default instance.
   * 
82 83 84 85 86 87 88 89 90
   * \notthreadsafe
   *
   * \memory dynamically allocates
   *         \c n * (sizeof(T) + sizeof(embb::base::Atomic<bool>))
   *         bytes, where \c n is the number of elements in the pool.
   */
  IndexedObjectPool(
    size_t size,
     /**< [IN] Number of elements the pool is filled with */
91
    const Type & defaultInstance
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
     /**< [IN] Default instance to initialize pool elements with */
    );

  /**
   * Destructor, deallocating memory
   */
  ~IndexedObjectPool();

  /**
   * Return element and index to the pool.
   *
   * \see value_pool_concept
   *
   */
  void Free(int elementIndex);

  /**
   * Return element from the pool at given index.
   *
   * \see object_pool_concept
   *
   */
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
  Type & operator[](int elementIndex);


#ifdef DOXYGEN
  /**
  * Allocates an element from the pool.
  *
  * If the underlying value pool is wait-free/lock-free, this operation is
  * also wait-free/lock-free, respectively.
  *
  * \return Index of the allocated object if successful, otherwise \c -1.
  *
  * \param ... Arguments of arbitrary type, passed to the object's constructor
  */
  int Allocate(...);
#else
  int Allocate();

  template<typename Param1>
  int Allocate(Param1 const& param1);

  template<typename Param1, typename Param2>
  int Allocate(Param1 const& param1, Param2 const& param2);

  template<typename Param1, typename Param2, typename Param3>
  int Allocate(Param1 const& param1, Param2 const& param2,
    Param3 const& param3);

  template<typename Param1, typename Param2, typename Param3, typename Param4>
  int Allocate(Param1 const& param1, Param2 const& param2,
    Param3 const& param3, Param4 const& param4);
#endif
146 147 148 149 150 151 152 153 154 155
};

}  // namespace internal
}  // namespace containers
}  // namespace embb

#include <embb/containers/internal/indexed_object_pool-inl.h>

#endif  // EMBB_CONTAINERS_INTERNAL_INDEXED_OBJECT_POOL_H_