X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcollection.cpp;h=a16ae5a9dc2e7a9f70f638093348b59c8bd561eb;hb=8955db30f9cd1c1566b349da29e669f065f84e36;hp=e60b2009a4fc2c2cebf723ba700e5ab59967a00f;hpb=9f2a99f61887a71a31afb4c56558fcc76be532d1;p=libs%2Fdatafile.git diff --git a/source/collection.cpp b/source/collection.cpp index e60b200..a16ae5a 100644 --- a/source/collection.cpp +++ b/source/collection.cpp @@ -1,5 +1,7 @@ #include "collection.h" +using namespace std; + namespace Msp { namespace DataFile { @@ -9,9 +11,20 @@ Collection::~Collection() delete *i; } -bool Collection::contains(const std::string &n) const +void Collection::add_future(const std::string &name) { - return items.count(n); + if(items.count(name)) + throw key_error(typeid(ItemMap)); + + for(TypeList::const_iterator i=types.begin(); i!=types.end(); ++i) + if((*i)->match_name(name)) + { + items.insert(ItemMap::value_type(name, (*i)->create_future())); + return; + } + + /* XXX throw something? If we do, DirectoryCollection needs some way to + check if a name matches any item type. */ } @@ -22,5 +35,35 @@ Collection::Loader::Loader(Collection &c): (*i)->add_to_loader(*this); } + +CollectionItemTypeBase::CollectionItemTypeBase(): + tag(0) +{ } + +CollectionItemTypeBase::~CollectionItemTypeBase() +{ + delete tag; +} + +void CollectionItemTypeBase::set_keyword(const string &k) +{ + kwd = k; + if(suffixes.empty()) + add_suffix("."+kwd); +} + +void CollectionItemTypeBase::add_suffix(const string &s) +{ + suffixes.push_back(s); +} + +bool CollectionItemTypeBase::match_name(const string &name) const +{ + for(vector::const_iterator i=suffixes.begin(); i!=suffixes.end(); ++i) + if(name.size()>i->size() && !name.compare(name.size()-i->size(), string::npos, *i)) + return true; + return false; +} + } // namespace DataFile } // namespace Msp