1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
|
/**
* Orthanc - A Lightweight, RESTful DICOM Store
* Copyright (C) 2012-2014 Medical Physics Department, CHU of Liege,
* Belgium
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* In addition, as a special exception, the copyright holders of this
* program give permission to link the code of its release with the
* OpenSSL project's "OpenSSL" library (or with modified versions of it
* that use the same license as the "OpenSSL" library), and distribute
* the linked executables. You must obey the GNU General Public License
* in all respects for all of the code used other than "OpenSSL". If you
* modify file(s) with this exception, you may extend this exception to
* your version of the file(s), but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source files
* in the program, then also delete it here.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
#pragma once
#include <list>
#include <map>
#include <boost/noncopyable.hpp>
#include <cassert>
#include "../OrthancException.h"
#include "../Toolbox.h"
namespace Orthanc
{
/**
* This class implements the index of a cache with least recently
* used (LRU) recycling policy. All the items of the cache index
* can be associated with a payload.
* Reference: http://stackoverflow.com/a/2504317
**/
template <typename T, typename Payload = NullType>
class LeastRecentlyUsedIndex : public boost::noncopyable
{
private:
typedef std::list< std::pair<T, Payload> > Queue;
typedef std::map<T, typename Queue::iterator> Index;
Index index_;
Queue queue_;
/**
* Internal method for debug builds to check whether the internal
* data structures are not corrupted.
**/
void CheckInvariants() const;
public:
/**
* Add a new element to the cache index, and make it the most
* recent element.
* \param id The ID of the element.
* \param payload The payload of the element.
**/
void Add(T id, Payload payload = Payload());
void AddOrMakeMostRecent(T id, Payload payload = Payload());
/**
* When accessing an element of the cache, this method tags the
* element as the most recently used.
* \param id The most recently accessed item.
**/
void MakeMostRecent(T id);
void MakeMostRecent(T id, Payload updatedPayload);
/**
* Remove an element from the cache index.
* \param id The item to remove.
**/
Payload Invalidate(T id);
/**
* Get the oldest element in the cache and remove it.
* \return The oldest item.
**/
T RemoveOldest();
/**
* Get the oldest element in the cache, remove it and return the
* associated payload.
* \param payload Where to store the associated payload.
* \return The oldest item.
**/
T RemoveOldest(Payload& payload);
/**
* Check whether an element is contained in the cache.
* \param id The item.
* \return \c true iff the item is indexed by the cache.
**/
bool Contains(T id) const
{
return index_.find(id) != index_.end();
}
bool Contains(T id, Payload& payload) const
{
typename Index::const_iterator it = index_.find(id);
if (it == index_.end())
{
return false;
}
else
{
payload = it->second->second;
return true;
}
}
/**
* Return the number of elements in the cache.
* \return The number of elements.
**/
size_t GetSize() const
{
assert(index_.size() == queue_.size());
return queue_.size();
}
/**
* Check whether the cache index is empty.
* \return \c true iff the cache is empty.
**/
bool IsEmpty() const
{
return index_.empty();
}
const T& GetOldest() const;
const Payload& GetOldestPayload() const;
};
/******************************************************************
** Implementation of the template
******************************************************************/
template <typename T, typename Payload>
void LeastRecentlyUsedIndex<T, Payload>::CheckInvariants() const
{
#ifndef NDEBUG
assert(index_.size() == queue_.size());
for (typename Index::const_iterator
it = index_.begin(); it != index_.end(); it++)
{
assert(it->second != queue_.end());
assert(it->second->first == it->first);
}
#endif
}
template <typename T, typename Payload>
void LeastRecentlyUsedIndex<T, Payload>::Add(T id, Payload payload)
{
if (Contains(id))
{
throw OrthancException(ErrorCode_BadSequenceOfCalls);
}
queue_.push_front(std::make_pair(id, payload));
index_[id] = queue_.begin();
CheckInvariants();
}
template <typename T, typename Payload>
void LeastRecentlyUsedIndex<T, Payload>::MakeMostRecent(T id)
{
if (!Contains(id))
{
throw OrthancException(ErrorCode_InexistentItem);
}
typename Index::iterator it = index_.find(id);
assert(it != index_.end());
std::pair<T, Payload> item = *(it->second);
queue_.erase(it->second);
queue_.push_front(item);
index_[id] = queue_.begin();
CheckInvariants();
}
template <typename T, typename Payload>
void LeastRecentlyUsedIndex<T, Payload>::AddOrMakeMostRecent(T id, Payload payload)
{
typename Index::iterator it = index_.find(id);
if (it != index_.end())
{
// Already existing. Make it most recent.
std::pair<T, Payload> item = *(it->second);
item.second = payload;
queue_.erase(it->second);
queue_.push_front(item);
}
else
{
// New item
queue_.push_front(std::make_pair(id, payload));
}
index_[id] = queue_.begin();
CheckInvariants();
}
template <typename T, typename Payload>
void LeastRecentlyUsedIndex<T, Payload>::MakeMostRecent(T id, Payload updatedPayload)
{
if (!Contains(id))
{
throw OrthancException(ErrorCode_InexistentItem);
}
typename Index::iterator it = index_.find(id);
assert(it != index_.end());
std::pair<T, Payload> item = *(it->second);
item.second = updatedPayload;
queue_.erase(it->second);
queue_.push_front(item);
index_[id] = queue_.begin();
CheckInvariants();
}
template <typename T, typename Payload>
Payload LeastRecentlyUsedIndex<T, Payload>::Invalidate(T id)
{
if (!Contains(id))
{
throw OrthancException(ErrorCode_InexistentItem);
}
typename Index::iterator it = index_.find(id);
assert(it != index_.end());
Payload payload = it->second->second;
queue_.erase(it->second);
index_.erase(it);
CheckInvariants();
return payload;
}
template <typename T, typename Payload>
T LeastRecentlyUsedIndex<T, Payload>::RemoveOldest(Payload& payload)
{
if (IsEmpty())
{
throw OrthancException(ErrorCode_BadSequenceOfCalls);
}
std::pair<T, Payload> item = queue_.back();
T oldest = item.first;
payload = item.second;
queue_.pop_back();
assert(index_.find(oldest) != index_.end());
index_.erase(oldest);
CheckInvariants();
return oldest;
}
template <typename T, typename Payload>
T LeastRecentlyUsedIndex<T, Payload>::RemoveOldest()
{
if (IsEmpty())
{
throw OrthancException(ErrorCode_BadSequenceOfCalls);
}
std::pair<T, Payload> item = queue_.back();
T oldest = item.first;
queue_.pop_back();
assert(index_.find(oldest) != index_.end());
index_.erase(oldest);
CheckInvariants();
return oldest;
}
template <typename T, typename Payload>
const T& LeastRecentlyUsedIndex<T, Payload>::GetOldest() const
{
if (IsEmpty())
{
throw OrthancException(ErrorCode_BadSequenceOfCalls);
}
return queue_.back().first;
}
template <typename T, typename Payload>
const Payload& LeastRecentlyUsedIndex<T, Payload>::GetOldestPayload() const
{
if (IsEmpty())
{
throw OrthancException(ErrorCode_BadSequenceOfCalls);
}
return queue_.back().second;
}
}
|