]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/loaderaction.h
Remove the loaded flag from PackSource files
[libs/datafile.git] / source / loaderaction.h
index 6eebeccc76f47c8144fac9f5ceeb93a35dff0a93..82fd3b437902a3494167ae295c7f065184424a5b 100644 (file)
@@ -1,14 +1,7 @@
-/* $Id$
-
-This file is part of libmspdatafile
-Copyright © 2008, 2010  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_DATAFILE_LOADERACTION_H_
 #define MSP_DATAFILE_LOADERACTION_H_
 
-#include "except.h"
+#include "argumentstore.h"
 #include "statement.h"
 
 namespace Msp {
@@ -28,6 +21,10 @@ 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;
 };
 
 
@@ -45,11 +42,18 @@ private:
 public:
        LoaderFunc0(FuncType f): func(f) { }
 
-       virtual void execute(Loader &l, const Statement &st) const
+       virtual void execute(Loader &l, const Statement &) const
        {
-               if(st.args.size()!=0) throw TypeError("Wrong number of arguments");
                (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(); }
 };
 
 
@@ -69,9 +73,16 @@ public:
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               if(st.args.size()!=1) throw TypeError("Wrong number of arguments");
                (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); }
 };
 
 
@@ -97,6 +108,24 @@ public:
                        values.push_back(i->get<A0>());
                (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;
+               result += TypeInfo<A0>::signature;
+               result += '*';
+               return result;
+       }
 };
 
 
@@ -118,6 +147,14 @@ 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 "*"; }
 };
 
 
@@ -134,9 +171,21 @@ public:
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               if(st.args.size()!=2) throw TypeError("Wrong number of arguments");
                (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;
+       }
 };
 
 
@@ -153,9 +202,22 @@ public:
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               if(st.args.size()!=3) throw TypeError("Wrong number of arguments");
                (dynamic_cast<L &>(l).*func)(st.args[0].get<A0>(), st.args[1].get<A1>(), st.args[2].get<A2>());
        }
+
+       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));
+       }
+
+       virtual std::string get_signature() const
+       {
+               std::string result;
+               result += TypeInfo<A0>::signature;
+               result += TypeInfo<A1>::signature;
+               result += TypeInfo<A2>::signature;
+               return result;
+       }
 };
 
 
@@ -172,9 +234,23 @@ public:
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               if(st.args.size()!=4) throw TypeError("Wrong number of arguments");
                (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
+       {
+               (dynamic_cast<L &>(l).*func)(as.get<A0>(0), as.get<A1>(1), as.get<A2>(2), as.get<A3>(3));
+       }
+
+       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;
+               return result;
+       }
 };
 
 
@@ -191,9 +267,24 @@ public:
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               if(st.args.size()!=5) throw TypeError("Wrong number of arguments");
                (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>());
        }
+
+       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));
+       }
+
+       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;
+       }
 };
 
 
@@ -210,9 +301,16 @@ public:
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               if(st.args.size()!=1) throw TypeError("Wrong number of arguments");
-               dynamic_cast<typename L::Loader &>(l).get_object().*ptr0=st.args[0].get<T0>();
+               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); }
 };
 
 
@@ -229,10 +327,18 @@ public:
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               if(st.args.size()!=1) throw TypeError("Wrong number of arguments");
-               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>());
+               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>());
+       }
+
+       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
+       { return std::string(1, TypeInfo<std::string>::signature); }
 };
 
 
@@ -251,9 +357,22 @@ public:
 
        virtual void execute(Loader &l, const Statement &st) const
        {
-               if(st.args.size()!=2) throw TypeError("Wrong number of arguments");
-               dynamic_cast<typename L::Loader &>(l).get_object().*ptr0=st.args[0].get<T0>();
-               dynamic_cast<typename L::Loader &>(l).get_object().*ptr1=st.args[1].get<T1>();
+               dynamic_cast<typename L::Loader &>(l).get_object().*ptr0 = st.args[0].get<T0>();
+               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;
+               result += TypeInfo<T0>::signature;
+               result += TypeInfo<T1>::signature;
+               return result;
        }
 };