object_pool.h 5.47 KB
Newer Older
1
/*
Marcus Winter committed
2
 * Copyright (c) 2014-2016, 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
 *
 * 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
 *
50
 * \tparam Type Element type
51 52 53 54
 * \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
 */
55
template<class Type,
56
  typename ValuePool    =
57
    embb::containers::WaitFreeArrayValuePool< bool, false >,
58
  class ObjectAllocator = embb::base::Allocator<Type> >
59 60 61 62 63
class ObjectPool {
 private:
  /**
   * Allocator used to allocate elements of the object pool
   */
64
  ObjectAllocator object_allocator_;
65 66

  /**
67
   * Capacity of the object pool
68
   */
69
  size_t capacity_;
70 71

  /**
72 73 74
   * The size of the underlying value pool. This is also the size of the object
   * array in this class. It is assumed, that the valuepool manages indices in
   * range [0;value_pool_size_-1].
75
   */
76
  size_t value_pool_size_;
77 78 79 80

  /**
   * Underlying value pool
   */
81 82 83 84 85 86
  ValuePool value_pool_;

  /**
   * Array holding the allocated object
   */
  Type* objects_array_;
87 88 89 90 91 92 93 94 95

  /**
   * 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;
96 97 98
    typedef bool value_type;
    typedef bool& reference;
    typedef bool* pointer;
99 100 101 102
    typedef std::forward_iterator_tag iterator_category;
    typedef int difference_type;
    explicit ReturningTrueIterator(size_t count_value);
    self_type operator++();
103
    self_type operator++(int);
104 105 106 107 108 109 110
    reference operator*();
    pointer operator->();
    bool operator==(const self_type& rhs);
    bool operator!=(const self_type& rhs);

   private:
    size_t count_value;
111
    bool ret_value;
112 113
  };

114 115 116
  bool IsContained(const Type &obj) const;
  int GetIndexOfObject(const Type &obj) const;
  Type* AllocateRaw();
117

118 119 120 121
 public:
  /**
   * Constructs an object pool with capacity \c capacity.
   *
122
   * \memory Allocates \c capacity elements of type \c Type.
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 150 151 152 153 154 155
   *
   * \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(
156
    Type* obj
157 158 159 160 161 162 163 164 165 166 167 168 169 170
    /**< [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
   */
171
  Type* Allocate(...);
172
#else
173
  Type* Allocate();
174 175

  template<typename Param1>
176
  Type* Allocate(Param1 const& param1);
177 178

  template<typename Param1, typename Param2>
179
  Type* Allocate(Param1 const& param1, Param2 const& param2);
180 181

  template<typename Param1, typename Param2, typename Param3>
182
  Type* Allocate(Param1 const& param1, Param2 const& param2,
183 184 185
    Param3 const& param3);

  template<typename Param1, typename Param2, typename Param3, typename Param4>
186
  Type* Allocate(Param1 const& param1, Param2 const& param2,
187 188 189 190 191 192 193 194 195 196
    Param3 const& param3, Param4 const& param4);

#endif
};
} // namespace containers
} // namespace embb

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

#endif  // EMBB_CONTAINERS_OBJECT_POOL_H_