X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcollection.h;h=2d346d9a4557a72325a18ae6f89c232e5f629681;hb=35d0da96bad97214376f18d15078e6d731e6f219;hp=69d631fa9dfa59b78362d69e2c830783a86ff725;hpb=7df5e45c7f414f6a07681dc4ec2abb63b091a309;p=libs%2Fdatafile.git diff --git a/source/collection.h b/source/collection.h index 69d631f..2d346d9 100644 --- a/source/collection.h +++ b/source/collection.h @@ -2,6 +2,7 @@ #define MSP_DATAFILE_COLLECTION_H_ #include +#include #include #include "loader.h" @@ -178,10 +179,11 @@ public: template void add(const std::string &name, T *d) { - if(items.count(name)) - throw KeyError("Duplicate key in collection", name); + typedef typename RemoveConst::Type NCT; - items[name]=new Item::Type>(d); + RefPtr > i=new Item(d); + insert_unique(items, i.get()); + i.release(); } /** @@ -192,11 +194,9 @@ public: { typedef typename RemoveConst::Type NCT; - ItemMap::const_iterator i=items.find(name); - if(i==items.end()) - throw KeyError("Item not found in collection", name); + ItemBase *i=get_item(items, name); - const Item *item=dynamic_cast *>(i->second); + const Item *item=dynamic_cast *>(i); if(!item) throw TypeError("Type mismatch on item '"+name+"'"); @@ -213,8 +213,7 @@ public: { typedef typename RemoveConst::Type NCT; - ItemMap::const_iterator i=items.find(name); - if(i==items.end()) + if(!items.count(name)) { for(ItemCreatorSeq::iterator j=creators.begin(); j!=creators.end(); ++j) { @@ -226,10 +225,11 @@ public: return d; } } - throw KeyError("Item not found in collection", name); } - const Item *item=dynamic_cast *>(i->second); + ItemBase *i=get_item(items, name); + + const Item *item=dynamic_cast *>(i); if(!item) throw TypeError("Type mismatch on item '"+name+"'");