#include <ReusableObjectHolder.h>
Public Types | |
using | deleter_type = Deleter |
Public Member Functions | |
void | add (std::unique_ptr< T, Deleter > iItem) |
template<typename F > | |
std::shared_ptr< T > | makeOrGet (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< T > | makeOrGetAndClear (FM iMakeFunc, FC iClearFunc) |
ReusableObjectHolder () | |
ReusableObjectHolder (ReusableObjectHolder &&iOther) | |
std::shared_ptr< T > | tryToGet () |
~ReusableObjectHolder () | |
Private Member Functions | |
void | addBack (std::unique_ptr< T, Deleter > iItem) |
std::unique_ptr< T, Deleter > | makeUnique (std::unique_ptr< T, Deleter > ptr) |
std::unique_ptr< T > | makeUnique (T *ptr) |
Private Attributes | |
tbb::concurrent_queue< std::unique_ptr< T, Deleter > > | m_availableQueue |
std::atomic< size_t > | m_outstandingObjects |
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
If you always want to set the values you can use makeOrGet
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
The above example is very contrived, since the better way to do the above is
When a custom deleter is used, the deleter type must be the same to all objects. The deleter is allowed to have state that depends on the object. The deleter object is passed along the std::unique_ptr, and is internally kept along the object. The deleter object must be copyable.
Definition at line 80 of file ReusableObjectHolder.h.
using edm::ReusableObjectHolder< T, Deleter >::deleter_type = Deleter |
Definition at line 82 of file ReusableObjectHolder.h.
|
inline |
Definition at line 84 of file ReusableObjectHolder.h.
|
inline |
Definition at line 85 of file ReusableObjectHolder.h.
|
inline |
Definition at line 89 of file ReusableObjectHolder.h.
|
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 100 of file ReusableObjectHolder.h.
Referenced by edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGet(), edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGetAndClear(), and counter.Counter::register().
|
inlineprivate |
Definition at line 156 of file ReusableObjectHolder.h.
|
inline |
If there isn't an object already available, creates a new one using iFunc.
Definition at line 126 of file ReusableObjectHolder.h.
Referenced by SiPixelTopoCache::getSiPixelTopoFinder(), RPCInverseLBLinkMapESProducer::produce(), RPCInverseOMTFLinkMapESProducer::produce(), RPCInverseTwinMuxLinkMapESProducer::produce(), RPCInverseCPPFLinkMapESProducer::produce(), EcalSeverityLevelESProducer::produce(), EcalNextToDeadChannelESProducer::produce(), EcalLaserCorrectionServiceMC::produce(), EcalLaserCorrectionService::produce(), HcalDbProducer::produce(), CastorDbProducer::produce(), HcalTPGCoderULUT::produce(), and DTGeometryESProducer::produce().
|
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 138 of file ReusableObjectHolder.h.
|
inlineprivate |
Definition at line 154 of file ReusableObjectHolder.h.
|
inlineprivate |
Definition at line 148 of file ReusableObjectHolder.h.
Referenced by edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGet(), and edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGetAndClear().
|
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 109 of file ReusableObjectHolder.h.
Referenced by edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGet(), and edm::ReusableObjectHolder< edm::ESProductHost >::makeOrGetAndClear().
|
private |
Definition at line 161 of file ReusableObjectHolder.h.
Referenced by edm::ReusableObjectHolder< edm::ESProductHost >::add(), edm::ReusableObjectHolder< edm::ESProductHost >::addBack(), edm::ReusableObjectHolder< edm::ESProductHost >::tryToGet(), and edm::ReusableObjectHolder< edm::ESProductHost >::~ReusableObjectHolder().
|
private |