LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+0dd8ce4237,g1470d8bcf6+3ea6592b6f,g2079a07aa2+86d27d4dc4,g2305ad1205+5ca4c0b359,g295015adf3+d10818ec9d,g2a9a014e59+6f9be1b9cd,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+703ba97ebf,g487adcacf7+4fa16da234,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+ffa42b374e,g5a732f18d5+53520f316c,g64a986408d+0dd8ce4237,g858d7b2824+0dd8ce4237,g8a8a8dda67+585e252eca,g99cad8db69+d39438377f,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+f1d96605c8,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e5339d463f,gc120e1dc64+da31e9920e,gc28159a63d+0e5473021a,gcf0d15dbbd+703ba97ebf,gdaeeff99f8+f9a426f77a,ge6526c86ff+889fc9d533,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf18bd8381d+7268b93478,gff1a9f87cc+0dd8ce4237,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | List of all members
lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred > Class Template Reference

Cache of most recently used values. More...

#include <Cache.h>

Public Member Functions

 Cache (std::size_t maxElements=0)
 Ctor.
 
 Cache (Cache const &)=default
 
 Cache (Cache &&)=default
 
Cacheoperator= (Cache const &)=default
 
Cacheoperator= (Cache &&)=default
 
 ~Cache ()=default
 Dtor.
 
template<typename Generator >
Value operator() (Key const &key, Generator func)
 Lookup or generate a value.
 
Value operator[] (Key const &key)
 
void add (Key const &key, Value const &value)
 Add a value to the cache.
 
std::size_t size () const
 Return the number of values in the cache.
 
std::vector< Key > keys () const
 Return all keys in the cache, most recent first.
 
bool contains (Key const &key)
 Does the cache contain the key?
 
std::optional< Value > get (Key const &key)
 Return the cached value if it exists.
 
std::size_t capacity () const
 Return the capacity of the cache.
 
void reserve (std::size_t maxElements)
 Change the capacity of the cache.
 
void flush ()
 Empty the cache.
 
 Cache (std::size_t maxElements=0)
 Ctor.
 
 Cache (Cache const &)=default
 
 Cache (Cache &&)=default
 
Cacheoperator= (Cache const &)=default
 
Cacheoperator= (Cache &&)=default
 
 ~Cache ()=default
 Dtor.
 
template<typename Generator >
Value operator() (Key const &key, Generator func)
 Lookup or generate a value.
 
Value operator[] (Key const &key)
 
void add (Key const &key, Value const &value)
 Add a value to the cache.
 
std::size_t size () const
 Return the number of values in the cache.
 
std::vector< Key > keys () const
 Return all keys in the cache, most recent first.
 
bool contains (Key const &key)
 Does the cache contain the key?
 
std::optional< Value > get (Key const &key)
 Return the cached value if it exists.
 
std::size_t capacity () const
 Return the capacity of the cache.
 
void reserve (std::size_t maxElements)
 Change the capacity of the cache.
 
void flush ()
 Empty the cache.
 

Detailed Description

template<typename Key, typename Value, typename KeyHash, typename KeyPred>
class lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >

Cache of most recently used values.

This object stores the most recent maxElements values, where maxElements is set in the constructor. Objects (of type Value) are stored by a key (of type Key; hence the need to provide a KeyHash and KeyPred), and the class presents a dict-like interface. Objects may be added to (add) and retrieved from (operator[]) the cache. For ease of use, an interface (operator()) is also provided that will check the cache for an existing key, and if the key is not present, generate it with a function provided by the user.

Note
Value and Key must be copyable.
This header (Cache.h) should generally only be included in source files, not other header files, because you probably don't want all of the boost::multi_index includes in your header. We suggest you se the CacheFwd.h file in your header instead, and hold the Cache as a std::unique_ptr.
Python bindings (for pybind11) are available in lsst/cpputils/python/Cache.h.

Definition at line 75 of file Cache.h.

Constructor & Destructor Documentation

◆ Cache() [1/6]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::Cache ( std::size_t maxElements = 0)
inline

Ctor.

The maximum number of elements may be zero (default), in which case the cache is permitted to grow without limit.

Exception Safety
Strong exception safety: exceptions will return the system to previous state.

Definition at line 85 of file Cache.h.

85 : _maxElements(maxElements) {
86 _container.template get<Hash>().reserve(maxElements);
87#ifdef LSST_CACHE_DEBUG
88 _debuggingEnabled = false;
89 _hits = 0;
90 _total = 0;
91 _requests.reserve(maxElements);
92#endif
93 }

◆ Cache() [2/6]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::Cache ( Cache< Key, Value, KeyHash, KeyPred > const & )
default

◆ Cache() [3/6]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::Cache ( Cache< Key, Value, KeyHash, KeyPred > && )
default

◆ ~Cache() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::~Cache ( )
default

Dtor.

◆ Cache() [4/6]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::Cache ( std::size_t maxElements = 0)
inline

Ctor.

The maximum number of elements may be zero (default), in which case the cache is permitted to grow without limit.

Exception Safety
Strong exception safety: exceptions will return the system to previous state.

Definition at line 85 of file Cache.h.

85 : _maxElements(maxElements) {
86 _container.template get<Hash>().reserve(maxElements);
87#ifdef LSST_CACHE_DEBUG
88 _debuggingEnabled = false;
89 _hits = 0;
90 _total = 0;
91 _requests.reserve(maxElements);
92#endif
93 }

◆ Cache() [5/6]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::Cache ( Cache< Key, Value, KeyHash, KeyPred > const & )
default

◆ Cache() [6/6]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::Cache ( Cache< Key, Value, KeyHash, KeyPred > && )
default

◆ ~Cache() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::~Cache ( )
default

Dtor.

Member Function Documentation

◆ add() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::add ( Key const & key,
Value const & value )

Add a value to the cache.

If the key is already in the cache, the existing value will be promoted to the most recently used value.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

Definition at line 318 of file Cache.h.

318 {
319 auto result = _lookup(key);
320 if (!result.second) {
321 _addNew(key, value);
322 }
323}
py::object result
Definition _schema.cc:429

◆ add() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::add ( Key const & key,
Value const & value )

Add a value to the cache.

If the key is already in the cache, the existing value will be promoted to the most recently used value.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

◆ capacity() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
std::size_t lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::capacity ( ) const
inline

Return the capacity of the cache.

Exception Safety
No exceptions can be thrown.

Definition at line 201 of file Cache.h.

201{ return _maxElements; }

◆ capacity() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
std::size_t lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::capacity ( ) const
inline

Return the capacity of the cache.

Exception Safety
No exceptions can be thrown.

Definition at line 201 of file Cache.h.

201{ return _maxElements; }

◆ contains() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
bool lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::contains ( Key const & key)
inline

Does the cache contain the key?

If the key is in the cache, it will be promoted to the most recently used value.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

Definition at line 178 of file Cache.h.

178{ return _lookup(key).second; }

◆ contains() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
bool lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::contains ( Key const & key)
inline

Does the cache contain the key?

If the key is in the cache, it will be promoted to the most recently used value.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

Definition at line 178 of file Cache.h.

178{ return _lookup(key).second; }

◆ flush() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::flush ( )

Empty the cache.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

Definition at line 336 of file Cache.h.

336 {
337 while (size() > 0) {
338 _container.template get<Sequence>().pop_back();
339 }
340}
std::size_t size() const
Return the number of values in the cache.
Definition Cache.h:161

◆ flush() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::flush ( )

Empty the cache.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

◆ get() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
std::optional< Value > lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::get ( Key const & key)
inline

Return the cached value if it exists.

If the key is in the cache, it will be promoted to the most recently used value.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

Definition at line 188 of file Cache.h.

188 {
189 auto result = _lookup(key);
190 if (result.second) {
191 return std::optional<Value>(result.first->second);
192 } else {
193 return std::optional<Value>();
194 }
195 }

◆ get() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
std::optional< Value > lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::get ( Key const & key)
inline

Return the cached value if it exists.

If the key is in the cache, it will be promoted to the most recently used value.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

Definition at line 188 of file Cache.h.

188 {
189 auto result = _lookup(key);
190 if (result.second) {
191 return std::optional<Value>(result.first->second);
192 } else {
193 return std::optional<Value>();
194 }
195 }

◆ keys() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
std::vector< Key > lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::keys ( ) const

Return all keys in the cache, most recent first.

Exception Safety
Strong exception safety: exceptions will return the system to previous state.

Definition at line 326 of file Cache.h.

326 {
329 for (auto & keyValue : _container.template get<Sequence>()) {
330 result.push_back(keyValue.first);
331 }
332 return result;
333}
std::optional< Value > get(Key const &key)
Return the cached value if it exists.
Definition Cache.h:188
T reserve(T... args)

◆ keys() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
std::vector< Key > lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::keys ( ) const

Return all keys in the cache, most recent first.

Exception Safety
Strong exception safety: exceptions will return the system to previous state.

◆ operator()() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
template<typename Generator >
Value lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator() ( Key const & key,
Generator func )

Lookup or generate a value.

If the key is in the cache, the corresponding value is returned. Otherwise, a value is generated by the provided function which is cached and returned. Thus, the (expensive) Generator function only fires if the corresponding value is not already cached.

The Generator function signature should be:

Value func(Key const& key);

Given the possibility of lambdas, we could have made the required function signature so that it took no arguments. However, it's possible the user has some function that produces a value when given a key, so chose to adopt that signature; any other signature would likely require use of a lambda always.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

Definition at line 294 of file Cache.h.

297 {
298 auto result = _lookup(key);
299 if (result.second) {
300 return result.first->second;
301 }
302 Value value = func(key);
303 _addNew(key, value);
304 return value;
305}

◆ operator()() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
template<typename Generator >
Value lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator() ( Key const & key,
Generator func )

Lookup or generate a value.

If the key is in the cache, the corresponding value is returned. Otherwise, a value is generated by the provided function which is cached and returned. Thus, the (expensive) Generator function only fires if the corresponding value is not already cached.

The Generator function signature should be:

Value func(Key const& key);

Given the possibility of lambdas, we could have made the required function signature so that it took no arguments. However, it's possible the user has some function that produces a value when given a key, so chose to adopt that signature; any other signature would likely require use of a lambda always.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

◆ operator=() [1/4]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
Cache & lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator= ( Cache< Key, Value, KeyHash, KeyPred > && )
default

◆ operator=() [2/4]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
Cache & lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator= ( Cache< Key, Value, KeyHash, KeyPred > && )
default

◆ operator=() [3/4]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
Cache & lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator= ( Cache< Key, Value, KeyHash, KeyPred > const & )
default

◆ operator=() [4/4]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
Cache & lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator= ( Cache< Key, Value, KeyHash, KeyPred > const & )
default

◆ operator[]() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
Value lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator[] ( Key const & key)

Definition at line 308 of file Cache.h.

308 {
309 auto result = _lookup(key);
310 if (result.second) {
311 return result.first->second;
312 }
313 throw LSST_EXCEPT(pex::exceptions::NotFoundError,
314 (boost::format("Unable to find key: %s") % key).str());
315}
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48

◆ operator[]() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
Value lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator[] ( Key const & key)

◆ reserve() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::reserve ( std::size_t maxElements)
inline

Change the capacity of the cache.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

Definition at line 208 of file Cache.h.

208{ _maxElements = maxElements; _trim(); }

◆ reserve() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::reserve ( std::size_t maxElements)
inline

Change the capacity of the cache.

Exception Safety
Basic exception safety: exceptions will leave the system in a valid but unpredictable state.

Definition at line 208 of file Cache.h.

208{ _maxElements = maxElements; _trim(); }

◆ size() [1/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
std::size_t lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::size ( ) const
inline

Return the number of values in the cache.

Exception Safety
Strong exception safety: exceptions will return the system to previous state.

Definition at line 161 of file Cache.h.

161{ return _container.size(); }

◆ size() [2/2]

template<typename Key , typename Value , typename KeyHash , typename KeyPred >
std::size_t lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::size ( ) const
inline

Return the number of values in the cache.

Exception Safety
Strong exception safety: exceptions will return the system to previous state.

Definition at line 161 of file Cache.h.

161{ return _container.size(); }

The documentation for this class was generated from the following files: