]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/collection.h
Fix some minor mistakes
[libs/datafile.git] / source / collection.h
index bf44773e54f1b0914cd5b46a80130b8022b881ee..b2c91d6879c82ef486b9b29b78f0f4054779dd59 100644 (file)
@@ -137,6 +137,8 @@ protected:
                insert_unique(items, name, ptr);
        }
 
+       void add_future(const std::string &name);
+
 public:
        /// Gets a typed object from the collection.
        template<typename T>
@@ -144,7 +146,7 @@ public:
        {
                typedef typename RemoveConst<T>::Type NCT;
 
-               T *ptr = get_item(items, name).value<RefPtr<NCT> >();
+               T *ptr = get_item(items, name).value<RefPtr<NCT> >().get();
                if(!ptr)
                        throw key_error(typeid(ItemMap));
                return *ptr;
@@ -157,7 +159,7 @@ public:
 
 private:
        template<typename T>
-       void collect_items(std::list<T *> *objects, std::list<std::string> *names, std::list<std::string> *future_names)
+       void collect_items(std::list<T *> *objects, std::list<std::string> *names, std::list<std::string> *future_names) const
        {
                typedef RefPtr<typename RemoveConst<T>::Type> RPNCT;
 
@@ -299,22 +301,23 @@ protected:
 
        template<typename T>
        class Tag: public TagBase
-       {
-       public:
-               virtual ~Tag() { }
-       };
+       { };
 
        std::string kwd;
+       std::vector<std::string> suffixes;
        TagBase *tag;
 
-       CollectionItemTypeBase(): tag(0) { }
+       CollectionItemTypeBase();
 public:
-       virtual ~CollectionItemTypeBase()
-       { delete tag; }
+       virtual ~CollectionItemTypeBase();
 
+       void set_keyword(const std::string &);
+       void add_suffix(const std::string &);
        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>
        bool check_type() const
@@ -364,6 +367,7 @@ private:
                virtual ~StoreBase() { }
 
                virtual void store(Collection &, const std::string &, T *) = 0;
+               virtual Variant create_future() const = 0;
 
                virtual void add_to_loader(Collection::Loader &, const std::string &) = 0;
        };
@@ -375,6 +379,9 @@ private:
                virtual void store(Collection &coll, const std::string &name, T *obj)
                { coll.add(name, static_cast<S *>(obj)); }
 
+               virtual Variant create_future() const
+               { return RefPtr<S>(0); }
+
                virtual void add_to_loader(Collection::Loader &loader, const std::string &kwd)
                { Collection::Loader::Add<T, S>::add(loader, kwd); }
        };
@@ -398,7 +405,17 @@ public:
        item's name. */
        CollectionItemType &keyword(const std::string &k)
        {
-               kwd = k;
+               set_keyword(k);
+               return *this;
+       }
+
+       /** Adds a suffix that is used to match names when looking for future
+       objects.  There is no implied separator; a name matches if it ends with the
+       suffix.  If a keyword is defined before any suffixes, then "."+keyword is
+       added as a suffix. */
+       CollectionItemType &suffix(const std::string &s)
+       {
+               add_suffix(s);
                return *this;
        }
 
@@ -442,6 +459,9 @@ public:
                if(obj)
                        store->store(coll, name, obj);
        }
+
+       virtual Variant create_future() const
+       { return store->create_future(); }
 };