/* * 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., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * $Id: cache.hh,v 1.5 2004/04/24 11:46:01 dheck Exp $ */ #ifndef PX_CACHE_HH #define PX_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 "dict.hh" namespace px { template class DeleteDisposer { public: static void dispose (T p) { delete p; } }; template 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 px::Dict Map; typedef typename Map::iterator iterator; Map cache; }; template Cache::Cache() : cache(1223) { } template void Cache::clear() { for (iterator i=cache.begin(); i!=cache.end(); ++i) release(i->second); cache.clear(); } template void Cache::remove (const std::string &key) { cache.remove (key); } template T Cache::store (const std::string &key, T value) { cache.insert(key, value); return value; } template T Cache::get(const std::string &key) { iterator i=cache.find(key); if (i!=cache.end()) return i->second; else return store (key, acquire(key)); } template unsigned Cache::size() const { return cache.size(); } template bool Cache::has_key(const std::string &key) const { return cache.has_key(key); } /* -------------------- PtrCache -------------------- */ template class PtrCache : public Cache > { public: ~PtrCache() { this->clear(); } // void release (T *value) { delete value; } }; } #endif