X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Floader.h;h=0c8118625918823ee2b5ebf6640bfd171a9d85fb;hb=256f7238bc60d6dcc31a564988f5cc02a60c4537;hp=7d5d8d9690dfd1c9460739e7a22332a26e6d5e42;hpb=c4930d8d15a5a248ca921e0ed3f9bca8aa18b322;p=libs%2Fdatafile.git diff --git a/source/loader.h b/source/loader.h index 7d5d8d9..0c81186 100644 --- a/source/loader.h +++ b/source/loader.h @@ -1,16 +1,17 @@ /* $Id$ This file is part of libmspdatafile -Copyright © 2006 Mikko Rasa, Mikkosoft Productions +Copyright © 2006-2008 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ #ifndef MSP_DATAFILE_LOADER_H_ #define MSP_DATAFILE_LOADER_H_ -#include #include -#include "error.h" +#include +#include +#include "except.h" #include "parser.h" #include "statement.h" #include "value.h" @@ -49,7 +50,7 @@ public: LoaderFunc0(FuncType f): func(f) { } void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=0) throw TypeError(st.get_location()+": Wrong number of arguments"); + if(st.args.size()!=0) throw TypeError("Wrong number of arguments"); (dynamic_cast(l).*func)(); }; private: @@ -69,7 +70,7 @@ public: LoaderFunc1(FuncType f): func(f) { } void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=1) throw TypeError(st.get_location()+": Wrong number of arguments"); + if(st.args.size()!=1) throw TypeError("Wrong number of arguments"); (dynamic_cast(l).*func)(st.args[0].get()); } private: @@ -109,7 +110,7 @@ public: LoaderFunc2(FuncType f): func(f) { } void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=2) throw TypeError(st.get_location()+": Wrong number of arguments"); + if(st.args.size()!=2) throw TypeError("Wrong number of arguments"); (dynamic_cast(l).*func)(st.args[0].get(), st.args[1].get()); } private: @@ -126,7 +127,7 @@ public: LoaderFunc3(FuncType f): func(f) { } void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=3) throw TypeError(st.get_location()+": Wrong number of arguments"); + if(st.args.size()!=3) throw TypeError("Wrong number of arguments"); (dynamic_cast(l).*func)(st.args[0].get(), st.args[1].get(), st.args[2].get()); } private: @@ -143,7 +144,7 @@ public: LoaderFunc4(FuncType f): func(f) { } void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=4) throw TypeError(st.get_location()+": Wrong number of arguments"); + if(st.args.size()!=4) throw TypeError("Wrong number of arguments"); (dynamic_cast(l).*func)(st.args[0].get(), st.args[1].get(), st.args[2].get(), st.args[3].get()); } private: @@ -151,6 +152,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("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 { @@ -160,7 +178,7 @@ public: 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"); + if(st.args.size()!=1) throw TypeError("Wrong number of arguments"); dynamic_cast(l).get_object().*ptr0=st.args[0].get(); } private: @@ -168,6 +186,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("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 { @@ -178,7 +214,7 @@ public: LoadValue2(Pointer0Type p0, Pointer1Type p1): ptr0(p0), ptr1(p1) { } void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=2) throw TypeError(st.get_location()+": Wrong number of arguments"); + if(st.args.size()!=2) throw TypeError("Wrong number of arguments"); dynamic_cast(l).get_object().*ptr0=st.args[0].get(); dynamic_cast(l).get_object().*ptr1=st.args[1].get(); } @@ -189,11 +225,13 @@ private: /** -Base class for data loaders. To enable objects of a certain class to be loaded -from datafiles, create a public Loader class in it, derived from this class. -Typically the Loader class contains a reference to the object being loaded. If -you want to load data members of the object directly, the Loader class must -have a member function get_object() returning that reference. +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. 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 { @@ -214,75 +252,97 @@ public: protected: Loader(): cur_st(0) { } + /** + Adds a keyword that is loaded with a zero-argument function. + */ 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 currently processed. The Loader - class of the sub-object is automatically used. + Loads a sub-object from the statement being processed. The Loader class of + the sub-object is automatically used. */ template void load_sub(S &s) - { load_sub(s); } + { + typename S::Loader ldr(s); + load_sub_with(ldr); + } /** - Loads a sub-object with a custom Loader class. + Loads a sub-object from the statement being processed with an extra parameter + for the Loader. The Loader class of the sub-object is automatically used. */ - template - void load_sub(S &s) + template + void load_sub(S &s, T &p) { - if(!cur_st) - throw InvalidState("load_sub called without current statement"); - L loader(s); - loader.load(*cur_st); + typename S::Loader ldr(s, p); + load_sub_with(ldr); } /** - Loads a sub-object with a custom Loader class that takes one argument in - addition to to object to be loaded. + Processes the current statement's substatements with another Loader. */ - template - void load_sub(S &s, T &p) + void load_sub_with(Loader &); + + /** + Returns the source of the statement being processed. This can be used to + implement relative paths in include-like statements. Note that the source + may not necessarily be a file. + */ + const std::string &get_source() const { if(!cur_st) - throw InvalidState("load_sub called without current statement"); - L loader(s, p); - loader.load(*cur_st); + throw InvalidState("get_source called without current statement"); + return cur_st->source; } + + virtual void finish() { } private: typedef std::map ActionMap; ActionMap actions; const Statement *cur_st; + void add(const std::string &, LoaderAction *); void load_statement(const Statement &st); }; @@ -292,15 +352,25 @@ Loads an object from a file. The object must have a public Loader class. template void load(T &obj, const std::string &fn) { - std::ifstream in(fn.c_str()); - if(!in) - throw Exception("Couldn't open "+fn); + IO::File in(fn); + IO::Buffered buf(in); - Parser parser(in, fn); + Parser parser(buf, fn); typename T::Loader loader(obj); loader.load(parser); } +template +void load(T &obj, const std::string &fn, U &arg) +{ + IO::File in(fn); + IO::Buffered buf(in); + + Parser parser(in, fn); + typename T::Loader loader(obj, arg); + loader.load(parser); +} + } // namespace DataFile } // namespace Msp