]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/loaderaction.h
Use variadic templates and forwarding references for better flexibility
[libs/datafile.git] / source / loaderaction.h
index 7e4feac613eba7afab54fec62c07b294c28f56ea..23298428df659303185075b212c7ada5604d6778 100644 (file)
@@ -8,7 +8,6 @@
 namespace Msp {
 namespace DataFile {
 
-#if __cplusplus>=201103L
 template<typename T>
 std::string create_signature(const std::string &prefix = std::string())
 { return prefix+std::string(1, TypeInfo<T>::signature); }
@@ -16,7 +15,6 @@ std::string create_signature(const std::string &prefix = std::string())
 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)); }
-#endif
 
 class Loader;
 
@@ -26,9 +24,9 @@ Base class for loader actions.
 class LoaderAction
 {
 protected:
-       LoaderAction() { }
+       LoaderAction() = default;
 public:
-       virtual ~LoaderAction() { }
+       virtual ~LoaderAction() = default;
 
        /** Called to process a statement. */
        virtual void execute(Loader &, const Statement &) const = 0;
@@ -115,8 +113,8 @@ public:
        {
                std::vector<A0> values;
                values.reserve(st.args.size());
-               for(Statement::Arguments::const_iterator i=st.args.begin(); i!=st.args.end(); ++i)
-                       values.push_back(i->get<A0>());
+               for(const Value &a: st.args)
+                       values.push_back(a.get<A0>());
                (dynamic_cast<L &>(l).*func)(values);
        }
 
@@ -169,200 +167,96 @@ public:
 };
 
 
-template<typename L, typename A0, typename A1>
-class LoaderFunc2: public LoaderAction
-{
-private:
-       typedef void (L::*FuncType)(A0, A1);
-
-       FuncType func;
-
-public:
-       LoaderFunc2(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>());
-       }
-
-       virtual void execute(Loader &l, const ArgumentStore &as) const
-       {
-               (dynamic_cast<L &>(l).*func)(as.get<A0>(0), as.get<A1>(1));
-       }
-
-       virtual std::string get_signature() const
-       {
-               std::string result;
-               result += TypeInfo<A0>::signature;
-               result += TypeInfo<A1>::signature;
-               return result;
-       }
-};
-
+template<unsigned I, typename... Args>
+struct Apply;
 
-template<typename L, typename A0, typename A1, typename A2>
-class LoaderFunc3: public LoaderAction
+template<unsigned I>
+struct Apply<I>
 {
-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 &, Args &&... args)
        {
-               (dynamic_cast<L &>(l).*func)(st.args[0].get<A0>(), st.args[1].get<A1>(), st.args[2].get<A2>());
+               (l.*func)(std::forward<Args>(args)...);
        }
 
-       virtual void execute(Loader &l, const ArgumentStore &as) const
+       template<typename L, typename F, typename... Args>
+       static void apply(L &l, F func, const ArgumentStore &, Args &&... args)
        {
-               (dynamic_cast<L &>(l).*func)(as.get<A0>(0), as.get<A1>(1), as.get<A2>(2));
-       }
-
-       virtual std::string get_signature() const
-       {
-               std::string result;
-               result += TypeInfo<A0>::signature;
-               result += TypeInfo<A1>::signature;
-               result += TypeInfo<A2>::signature;
-               return result;
+               (l.*func)(std::forward<Args>(args)...);
        }
 };
 
-
-template<typename L, typename A0, typename A1, typename A2, typename A3>
-class LoaderFunc4: public LoaderAction
+template<unsigned I, typename Head, typename... Tail>
+struct Apply<I, Head, Tail...>
 {
-private:
-       typedef void (L::*FuncType)(A0, A1, A2, A3);
-
-       FuncType func;
-
-public:
-       LoaderFunc4(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>());
-       }
-
-       virtual void execute(Loader &l, const ArgumentStore &as) 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)(as.get<A0>(0), as.get<A1>(1), as.get<A2>(2), as.get<A3>(3));
+               Apply<I+1, Tail...>::apply(l, func, st, std::forward<Args>(args)..., std::move(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;
-               result += TypeInfo<A3>::signature;
-               return result;
+               Apply<I+1, Tail...>::apply(l, func, as, std::forward<Args>(args)..., std::move(as.get<Head>(I)));
        }
 };
 
 
-template<typename L, typename A0, typename A1, typename A2, typename A3, typename A4>
-class LoaderFunc5: public LoaderAction
+template<typename L, typename... Args>
+class LoaderFuncN: public LoaderAction
 {
-private:
-       typedef void (L::*FuncType)(A0, A1, A2, A3, A4);
+protected:
+       typedef void (L::*FuncType)(Args...);
 
        FuncType func;
 
 public:
-       LoaderFunc5(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>(), st.args[4].get<A4>());
+               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, st);
        }
 
        virtual void execute(Loader &l, const ArgumentStore &as) const
        {
-               (dynamic_cast<L &>(l).*func)(as.get<A0>(0), as.get<A1>(1), as.get<A2>(2), as.get<A3>(3), as.get<A4>(4));
+               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, as);
        }
 
        virtual std::string get_signature() 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;
-       }
-};
-
-
-#if __cplusplus>=201103L
-template<unsigned I, typename... Args>
-struct Apply;
-
-template<unsigned I>
-struct Apply<I>
-{
-       template<typename L, typename F, typename... Args>
-       static void apply(L &l, F func, const Statement &, Args... args)
-       {
-               (l.*func)(args...);
-       }
-
-       template<typename L, typename F, typename... Args>
-       static void apply(L &l, F func, const ArgumentStore &, Args... args)
-       {
-               (l.*func)(args...);
-       }
-};
-
-template<unsigned I, typename Head, typename... Tail>
-struct Apply<I, Head, Tail...>
-{
-       template<typename L, typename F, typename... Args>
-       static void apply(L &l, F func, const Statement &st, Args... args)
-       {
-               Apply<I+1, Tail...>::apply(l, func, st, args..., st.args[I].get<Head>());
-       }
-
-       template<typename L, typename F, typename... Args>
-       static void apply(L &l, F func, const ArgumentStore &as, Args... args)
-       {
-               Apply<I+1, Tail...>::apply(l, func, as, args..., as.get<Head>(I));
-       }
+       { return create_signature<Args...>(); }
 };
 
 
-template<typename L, typename... Args>
-class LoaderFuncN: public LoaderAction
+template<typename L, typename B0, typename... Args>
+class LoaderFuncNBound1: public LoaderAction
 {
 protected:
-       typedef void (L::*FuncType)(Args...);
+       typedef void (L::*FuncType)(B0, Args...);
+       typedef typename std::remove_reference<B0>::type Bound0Type;
 
        FuncType func;
+       Bound0Type bound0;
 
 public:
-       LoaderFuncN(FuncType f): func(f) { }
+       LoaderFuncNBound1(FuncType f, const B0 &b0): func(f), bound0(b0) { }
+       LoaderFuncNBound1(FuncType f, B0 &&b0): func(f), bound0(std::move(b0)) { }
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, st);
+               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, st, bound0);
        }
 
        virtual void execute(Loader &l, const ArgumentStore &as) const
        {
-               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, as);
+               Apply<0, Args...>::apply(dynamic_cast<L &>(l), func, as, bound0);
        }
 
        virtual std::string get_signature() const
        { return create_signature<Args...>(); }
 };
 
-#endif
-
 
 template<typename L, typename T0>
 class LoadValue1: public LoaderAction