CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
edm::ReusableObjectHolder< T > Class Template Reference

#include <ReusableObjectHolder.h>

Public Member Functions

void add (std::unique_ptr< T > iItem)
 
template<typename F >
std::shared_ptr< TmakeOrGet (F iFunc)
 If there isn't an object already available, creates a new one using iFunc. More...
 
template<typename FM , typename FC >
std::shared_ptr< TmakeOrGetAndClear (FM iMakeFunc, FC iClearFunc)
 
 ReusableObjectHolder ()
 
 ReusableObjectHolder (ReusableObjectHolder &&iOther)
 
std::shared_ptr< TtryToGet ()
 
 ~ReusableObjectHolder ()
 

Private Member Functions

void addBack (T *iItem)
 

Private Attributes

tbb::concurrent_queue< T * > m_availableQueue
 
std::atomic< size_t > m_outstandingObjects
 

Detailed Description

template<class T>
class edm::ReusableObjectHolder< T >

Description: Thread safe way to do create and reuse a group of the same object type.

Usage: This class can be used to safely reuse a series of objects created on demand. The reuse of the objects is safe even across different threads since one can safely call all member functions of this class on the same instance of this class from multiple threads.

This class manages the cache of reusable objects and therefore an instance of this class must live as long as you want the cache to live.

The primary way of using the class it to call makeOrGetAndClear An example use would be

auto objectToUse = holder.makeOrGetAndClear(
[]() { return new MyObject(10); }, //makes new one
[](MyObject* old) {old->reset(); } //resets old one
);

If you always want to set the values you can use makeOrGet

auto objectToUse = holder.makeOrGet(
[]() { return new MyObject(); });
objectToUse->setValue(3);

NOTE: If you hold onto the std::shared_ptr<> until another call to the ReusableObjectHolder, make sure to release the shared_ptr before the call. That way the object you were just using can go back into the cache and be reused for the call you are going to make. An example

std::shared_ptr<MyObject> obj;
while(someCondition()) {
//release object so it can re-enter the cache
obj.release();
obj = holder.makeOrGet([]{ return new MyObject();} );
obj->setValue(someNewValue());
useTheObject(obj);
}

The above example is very contrived, since the better way to do the above is

while(someCondition()) {
auto obj = holder.makeOrGet([]{ return new MyObject();} );
obj->setValue(someNewValue());
useTheObject(obj);
//obj goes out of scope and returns the object to the cache
}

Definition at line 76 of file ReusableObjectHolder.h.

Constructor & Destructor Documentation

template<class T>
edm::ReusableObjectHolder< T >::ReusableObjectHolder ( )
inline

Definition at line 78 of file ReusableObjectHolder.h.

std::atomic< size_t > m_outstandingObjects
template<class T>
edm::ReusableObjectHolder< T >::ReusableObjectHolder ( ReusableObjectHolder< T > &&  iOther)
inline

Definition at line 79 of file ReusableObjectHolder.h.

80  : m_availableQueue(std::move(iOther.m_availableQueue)), m_outstandingObjects(0) {
81  assert(0 == iOther.m_outstandingObjects);
82  }
tbb::concurrent_queue< T * > m_availableQueue
std::atomic< size_t > m_outstandingObjects
def move(src, dest)
Definition: eostools.py:511
template<class T>
edm::ReusableObjectHolder< T >::~ReusableObjectHolder ( )
inline

Definition at line 83 of file ReusableObjectHolder.h.

83  {
84  assert(0 == m_outstandingObjects);
85  T* item = 0;
86  while (m_availableQueue.try_pop(item)) {
87  delete item;
88  }
89  }
tbb::concurrent_queue< T * > m_availableQueue
std::atomic< size_t > m_outstandingObjects
long double T

Member Function Documentation

template<class T>
void edm::ReusableObjectHolder< T >::add ( std::unique_ptr< T iItem)
inline

Adds the item to the cache. Use this function if you know ahead of time how many cached items you will need.

Definition at line 94 of file ReusableObjectHolder.h.

Referenced by edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGet(), edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGetAndClear(), and counter.Counter::register().

94  {
95  if (0 != iItem) {
96  m_availableQueue.push(iItem.release());
97  }
98  }
tbb::concurrent_queue< T * > m_availableQueue
template<class T>
void edm::ReusableObjectHolder< T >::addBack ( T iItem)
inlineprivate

Definition at line 139 of file ReusableObjectHolder.h.

139  {
140  m_availableQueue.push(iItem);
142  }
tbb::concurrent_queue< T * > m_availableQueue
std::atomic< size_t > m_outstandingObjects
template<class T>
template<typename F >
std::shared_ptr<T> edm::ReusableObjectHolder< T >::makeOrGet ( F  iFunc)
inline
template<class T>
template<typename FM , typename FC >
std::shared_ptr<T> edm::ReusableObjectHolder< T >::makeOrGetAndClear ( FM  iMakeFunc,
FC  iClearFunc 
)
inline

If there is an object already available, passes the object to iClearFunc and then returns the object. If there is not an object already available, creates a new one using iMakeFunc

Definition at line 129 of file ReusableObjectHolder.h.

129  {
130  std::shared_ptr<T> returnValue;
131  while (!(returnValue = tryToGet())) {
132  add(std::unique_ptr<T>(iMakeFunc()));
133  }
134  iClearFunc(returnValue.get());
135  return returnValue;
136  }
void add(std::unique_ptr< T > iItem)
std::shared_ptr< T > tryToGet()
template<class T>
std::shared_ptr<T> edm::ReusableObjectHolder< T >::tryToGet ( )
inline

Tries to get an already created object, if none are available, returns an empty shared_ptr. Use this function in conjunction with add()

Definition at line 103 of file ReusableObjectHolder.h.

Referenced by edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGet(), and edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGetAndClear().

103  {
104  T* item = 0;
105  m_availableQueue.try_pop(item);
106  if (0 == item) {
107  return std::shared_ptr<T>{};
108  }
109  //instead of deleting, hand back to queue
110  auto pHolder = this;
112  return std::shared_ptr<T>{item, [pHolder](T* iItem) { pHolder->addBack(iItem); }};
113  }
tbb::concurrent_queue< T * > m_availableQueue
std::atomic< size_t > m_outstandingObjects
long double T

Member Data Documentation

template<class T>
tbb::concurrent_queue<T*> edm::ReusableObjectHolder< T >::m_availableQueue
private
template<class T>
std::atomic<size_t> edm::ReusableObjectHolder< T >::m_outstandingObjects
private