X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcollection.h;h=fa3a7de9dbe25441417f988fbe16a5235cbf638d;hb=d84673be1c2fe8bd32ddaa7877529855cad6daa0;hp=3a3b90e57398ec3ff99221b09f85143a37330f02;hpb=e39534940056cdbec16c0d09d43e5375e2bbaf1c;p=libs%2Fdatafile.git diff --git a/source/collection.h b/source/collection.h index 3a3b90e..fa3a7de 100644 --- a/source/collection.h +++ b/source/collection.h @@ -31,6 +31,14 @@ struct NeedsCollection enum { result=(sizeof(f(0))==sizeof(Yes)) }; }; +template +struct RemoveConst +{ typedef T Type; }; + +template +struct RemoveConst +{ typedef T Type; }; + /** A collection of objects that can be loaded from a datafile. Each object is identified by a name, which must be unique across the entire collection. @@ -64,6 +72,7 @@ private: */ struct ItemKeywordBase { + virtual ~ItemKeywordBase() { } virtual void add_to_loader(Loader &) const { }; }; @@ -97,12 +106,15 @@ private: virtual ~ItemCreatorBase() { } template - S *create(Collection &coll, const std::string &name) + bool create(Collection &coll, const std::string &name, S *&ptr) { ItemCreatorBridge *creator=dynamic_cast *>(this); if(creator) - return creator->create(coll, name); - return 0; + { + ptr=creator->create(coll, name); + return true; + } + return false; } }; @@ -167,7 +179,10 @@ private: ItemKeywordSeq keywords; ItemCreatorSeq creators; + Collection(const Collection &); + Collection &operator=(const Collection &); public: + Collection() { } virtual ~Collection(); /** @@ -178,26 +193,28 @@ public: void add(const std::string &name, T *d) { if(items.count(name)) - throw KeyError("Duplicate key '"+name+"' in collection"); + throw KeyError("Duplicate key in collection", name); - items[name]=new Item(d); + items[name]=new Item::Type>(d); } /** Gets an object of a specific type from the collection. */ template - T &get(const std::string &name) const + T *get(const std::string &name) const { + typedef typename RemoveConst::Type NCT; + ItemMap::const_iterator i=items.find(name); if(i==items.end()) - throw KeyError("Item '"+name+"' not found in collection"); + throw KeyError("Item not found in collection", name); - const Item *item=dynamic_cast *>(i->second); + const Item *item=dynamic_cast *>(i->second); if(!item) - throw TypeError("Item '"+name+"' is not of correct type"); + throw TypeError("Type mismatch on item '"+name+"'"); - return *item->data; + return item->data; } /** @@ -206,26 +223,31 @@ public: invoked. */ template - T &get(const std::string &name) + T *get(const std::string &name) { + typedef typename RemoveConst::Type NCT; + ItemMap::const_iterator i=items.find(name); if(i==items.end()) { for(ItemCreatorSeq::iterator j=creators.begin(); j!=creators.end(); ++j) - if(T *d=(*j)->create(*this, name)) + { + NCT *d=0; + if((*j)->create(*this, name, d)) { // We already know that the item didn't exist yet - items[name]=new Item(d); - return *d; + items[name]=new Item(d); + return d; } - throw KeyError("Item '"+name+"' not found in collection"); + } + throw KeyError("Item not found in collection", name); } - const Item *item=dynamic_cast *>(i->second); + const Item *item=dynamic_cast *>(i->second); if(!item) - throw TypeError("Item '"+name+"' is not of correct type"); + throw TypeError("Type mismatch on item '"+name+"'"); - return *item->data; + return item->data; } /** @@ -236,17 +258,48 @@ public: { std::list result; for(ItemMap::const_iterator i=items.begin(); i!=items.end(); ++i) - if(dynamic_cast *>(i->second)) + if(dynamic_cast::Type> *>(i->second)) result.push_back(i->first); return result; } + /** + Returns a list of objects of a specific type in the collection. + */ + template + std::list get_list() const + { + typedef typename RemoveConst::Type NCT; + + std::list result; + for(ItemMap::const_iterator i=items.begin(); i!=items.end(); ++i) + if(Item *item=dynamic_cast *>(i->second)) + result.push_back(item->data); + return result; + } + /** Checks whether a name exists in the collection. Does not care about the type of the object. */ bool contains(const std::string &n) const; + /** + Returns the name of an item in the collection. + */ + template + const std::string &get_name(T *d) const + { + typedef typename RemoveConst::Type NCT; + + for(ItemMap::const_iterator i=items.begin(); i!=items.end(); ++i) + if(Item *item=dynamic_cast *>(i->second)) + if(item->data==d) + return i->first; + + throw KeyError("Item not found in collection"); + } + protected: /** Adds a type that can be loaded from datafiles.