]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/collection.cpp
Expose raw open functionality from Collection
[libs/datafile.git] / source / collection.cpp
index 165b77007fce815eac0b4498d58950895ca1706d..cffb7e22e7041ba48268c9643c6d7791e118407f 100644 (file)
@@ -92,7 +92,7 @@ void Collection::add_source(CollectionSource &s)
        sources.push_back(&s);
 }
 
-IO::Seekable *Collection::open_from_sources(const string &name)
+IO::Seekable *Collection::open_raw(const string &name) const
 {
        for(SourceList::const_iterator i=sources.begin(); i!=sources.end(); ++i)
                if(IO::Seekable *io = (*i)->open(name))
@@ -121,7 +121,16 @@ void Collection::load_items_from_sources(const CollectionItemTypeBase &type)
                std::list<std::string> available_names = (*i)->get_names(type);
                for(std::list<std::string>::iterator j=available_names.begin(); j!=available_names.end(); ++j)
                        if(!items.count(*j))
-                               (*i)->load(*this, type, *j);
+                       {
+                               bool loaded = false;
+                               if(type.can_create())
+                               {
+                                       type.create_item(*this, *j);
+                                       loaded = items.count(*j);
+                               }
+                               if(!loaded)
+                                       (*i)->load(*this, type, *j);
+                       }
        }
 }