X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Floader.h;h=8d26a418a0f5d9cdec52a6ecc85160ff4ee1c4e4;hb=92644bf892df1220c8df67e1fc3da85dd02c53c5;hp=e1522de11aaa8be8dbcba9d40f74c669cbf373d6;hpb=b42b462c13b3a50c3b209bc8c34bf1fcf3a151b2;p=libs%2Fdatafile.git diff --git a/source/loader.h b/source/loader.h index e1522de..8d26a41 100644 --- a/source/loader.h +++ b/source/loader.h @@ -10,7 +10,7 @@ Distributed under the LGPL #include #include -#include "error.h" +#include "except.h" #include "parser.h" #include "statement.h" #include "value.h" @@ -168,6 +168,24 @@ private: }; +template +class LoadValue1: public LoaderAction +{ +public: + typedef T0 *L::*Pointer0Type; + + LoadValue1(Pointer0Type p0): ptr0(p0) { } + void execute(Loader &l, const Statement &st) const + { + if(st.args.size()!=1) throw TypeError(st.get_location()+": Wrong number of arguments"); + typename L::Loader &ldr=dynamic_cast(l); + ldr.get_object().*ptr0=&ldr.get_collection().template get(st.args[0].get()); + } +private: + Pointer0Type ptr0; +}; + + template class LoadValue2: public LoaderAction { @@ -193,7 +211,9 @@ Base class for data loaders. To give loading capabilities to a class, create a public Loader class in it, derived from this class. Typically a loader object contains a reference to the loaded object. To make use of loading directly into data members, the Loader class must have a get_object() member function, -returning that reference. +returning that reference. If direct loading of pointers is desired, the Loader +class must also have a get_collection() member function, returning a collection +to get pointers from. */ class Loader { @@ -219,40 +239,40 @@ 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)); } /** 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 @@ -308,6 +328,7 @@ private: ActionMap actions; const Statement *cur_st; + void add(const std::string &, LoaderAction *); void load_statement(const Statement &st); }; @@ -326,6 +347,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