]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/loaderaction.h
Require C++11 for building
[libs/datafile.git] / source / loaderaction.h
index 5b2f0b0f022016cc97dbce52bb3d09aab7887bf0..c7c593829a1b24a3ccd161dad400f14b06d207e8 100644 (file)
@@ -1,11 +1,21 @@
 #ifndef MSP_DATAFILE_LOADERACTION_H_
 #define MSP_DATAFILE_LOADERACTION_H_
 
+#include <msp/core/meta.h>
+#include "argumentstore.h"
 #include "statement.h"
 
 namespace Msp {
 namespace DataFile {
 
+template<typename T>
+std::string create_signature(const std::string &prefix = std::string())
+{ return prefix+std::string(1, TypeInfo<T>::signature); }
+
+template<typename T0, typename T1, typename... Tail>
+std::string create_signature(const std::string &prefix = std::string())
+{ return create_signature<T1, Tail...>(prefix+std::string(1, TypeInfo<T0>::signature)); }
+
 class Loader;
 
 /**
@@ -21,6 +31,8 @@ public:
        /** Called to process a statement. */
        virtual void execute(Loader &, const Statement &) const = 0;
 
+       virtual void execute(Loader &, const ArgumentStore &) const = 0;
+
        virtual std::string get_signature() const = 0;
 };
 
@@ -44,6 +56,11 @@ public:
                (dynamic_cast<L &>(l).*func)();
        };
 
+       virtual void execute(Loader &l, const ArgumentStore &) const
+       {
+               (dynamic_cast<L &>(l).*func)();
+       };
+
        virtual std::string get_signature() const
        { return std::string(); }
 };
@@ -68,6 +85,11 @@ public:
                (dynamic_cast<L &>(l).*func)(st.args[0].get<A0>());
        }
 
+       virtual void execute(Loader &l, const ArgumentStore &as) const
+       {
+               (dynamic_cast<L &>(l).*func)(as.get<A0>(0));
+       }
+
        virtual std::string get_signature() const
        { return std::string(1, TypeInfo<A0>::signature); }
 };
@@ -96,6 +118,16 @@ public:
                (dynamic_cast<L &>(l).*func)(values);
        }
 
+       virtual void execute(Loader &l, const ArgumentStore &as) const
+       {
+               std::vector<A0> values;
+               unsigned n_args = as.get_info().key.signature.size();
+               values.reserve(n_args);
+               for(unsigned i=0; i<n_args; ++i)
+                       values.push_back(as.get<A0>(i));
+               (dynamic_cast<L &>(l).*func)(values);
+       }
+
        virtual std::string get_signature() const
        {
                std::string result;
@@ -125,118 +157,103 @@ public:
                (dynamic_cast<L &>(l).*func)(st);
        }
 
+       virtual void execute(Loader &, const ArgumentStore &) const
+       {
+               throw std::logic_error("incompatible format");
+       }
+
        virtual std::string get_signature() const
        { return "*"; }
 };
 
 
-template<typename L, typename A0, typename A1>
-class LoaderFunc2: public LoaderAction
-{
-private:
-       typedef void (L::*FuncType)(A0, A1);
-
-       FuncType func;
+template<unsigned I, typename... Args>
+struct Apply;
 
-public:
-       LoaderFunc2(FuncType f): func(f) { }
-
-       virtual void execute(Loader &l, const Statement &st) const
+template<unsigned I>
+struct Apply<I>
+{
+       template<typename L, typename F, typename... Args>
+       static void apply(L &l, F func, const Statement &, Args... args)
        {
-               (dynamic_cast<L &>(l).*func)(st.args[0].get<A0>(), st.args[1].get<A1>());
+               (l.*func)(args...);
        }
 
-       virtual std::string get_signature() const
+       template<typename L, typename F, typename... Args>
+       static void apply(L &l, F func, const ArgumentStore &, Args... args)
        {
-               std::string result;
-               result += TypeInfo<A0>::signature;
-               result += TypeInfo<A1>::signature;
-               return result;
+               (l.*func)(args...);
        }
 };
 
-
-template<typename L, typename A0, typename A1, typename A2>
-class LoaderFunc3: public LoaderAction
+template<unsigned I, typename Head, typename... Tail>
+struct Apply<I, Head, Tail...>
 {
-private:
-       typedef void (L::*FuncType)(A0, A1, A2);
-
-       FuncType func;
-
-public:
-       LoaderFunc3(FuncType f): func(f) { }
-
-       virtual void execute(Loader &l, const Statement &st) const
+       template<typename L, typename F, typename... Args>
+       static void apply(L &l, F func, const Statement &st, Args... args)
        {
-               (dynamic_cast<L &>(l).*func)(st.args[0].get<A0>(), st.args[1].get<A1>(), st.args[2].get<A2>());
+               Apply<I+1, Tail...>::apply(l, func, st, args..., st.args[I].get<Head>());
        }
 
-       virtual std::string get_signature() const
+       template<typename L, typename F, typename... Args>
+       static void apply(L &l, F func, const ArgumentStore &as, Args... args)
        {
-               std::string result;
-               result += TypeInfo<A0>::signature;
-               result += TypeInfo<A1>::signature;
-               result += TypeInfo<A2>::signature;
-               return result;
+               Apply<I+1, Tail...>::apply(l, func, as, args..., as.get<Head>(I));
        }
 };
 
 
-template<typename L, typename A0, typename A1, typename A2, typename A3>
-class LoaderFunc4: public LoaderAction
+template<typename L, typename... Args>
+class LoaderFuncN: public LoaderAction
 {
-private:
-       typedef void (L::*FuncType)(A0, A1, A2, A3);
+protected:
+       typedef void (L::*FuncType)(Args...);
 
        FuncType func;
 
 public:
-       LoaderFunc4(FuncType f): func(f) { }
+       LoaderFuncN(FuncType f): func(f) { }
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               (dynamic_cast<L &>(l).*func)(st.args[0].get<A0>(), st.args[1].get<A1>(), st.args[2].get<A2>(), st.args[3].get<A3>());
+               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, st);
        }
 
-       virtual std::string get_signature() const
+       virtual void execute(Loader &l, const ArgumentStore &as) const
        {
-               std::string result;
-               result += TypeInfo<A0>::signature;
-               result += TypeInfo<A1>::signature;
-               result += TypeInfo<A2>::signature;
-               result += TypeInfo<A3>::signature;
-               return result;
+               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, as);
        }
+
+       virtual std::string get_signature() const
+       { return create_signature<Args...>(); }
 };
 
 
-template<typename L, typename A0, typename A1, typename A2, typename A3, typename A4>
-class LoaderFunc5: public LoaderAction
+template<typename L, typename B0, typename... Args>
+class LoaderFuncNBound1: public LoaderAction
 {
-private:
-       typedef void (L::*FuncType)(A0, A1, A2, A3, A4);
+protected:
+       typedef void (L::*FuncType)(B0, Args...);
+       typedef typename RemoveReference<B0>::Type Bound0Type;
 
        FuncType func;
+       Bound0Type bound0;
 
 public:
-       LoaderFunc5(FuncType f): func(f) { }
+       LoaderFuncNBound1(FuncType f, const Bound0Type &b0): func(f), bound0(b0) { }
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               (dynamic_cast<L &>(l).*func)(st.args[0].get<A0>(), st.args[1].get<A1>(), st.args[2].get<A2>(), st.args[3].get<A3>(), st.args[4].get<A4>());
+               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, st, bound0);
        }
 
-       virtual std::string get_signature() const
+       virtual void execute(Loader &l, const ArgumentStore &as) const
        {
-               std::string result;
-               result += TypeInfo<A0>::signature;
-               result += TypeInfo<A1>::signature;
-               result += TypeInfo<A2>::signature;
-               result += TypeInfo<A3>::signature;
-               result += TypeInfo<A4>::signature;
-               return result;
+               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, as, bound0);
        }
+
+       virtual std::string get_signature() const
+       { return create_signature<Args...>(); }
 };
 
 
@@ -256,6 +273,11 @@ public:
                dynamic_cast<typename L::Loader &>(l).get_object().*ptr0 = st.args[0].get<T0>();
        }
 
+       virtual void execute(Loader &l, const ArgumentStore &as) const
+       {
+               dynamic_cast<typename L::Loader &>(l).get_object().*ptr0 = as.get<T0>(0);
+       }
+
        virtual std::string get_signature() const
        { return std::string(1, TypeInfo<T0>::signature); }
 };
@@ -275,7 +297,13 @@ public:
        virtual void execute(Loader &l, const Statement &st) const
        {
                typename L::Loader &ldr = dynamic_cast<typename L::Loader &>(l);
-               ldr.get_object().*ptr0 = ldr.get_collection().template get<T0>(st.args[0].get<std::string>());
+               ldr.get_object().*ptr0 = &ldr.get_collection().template get<T0>(st.args[0].get<std::string>());
+       }
+
+       virtual void execute(Loader &l, const ArgumentStore &as) const
+       {
+               typename L::Loader &ldr = dynamic_cast<typename L::Loader &>(l);
+               ldr.get_object().*ptr0 = &ldr.get_collection().template get<T0>(as.get<std::string>(0));
        }
 
        virtual std::string get_signature() const
@@ -302,6 +330,12 @@ public:
                dynamic_cast<typename L::Loader &>(l).get_object().*ptr1 = st.args[1].get<T1>();
        }
 
+       virtual void execute(Loader &l, const ArgumentStore &as) const
+       {
+               dynamic_cast<typename L::Loader &>(l).get_object().*ptr0 = as.get<T0>(0);
+               dynamic_cast<typename L::Loader &>(l).get_object().*ptr1 = as.get<T1>(1);
+       }
+
        virtual std::string get_signature() const
        {
                std::string result;