|
Point Cloud Library (PCL) 1.15.0
|
#include <pcl/outofcore/impl/lru_cache.hpp>
Public Types | |
| using | KeyIndex = std::list<KeyT> |
| using | KeyIndexIterator = typename KeyIndex::iterator |
| using | Cache = std::map<KeyT, std::pair<CacheItemT, typename KeyIndex::iterator> > |
| using | CacheIterator = typename Cache::iterator |
Public Member Functions | |
| LRUCache (std::size_t c) | |
| bool | hasKey (const KeyT &k) |
| CacheItemT & | get (const KeyT &k) |
| void | touch (const KeyT &key) |
| bool | insert (const KeyT &key, const CacheItemT &value) |
| void | setCapacity (std::size_t capacity) |
| CacheItemT & | tailItem () |
| std::size_t | sizeOf (const CacheItemT &value) |
| bool | evict (int item_count=1) |
Public Attributes | |
| std::size_t | capacity_ |
| std::size_t | size_ {0} |
| KeyIndex | key_index_ |
| Cache | cache_ |
Definition at line 30 of file lru_cache.hpp.
| using LRUCache< KeyT, CacheItemT >::Cache = std::map<KeyT, std::pair<CacheItemT, typename KeyIndex::iterator> > |
Definition at line 37 of file lru_cache.hpp.
| using LRUCache< KeyT, CacheItemT >::CacheIterator = typename Cache::iterator |
Definition at line 38 of file lru_cache.hpp.
| using LRUCache< KeyT, CacheItemT >::KeyIndex = std::list<KeyT> |
Definition at line 34 of file lru_cache.hpp.
| using LRUCache< KeyT, CacheItemT >::KeyIndexIterator = typename KeyIndex::iterator |
Definition at line 35 of file lru_cache.hpp.
|
inline |
Definition at line 40 of file lru_cache.hpp.
|
inline |
Definition at line 148 of file lru_cache.hpp.
Referenced by LRUCache< std::string, CloudDataCacheItem >::insert().
|
inline |
Definition at line 53 of file lru_cache.hpp.
|
inline |
Definition at line 47 of file lru_cache.hpp.
|
inline |
Definition at line 79 of file lru_cache.hpp.
|
inline |
Definition at line 128 of file lru_cache.hpp.
|
inline |
Definition at line 141 of file lru_cache.hpp.
|
inline |
Definition at line 134 of file lru_cache.hpp.
|
inline |
Definition at line 67 of file lru_cache.hpp.
Referenced by LRUCache< std::string, CloudDataCacheItem >::insert().
Definition at line 178 of file lru_cache.hpp.
| std::size_t LRUCache< KeyT, CacheItemT >::capacity_ |
Definition at line 169 of file lru_cache.hpp.
Definition at line 175 of file lru_cache.hpp.
| std::size_t LRUCache< KeyT, CacheItemT >::size_ {0} |
Definition at line 172 of file lru_cache.hpp.