object_pool.h 5.72 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2015, Siemens AG. All rights reserved.
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 41 42 43 44 45 46 47 48 49 50
 *
 * 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_OBJECT_POOL_H_
#define EMBB_CONTAINERS_OBJECT_POOL_H_

#include <embb/base/atomic.h>
#include <embb/containers/wait_free_array_value_pool.h>

#include <limits>
#include <stdexcept>

namespace embb {
namespace containers {

/**
 * \defgroup CPP_CONTAINERS_POOLS Pools
 * Concurrent pools
 *
 * \ingroup CPP_CONTAINERS
 */

/**
 * Pool for thread-safe management of arbitrary objects.
 *
 * \ingroup CPP_CONTAINERS_POOLS
 *
51
 * \tparam Type Element type
52 53 54 55
 * \tparam ValuePool Type of the underlying value pool, determines whether
 *         the object pool is wait-free or lock-free
 * \tparam ObjectAllocator Type of allocator used to allocate objects
 */
56
template<class Type,
57
  typename ValuePool    =
58
    embb::containers::WaitFreeArrayValuePool< bool, false >,
59
  class ObjectAllocator = embb::base::Allocator<Type> >
60 61 62 63 64 65 66 67 68 69
class ObjectPool {
 private:
  /**
   * Allocator used to allocate elements of the object pool
   */
  ObjectAllocator objectAllocator;

  /**
   * Array holding the allocated object
   */
70
  Type* objects;
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89

  /**
   * Capacity of the object pool
   */
  size_t capacity;

  /**
   * Underlying value pool
   */
  ValuePool p;

  /**
   * Helper providing a virtual iterator that just returns true in each
   * iteration step. Used for filling the value pool. Implements the normal
   * C++ iterator concept. Not further documented here.
   */
  class ReturningTrueIterator {
   public:
    typedef ReturningTrueIterator self_type;
90 91 92
    typedef bool value_type;
    typedef bool& reference;
    typedef bool* pointer;
93 94 95 96
    typedef std::forward_iterator_tag iterator_category;
    typedef int difference_type;
    explicit ReturningTrueIterator(size_t count_value);
    self_type operator++();
97
    self_type operator++(int);
98 99 100 101 102 103 104
    reference operator*();
    pointer operator->();
    bool operator==(const self_type& rhs);
    bool operator!=(const self_type& rhs);

   private:
    size_t count_value;
105
    bool ret_value;
106 107
  };

108 109 110
  bool IsContained(const Type &obj) const;
  int GetIndexOfObject(const Type &obj) const;
  Type* AllocateRaw();
111 112 113 114 115

 public:
  /**
   * Constructs an object pool with capacity \c capacity.
   *
116
   * \memory Allocates \c capacity elements of type \c Type.
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 146 147 148 149
   *
   * \notthreadsafe
   */
  ObjectPool(
    size_t capacity
    /**< [IN] Number of elements the pool can hold */
  );

  /**
   * Destructs the pool.
   *
   * \notthreadsafe
   */
  ~ObjectPool();

  /**
   * Returns the capacity of the pool.
   *
   * \return Number of elements the pool can hold.
   *
   * \waitfree
   */
  size_t GetCapacity();

 /**
  * Returns an element to the pool.
  *
  * If the underlying value pool is wait-free/lock-free, this operation is
  * also wait-free/lock-free, respectively.
  *
  * \note The element must have been allocated with Allocate().
  */
  void Free(
150
    Type* obj
151 152 153 154 155 156 157 158 159 160 161 162 163 164
    /**< [IN] Pointer to the object to be freed */
  );

#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 Pointer to the allocated object if successful, otherwise \c NULL.
   *
   * \param ... Arguments of arbitrary type, passed to the object's constructor
   */
165
  Type* Allocate(...);
166
#else
167
  Type* Allocate();
168 169

  template<typename Param1>
170
  Type* Allocate(Param1 const& param1);
171 172

  template<typename Param1, typename Param2>
173
  Type* Allocate(Param1 const& param1, Param2 const& param2);
174 175

  template<typename Param1, typename Param2, typename Param3>
176
  Type* Allocate(Param1 const& param1, Param2 const& param2,
177 178 179
    Param3 const& param3);

  template<typename Param1, typename Param2, typename Param3, typename Param4>
180
  Type* Allocate(Param1 const& param1, Param2 const& param2,
181 182
    Param3 const& param3, Param4 const& param4);

183 184 185 186 187
  template<typename Param1, typename Param2, typename Param3, typename Param4,
      typename Param5>
  Type* Allocate(Param1 const& param1, Param2 const& param2,
    Param3 const& param3, Param4 const& param4, Param5 const& param5);

188 189 190 191 192 193
  template<typename Param1, typename Param2, typename Param3, typename Param4,
      typename Param5, typename Param6>
  Type* Allocate(Param1 const& param1, Param2 const& param2,
    Param3 const& param3, Param4 const& param4, Param5 const& param5,
    Param6 const& param6);

194 195 196 197 198 199 200 201
#endif
};
} // namespace containers
} // namespace embb

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

#endif  // EMBB_CONTAINERS_OBJECT_POOL_H_