X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Floader.h;h=acc84fe024dd080d702bb4d4b3af52ce4ff19e12;hb=6678cf025ca97dd398a9304b0578f146d1f7af80;hp=da1da3a23f462f4ed4ec77efd4b8e4c7977336e2;hpb=1d9c21a8a301007fb242e05b69cc6390ec566273;p=libs%2Fdatafile.git diff --git a/source/loader.h b/source/loader.h index da1da3a..acc84fe 100644 --- a/source/loader.h +++ b/source/loader.h @@ -151,6 +151,23 @@ private: }; +template +class LoaderFunc5: public LoaderAction +{ +public: + typedef void (L::*FuncType)(A0, A1, A2, A3, A4); + + LoaderFunc5(FuncType f): func(f) { } + void execute(Loader &l, const Statement &st) const + { + if(st.args.size()!=5) throw TypeError(st.get_location()+": Wrong number of arguments"); + (dynamic_cast(l).*func)(st.args[0].get(), st.args[1].get(), st.args[2].get(), st.args[3].get(), st.args[4].get()); + } +private: + FuncType func; +}; + + template class LoadValue1: public LoaderAction { @@ -239,40 +256,44 @@ protected: */ template void add(const std::string &k, void (L::*func)()) - { actions.insert(typename ActionMap::value_type(k, new LoaderFunc0(func))); } + { add(k, new LoaderFunc0(func)); } template void add(const std::string &k, void (L::*func)(A0)) - { actions.insert(typename ActionMap::value_type(k, new LoaderFunc1(func))); } + { add(k, new LoaderFunc1(func)); } template void add(const std::string &k, void (L::*func)(A0, A1)) - { actions.insert(typename ActionMap::value_type(k, new LoaderFunc2(func))); } + { add(k, new LoaderFunc2(func)); } template void add(const std::string &k, void (L::*func)(A0, A1, A2)) - { actions.insert(typename ActionMap::value_type(k, new LoaderFunc3(func))); } + { add(k, new LoaderFunc3(func)); } template void add(const std::string &k, void (L::*func)(A0, A1, A2, A3)) - { actions.insert(typename ActionMap::value_type(k, new LoaderFunc4(func))); } + { add(k, new LoaderFunc4(func)); } + + template + void add(const std::string &k, void (L::*func)(A0, A1, A2, A3, A4)) + { add(k, new LoaderFunc5(func)); } /** Adds a keyword that is loaded into a variable of the loaded object. */ template void add(const std::string &k, T0 L::*p0) - { actions.insert(typename ActionMap::value_type(k, new LoadValue1(p0))); } + { add(k, new LoadValue1(p0)); } template void add(const std::string &k, T0 L::*p0, T1 L::*p1) - { actions.insert(typename ActionMap::value_type(k, new LoadValue2(p0, p1))); } + { add(k, new LoadValue2(p0, p1)); } /** Adds a keyword that is recognized but ignored. */ void add(const std::string &k) - { actions.insert(ActionMap::value_type(k, 0)); } + { add(k, 0); } /** Loads a sub-object from the statement being processed. The Loader class of @@ -328,6 +349,7 @@ private: ActionMap actions; const Statement *cur_st; + void add(const std::string &, LoaderAction *); void load_statement(const Statement &st); }; @@ -346,6 +368,18 @@ void load(T &obj, const std::string &fn) loader.load(parser); } +template +void load(T &obj, const std::string &fn, U arg) +{ + std::ifstream in(fn.c_str()); + if(!in) + throw Exception("Couldn't open "+fn); + + Parser parser(in, fn); + typename T::Loader loader(obj, arg); + loader.load(parser); +} + } // namespace DataFile } // namespace Msp