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
|
/*
* Copyright (C) 2002,2003 Daniel Heck
*
* 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 2
* of the License, or (at your option) any later version.
*
* 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef ECL_CACHE_HH
#define ECL_CACHE_HH
/* -------------------- Cache -------------------- */
/*
A generic class for caching external data. Stored data is owned by
the cache and is automatically `release'd on destruction. Missing
values are automatically retrieved using the `acquire' method.
*/
#include "ecl_dict.hh"
namespace ecl
{
template <class T>
class DeleteDisposer {
public:
static void dispose (T p)
{ delete p; }
};
template <class T, class Disposer>
class Cache {
public:
Cache();
virtual ~Cache() {}
// ---------- Methods ----------
void clear();
T get (const std::string &key);
void remove (const std::string &key);
unsigned size() const;
bool has_key(const std::string &key) const;
protected:
T store (const std::string &key, T value);
private:
Cache (const Cache &other);
Cache &operator= (const Cache &other);
void release (T value) {
Disposer::dispose (value);
}
// ---------- Interface ----------
virtual T acquire (const std::string &name) = 0;
// ---------- Variables ----------
typedef ecl::Dict<T> Map;
typedef typename Map::iterator iterator;
Map cache;
};
template <class T, class D>
Cache<T,D>::Cache() : cache(1223) {
}
template <class T, class D>
void Cache<T, D>::clear() {
for (iterator i=cache.begin(); i!=cache.end(); ++i)
release(i->second);
cache.clear();
}
template <class T, class D>
void Cache<T, D>::remove (const std::string &key)
{
cache.remove (key);
}
template <class T, class D>
T Cache<T,D>::store (const std::string &key, T value) {
cache.insert(key, value);
return value;
}
template <class T, class D>
T Cache<T,D>::get(const std::string &key) {
iterator i=cache.find(key);
if (i!=cache.end())
return i->second;
else
return store (key, acquire(key));
}
template <class T, class D>
unsigned Cache<T,D>::size() const {
return cache.size();
}
template <class T, class D>
bool Cache<T, D>::has_key(const std::string &key) const {
return cache.has_key(key);
}
/* -------------------- PtrCache -------------------- */
template <class T>
class PtrCache : public Cache<T*, DeleteDisposer<T*> > {
public:
~PtrCache() { this->clear(); }
// void release (T *value) { delete value; }
};
}
#endif
|