virtual bool can_create() const = 0;
virtual void create_item(Collection &, const std::string &) const = 0;
virtual void load_item(Collection &, Parser &, const std::string &) const = 0;
- virtual void notify_item(Collection &, const std::string &, const Variant &) const = 0;
+ virtual void notify_item(const std::string &, const Variant &) const = 0;
template<typename T>
bool can_extract() const
class CollectionItemType: public CollectionItemTypeBase
{
private:
- struct CreatorBase
- {
- virtual ~CreatorBase() { }
-
- virtual T *create(Collection &, const std::string &) const = 0;
- };
-
- template<typename C>
- struct Creator: CreatorBase
- {
- typedef T *(C::*FuncPtr)(const std::string &);
-
- FuncPtr func;
-
- Creator(FuncPtr f): func(f) { }
-
- virtual T *create(Collection &coll, const std::string &name) const
- { return (dynamic_cast<C &>(coll).*func)(name); }
- };
-
- struct NotifyeeBase
- {
- virtual ~NotifyeeBase() { }
-
- virtual void notify(Collection &, const std::string &, T &) const = 0;
- };
-
- template<typename C>
- struct Notifyee: NotifyeeBase
- {
- typedef void (C::*FuncPtr)(const std::string &, T &);
-
- FuncPtr func;
-
- Notifyee(FuncPtr f): func(f) { }
-
- virtual void notify(Collection &coll, const std::string &name, T &item) const
- { (dynamic_cast<C &>(coll).*func)(name, item); }
- };
-
template<typename B>
struct Extractor: CollectionItemTypeBase::Extractor<B>
{
{ return *var.value<RefPtr<T> >(); }
};
- CreatorBase *creat;
- std::vector<NotifyeeBase *> notif;
+ std::function<T *(const std::string &)> create_func;
+ std::vector<std::function<void(const std::string &, T &)>> notify_funcs;
public:
- CollectionItemType():
- creat(0)
- { }
-
- ~CollectionItemType()
- {
- delete creat;
- for(NotifyeeBase *n: notif)
- delete n;
- }
-
/** Sets a datafile keyword for this item type. The Collection's loader
will accept a statement with this keyword and a single string argument - the
item's name. */
type. It must return the created object, or null if it could not be
created. It's also permissible to load the item via other means and then
return null. */
- template<typename C>
- CollectionItemType &creator(T *(C::*func)(const std::string &))
+ template<typename F>
+ CollectionItemType &creator(F func)
{
- delete creat;
- creat = new Creator<C>(func);
+ create_func = func;
return *this;
}
return *this;
}
- template<typename C>
- CollectionItemType ¬ify(void (C::*func)(const std::string &, T &))
+ template<typename F>
+ CollectionItemType ¬ify(F func)
{
- notif.push_back(new Notifyee<C>(func));
+ notify_funcs.emplace_back(func);
return *this;
}
{ }
virtual bool can_create() const
- { return creat!=0; }
+ { return static_cast<bool>(create_func); }
virtual void create_item(Collection &coll, const std::string &name) const
{
- if(!creat)
+ if(!create_func)
throw std::runtime_error("no creator");
- T *obj = creat->create(coll, name);
+ T *obj = create_func(name);
if(obj)
coll.add(name, obj);
}
throw std::runtime_error("this type cannot be loaded");
}
- virtual void notify_item(Collection &coll, const std::string &name, const Variant &var) const
+ virtual void notify_item(const std::string &name, const Variant &var) const
{
RefPtr<T> obj = var.value<RefPtr<T> >();
- for(NotifyeeBase *n: notif)
- n->notify(coll, name, *obj);
+ for(const auto &n: notify_funcs)
+ n(name, *obj);
}
};