LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
Cache.h
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * See COPYRIGHT file at the top of the source tree.
4  *
5  * This product includes software developed by the
6  * LSST Project (http://www.lsst.org/).
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the LSST License Statement and
19  * the GNU General Public License along with this program. If not,
20  * see <http://www.lsstcorp.org/LegalNotices/>.
21  */
22 #ifndef LSST_UTILS_CACHE_H
23 #define LSST_UTILS_CACHE_H
24 
25 #include <vector>
26 #include <utility> // std::pair
27 
28 #include "boost/multi_index_container.hpp"
29 #include "boost/multi_index/sequenced_index.hpp"
30 #include "boost/multi_index/hashed_index.hpp"
31 #include "boost/multi_index/composite_key.hpp"
32 #include "boost/multi_index/member.hpp"
33 #include "boost/format.hpp"
34 
35 #include "lsst/pex/exceptions.h"
36 #include "lsst/utils/CacheFwd.h"
37 
38 //#define LSST_CACHE_DEBUG 1 // Define this variable to instrument for debugging
39 
40 
41 #ifdef LSST_CACHE_DEBUG
42 #include <iostream>
43 #include <fstream>
44 #include <typeinfo>
45 #include "lsst/utils/Demangle.h"
46 #endif
47 
48 namespace lsst {
49 namespace utils {
50 
73 template <typename Key, typename Value, typename KeyHash, typename KeyPred>
74 class Cache {
75  public:
84  Cache(std::size_t maxElements=0) : _maxElements(maxElements) {
85  _container.template get<Hash>().reserve(maxElements);
86 #ifdef LSST_CACHE_DEBUG
87  _debuggingEnabled = false;
88  _hits = 0;
89  _total = 0;
90  _requests.reserve(maxElements);
91 #endif
92  }
93 
94  // Defaulted stuff
95  Cache(Cache const &) = default;
96  Cache(Cache &&) = default;
97  Cache & operator=(Cache const &) = default;
98  Cache & operator=(Cache &&) = default;
99 
101 #ifdef LSST_CACHE_DEBUG
102  ~Cache();
105 #else
106  ~Cache() = default;
107 #endif
108 
129  template <typename Generator>
130  Value operator()(Key const& key, Generator func);
131 
132  /* Lookup a value
133  *
134  * If the key is in the cache, it will be promoted to the
135  * most recently used value.
136  *
137  * @throws lsst::pex::exceptions::NotFoundError If key is not in the
138  * cache.
139  *
140  * @exceptsafe Basic exception safety: exceptions will leave the
141  * system in a valid but unpredictable state.
142  */
143  Value operator[](Key const& key);
144 
153  void add(Key const& key, Value const& value);
154 
160  std::size_t size() const { return _container.size(); }
161 
167  std::vector<Key> keys() const;
168 
177  bool contains(Key const& key) { return _lookup(key).second; }
178 
183  std::size_t capacity() const { return _maxElements; }
184 
190  void reserve(std::size_t maxElements) { _maxElements = maxElements; _trim(); }
191 
197  void flush();
198 
199 #ifdef LSST_CACHE_DEBUG
200  void enableDebugging() { _debuggingEnabled = true; }
201 #endif
202 
203  private:
204 
205  // Trim the cache to size
206  void _trim() {
207  if (capacity() == 0) return; // Allowed to grow without limit
208  while (size() > capacity()) {
209  _container.template get<Sequence>().pop_back();
210  }
211  }
212 
213  // Element in the multi_index container
215 
216  // Tags for multi_index container
217  struct Sequence {};
218  struct Hash {};
219 
220  // The multi_index container
221  typedef boost::multi_index_container<
222  Element,
223  boost::multi_index::indexed_by<
224  boost::multi_index::sequenced<boost::multi_index::tag<Sequence>>,
225  boost::multi_index::hashed_unique<
226  boost::multi_index::tag<Hash>,
227  boost::multi_index::member<Element, Key, &Element::first>,
228  KeyHash>>> Container;
229 
230  // Lookup key in the container
231  //
232  // Returns the iterator and whether there's anything there.
233  //
234  // If the key exists, updates the cache to make that key the most recent.
236  auto const& hashContainer = _container.template get<Hash>();
237  auto it = hashContainer.find(key);
238  bool found = (it != hashContainer.end());
239  if (found) {
240  _container.relocate(_container.template get<Sequence>().begin(),
241  _container.template project<Sequence>(it));
242  }
243 #ifdef LSST_CACHE_DEBUG
244  if (_debuggingEnabled) {
245  _requests.push_back(key);
246  ++_total;
247  if (found) ++_hits;
248  }
249 #endif
250  return std::make_pair(it, found);
251  }
252 
253  // Add a key-value pair that are not already present
254  void _addNew(Key const& key, Value const& value) {
255  _container.template get<Sequence>().emplace_front(key, value);
256  _trim();
257  }
258 
259  std::size_t _maxElements; // Maximum number of elements; 0 means infinite
260  Container _container; // Container of key,value pairs
261 #ifdef LSST_CACHE_DEBUG
262  bool _debuggingEnabled;
263  mutable std::size_t _hits, _total; // Statistics of cache hits
264  mutable std::vector<Key> _requests; // Cache requests
265  static std::size_t getId() {
266  static std::size_t _id = 0; // Identifier
267  return _id++;
268  }
269 #endif
270 };
271 
272 // Definitions
273 
274 template <typename Key, typename Value, typename KeyHash, typename KeyPred>
275 template <typename Generator>
277  Key const& key,
278  Generator func
279 ) {
280  auto result = _lookup(key);
281  if (result.second) {
282  return result.first->second;
283  }
284  Value value = func(key);
285  _addNew(key, value);
286  return value;
287 }
288 
289 template <typename Key, typename Value, typename KeyHash, typename KeyPred>
291  auto result = _lookup(key);
292  if (result.second) {
293  return result.first->second;
294  }
296  (boost::format("Unable to find key: %s") % key).str());
297 }
298 
299 template <typename Key, typename Value, typename KeyHash, typename KeyPred>
300 void Cache<Key, Value, KeyHash, KeyPred>::add(Key const& key, Value const& value) {
301  auto result = _lookup(key);
302  if (!result.second) {
303  _addNew(key, value);
304  }
305 }
306 
307 template <typename Key, typename Value, typename KeyHash, typename KeyPred>
310  result.reserve(size());
311  for (auto & keyValue : _container.template get<Sequence>()) {
312  result.push_back(keyValue.first);
313  }
314  return result;
315 }
316 
317 template <typename Key, typename Value, typename KeyHash, typename KeyPred>
319  while (size() > 0) {
320  _container.template get<Sequence>().pop_back();
321  }
322 }
323 
324 #ifdef LSST_CACHE_DEBUG
325 template <typename Key, typename Value, typename KeyHash, typename KeyPred>
327  if (!_debuggingEnabled) {
328  return;
329  }
330  std::string filename = (boost::format("lsst-cache-%s-%d.dat") %
331  demangleType(typeid(*this).name()) % getId()).str();
332  std::ofstream file(filename);
333  for (auto const& key : _requests) {
334  file << key << "\n";
335  }
336  file.close();
337  std::cerr << "Wrote cache requests to " << filename << ": " << _hits << "/" << _total << " hits";
338  std::cerr << std::endl;
339 }
340 #endif
341 
342 }} // namespace lsst::utils
343 
344 
345 #endif // ifndef LSST_UTILS_CACHE_H
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
std::string demangleType(std::string const _typeName)
Definition: Demangle.cc:113
Value operator[](Key const &key)
Definition: Cache.h:290
T endl(T... args)
void reserve(std::size_t maxElements)
Change the capacity of the cache.
Definition: Cache.h:190
Cache & operator=(Cache const &)=default
void flush()
Empty the cache.
Definition: Cache.h:318
STL class.
void add(Key const &key, Value const &value)
Add a value to the cache.
Definition: Cache.h:300
Reports attempts to access elements using an invalid key.
Definition: Runtime.h:151
T push_back(T... args)
STL class.
~Cache()=default
Dtor.
A base class for image defects.
T close(T... args)
T make_pair(T... args)
std::size_t capacity() const
Return the capacity of the cache.
Definition: Cache.h:183
std::size_t size() const
Return the number of values in the cache.
Definition: Cache.h:160
bool contains(Key const &key)
Does the cache contain the key?
Definition: Cache.h:177
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
STL class.
Cache of most recently used values.
Definition: Cache.h:74
Value operator()(Key const &key, Generator func)
Lookup or generate a value.
Definition: Cache.h:276
Cache(std::size_t maxElements=0)
Ctor.
Definition: Cache.h:84
py::object result
Definition: _schema.cc:429
T reserve(T... args)
std::vector< Key > keys() const
Return all keys in the cache, most recent first.
Definition: Cache.h:308