]> git.tdb.fi Git - libs/datafile.git/commitdiff
Improve the API for future objects
authorMikko Rasa <tdb@tdb.fi>
Fri, 28 Sep 2012 09:10:23 +0000 (12:10 +0300)
committerMikko Rasa <tdb@tdb.fi>
Fri, 28 Sep 2012 09:10:23 +0000 (12:10 +0300)
add_future is now documented as ignoring names that don't match any type,
and there's a new function to add future objects with a keyword.

source/collection.cpp
source/collection.h

index a16ae5a9dc2e7a9f70f638093348b59c8bd561eb..5ac12ab7d366c3406cfc59206b42b166875557d5 100644 (file)
@@ -11,20 +11,26 @@ Collection::~Collection()
                delete *i;
 }
 
                delete *i;
 }
 
-void Collection::add_future(const std::string &name)
+void Collection::add_future(const string &name)
 {
 {
-       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))
                {
        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()));
+                       insert_unique(items, name, (*i)->create_future());
+                       return;
+               }
+}
+
+void Collection::add_future_with_keyword(const string &name, const string &keyword)
+{
+       for(TypeList::const_iterator i=types.begin(); i!=types.end(); ++i)
+               if((*i)->get_keyword()==keyword)
+               {
+                       insert_unique(items, name, (*i)->create_future());
                        return;
                }
 
                        return;
                }
 
-       /* XXX throw something?  If we do, DirectoryCollection needs some way to
-       check if a name matches any item type. */
+       throw runtime_error("Collection::add_future_with_keyword");
 }
 
 
 }
 
 
index 3d5b7f0a6abce95bc8aa5d6ec05749be3ec6f8b2..9f5ddfcf7f78e5ba988636cc501edf05a87247a2 100644 (file)
@@ -130,8 +130,14 @@ protected:
                insert_unique(items, name, ptr);
        }
 
                insert_unique(items, name, ptr);
        }
 
+       /** Adds the name of a future object, guessing its type.  If a type matching
+       the name can't be found, nothing is done. */
        void add_future(const std::string &name);
 
        void add_future(const std::string &name);
 
+       /** Adds the name of a future object, using a keyword to determine its type.
+       The keyword must be known to the collection. */
+       void add_future_with_keyword(const std::string &name, const std::string &);
+
 public:
        /// Gets a typed object from the collection.
        template<typename T>
 public:
        /// Gets a typed object from the collection.
        template<typename T>
@@ -308,11 +314,12 @@ public:
        virtual ~CollectionItemTypeBase();
 
        void set_keyword(const std::string &);
        virtual ~CollectionItemTypeBase();
 
        void set_keyword(const std::string &);
+       const std::string &get_keyword() const { return kwd; }
        void add_suffix(const std::string &);
        void add_suffix(const std::string &);
+       bool match_name(const std::string &) const;
        virtual void add_to_loader(Collection::Loader &) const = 0;
        virtual bool can_create() const = 0;
        virtual void create_item(Collection &, const std::string &) const = 0;
        virtual void add_to_loader(Collection::Loader &) const = 0;
        virtual bool can_create() const = 0;
        virtual void create_item(Collection &, const std::string &) const = 0;
-       bool match_name(const std::string &) const;
        virtual Variant create_future() const = 0;
 
        template<typename T>
        virtual Variant create_future() const = 0;
 
        template<typename T>