X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Floader.h;h=70fb7c2ba762fa2b2a4677c53363ffe7426d3009;hb=de02b5618273df1b94085934f699371b4be31783;hp=5e8b2dfe0a1a5accfa94669ddd1fee5625fae3c1;hpb=5453824394771ca21de32088a2842486b63e6f6d;p=libs%2Fdatafile.git diff --git a/source/loader.h b/source/loader.h index 5e8b2df..70fb7c2 100644 --- a/source/loader.h +++ b/source/loader.h @@ -1,240 +1,307 @@ -/* -This file is part of libmspparser -Copyright © 2006 Mikko Rasa, Mikkosoft Productions +/* $Id$ + +This file is part of libmspdatafile +Copyright © 2006 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ -#ifndef MSP_PARSER_LOADER_H_ -#define MSP_PARSER_LOADER_H_ +#ifndef MSP_DATAFILE_LOADER_H_ +#define MSP_DATAFILE_LOADER_H_ + +#include #include -#include +#include "error.h" #include "parser.h" #include "statement.h" #include "value.h" namespace Msp { -namespace Parser { +namespace DataFile { +class Loader; class Statement; -template +/** +Base class for loader actions. +*/ class LoaderAction { public: - virtual void execute(L &, const Statement &) const=0; + /** + Called when a statement is to be loaded. + */ + virtual void execute(Loader &, const Statement &) const=0; virtual ~LoaderAction() { } protected: LoaderAction() { } }; + +/** +Loads a statement by calling a function that takes no arguments. +*/ template -class LoaderFunc0: public LoaderAction +class LoaderFunc0: public LoaderAction { public: typedef void (L::*FuncType)(); - + LoaderFunc0(FuncType f): func(f) { } - void execute(L &l, const Statement &st) const + void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=0) throw TypeError("Wrong number of arguments"); - (l.*func)(); + if(st.args.size()!=0) throw TypeError(st.get_location()+": Wrong number of arguments"); + (dynamic_cast(l).*func)(); }; private: FuncType func; }; + +/** +Loads a statement by calling a function that takes one argument. +*/ template -class LoaderFunc1: public LoaderAction +class LoaderFunc1: public LoaderAction { public: typedef void (L::*FuncType)(A0); - + LoaderFunc1(FuncType f): func(f) { } - void execute(L &l, const Statement &st) const + void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=1) throw TypeError("Wrong number of arguments"); - (l.*func)(st.args[0].get()); + if(st.args.size()!=1) throw TypeError(st.get_location()+": Wrong number of arguments"); + (dynamic_cast(l).*func)(st.args[0].get()); } private: FuncType func; }; + +/** +Loads a statement by calling a function that takes an array of values. +*/ +template +class LoaderFunc1 &>: public LoaderAction +{ +public: + typedef void (L::*FuncType)(const std::list &); + + LoaderFunc1(FuncType f): func(f) { } + void execute(Loader &l, const Statement &st) const + { + std::vector values; + values.reserve(st.args.size()); + for(ValueArray::iterator i=st.args.begin(); i!=st.args.end(); ++i) + values.push_back(i->get()); + (dynamic_cast(l).*func)(values); + } +private: + FuncType func; +}; + + template -class LoaderFunc2: public LoaderAction +class LoaderFunc2: public LoaderAction { public: typedef void (L::*FuncType)(A0, A1); - + LoaderFunc2(FuncType f): func(f) { } - void execute(L &l, const Statement &st) const + void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=2) throw TypeError("Wrong number of arguments"); - (l.*func)(st.args[0].get(), st.args[1].get()); + if(st.args.size()!=2) throw TypeError(st.get_location()+": Wrong number of arguments"); + (dynamic_cast(l).*func)(st.args[0].get(), st.args[1].get()); } private: FuncType func; }; + template -class LoaderFunc3: public LoaderAction +class LoaderFunc3: public LoaderAction { public: typedef void (L::*FuncType)(A0, A1, A2); - + LoaderFunc3(FuncType f): func(f) { } - void execute(L &l, const Statement &st) const + void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=3) throw TypeError("Wrong number of arguments"); - (l.*func)(st.args[0].get(), st.args[1].get(), st.args[2].get()); + if(st.args.size()!=3) 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()); } private: FuncType func; }; + template -class LoaderFunc4: public LoaderAction +class LoaderFunc4: public LoaderAction { public: typedef void (L::*FuncType)(A0, A1, A2, A3); - + LoaderFunc4(FuncType f): func(f) { } - void execute(L &l, const Statement &st) const + void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=4) throw TypeError("Wrong number of arguments"); - (l.*func)(st.args[0].get(), st.args[1].get(), st.args[2].get(), st.args[3].get()); + if(st.args.size()!=4) 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()); } private: FuncType func; }; -template -class LoadValue: public LoaderAction -{ -public: - typedef T L::ObjectType::*PointerType; - - LoadValue(PointerType p): ptr(p) { } - void execute(L &l, const Statement &st) const - { - if(st.args.size()!=1) throw TypeError("Wrong number of arguments"); - l.get_object().*ptr=st.args[0].get(); - } -private: - PointerType ptr; -}; -template -class SubLoader0: public LoaderAction +template +class LoadValue1: public LoaderAction { public: - typedef typename S::ObjectType &(L::*FuncType)(); + typedef T0 L::*Pointer0Type; - SubLoader0(FuncType f): func(f) { } - void execute(L &l, const Statement &st) const + LoadValue1(Pointer0Type p0): ptr0(p0) { } + void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=0) throw TypeError("Wrong number of arguments"); - typename S::ObjectType &obj=(l.*func)(); - S sl(obj); - sl.load(st); + if(st.args.size()!=1) throw TypeError(st.get_location()+": Wrong number of arguments"); + dynamic_cast(l).get_object().*ptr0=st.args[0].get(); } private: - FuncType func; + Pointer0Type ptr0; }; -template -class SubLoader1: public LoaderAction + +template +class LoadValue2: public LoaderAction { public: - typedef typename S::ObjectType &(L::*FuncType)(A0); + typedef T0 L::*Pointer0Type; + typedef T1 L::*Pointer1Type; - SubLoader1(FuncType f): func(f) { } - void execute(L &l, const Statement &st) const + LoadValue2(Pointer0Type p0, Pointer1Type p1): ptr0(p0), ptr1(p1) { } + void execute(Loader &l, const Statement &st) const { - if(st.args.size()!=1) throw TypeError("Wrong number of arguments"); - typename S::ObjectType &obj=(l.*func)(st.args[0].get()); - S sl(obj); - sl.load(st); + if(st.args.size()!=2) throw TypeError(st.get_location()+": Wrong number of arguments"); + dynamic_cast(l).get_object().*ptr0=st.args[0].get(); + dynamic_cast(l).get_object().*ptr1=st.args[1].get(); } private: - FuncType func; + Pointer0Type ptr0; + Pointer1Type ptr1; }; -template + +/** +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. +*/ class Loader { public: - typedef C ObjectType; - - C &get_object() { return obj; } - void load(const Statement &st) - { - for(std::list::const_iterator i=st.sub.begin(); i!=st.sub.end(); ++i) - load_statement(*i); - } - void load(Parser &p) - { - while(p) - { - Statement st=p.parse(); - if(st.valid) - load_statement(st); - } - } - virtual ~Loader() - { - for(typename ActionMap::iterator i=actions.begin(); i!=actions.end(); ++i) - delete i->second; - } + /** + Loads data from a statement. This is normally only used by the Loader class + itself for loading sub-items, but needs to be public so it can be accessed + in derived objects. + */ + void load(const Statement &st); + + /** + Loads statements from a parser. + */ + void load(Parser &p); + + virtual ~Loader(); protected: - typedef std::map *> ActionMap; + Loader(): cur_st(0) { } - C &obj; - - Loader(C &o): obj(o) { } - + template void add(const std::string &k, void (L::*func)()) { actions.insert(typename ActionMap::value_type(k, new LoaderFunc0(func))); } - - template + + template void add(const std::string &k, void (L::*func)(A0)) { actions.insert(typename ActionMap::value_type(k, new LoaderFunc1(func))); } - - template + + template void add(const std::string &k, void (L::*func)(A0, A1)) { actions.insert(typename ActionMap::value_type(k, new LoaderFunc2(func))); } - - template + + template void add(const std::string &k, void (L::*func)(A0, A1, A2)) { actions.insert(typename ActionMap::value_type(k, new LoaderFunc3(func))); } - - template + + template void add(const std::string &k, void (L::*func)(A0, A1, A2, A3)) { actions.insert(typename ActionMap::value_type(k, new LoaderFunc4(func))); } - template - void add(const std::string &k, typename S::ObjectType &(L::*func)()) - { actions.insert(typename ActionMap::value_type(k, new SubLoader0(func))); } + template + void add(const std::string &k, T0 L::*p0) + { actions.insert(typename ActionMap::value_type(k, new LoadValue1(p0))); } - template - void add(const std::string &k, typename S::ObjectType &(L::*func)(A0)) - { actions.insert(typename ActionMap::value_type(k, new SubLoader1(func))); } + template + void add(const std::string &k, T0 L::*p0, T1 L::*p1) + { actions.insert(typename ActionMap::value_type(k, new LoadValue2(p0, p1))); } - template - void add(const std::string &k, T C::*p) - { actions.insert(typename ActionMap::value_type(k, new LoadValue(p))); } -private: - ActionMap actions; + void add(const std::string &k) + { actions.insert(ActionMap::value_type(k, 0)); } + + /** + Loads a sub-object from the statement being currently processed. The Loader + class of the sub-object is automatically used. + */ + template + void load_sub(S &s) + { load_sub(s); } + + /** + Loads a sub-object with a custom Loader class. + */ + template + void load_sub(S &s) + { + if(!cur_st) + throw InvalidState("load_sub called without current statement"); + L loader(s); + loader.load(*cur_st); + } - void load_statement(const Statement &st) + /** + Loads a sub-object with a custom Loader class that takes one argument in + addition to to object to be loaded. + */ + template + void load_sub(S &s, T &p) { - typename ActionMap::iterator j=actions.find(st.keyword); - if(j==actions.end()) - throw Exception(st.get_location()+": Unknown keyword '"+st.keyword+"'"); - j->second->execute(dynamic_cast(*this), st); + if(!cur_st) + throw InvalidState("load_sub called without current statement"); + L loader(s, p); + loader.load(*cur_st); } +private: + typedef std::map ActionMap; + + ActionMap actions; + const Statement *cur_st; + + void load_statement(const Statement &st); }; -} // namespace Parser +/** +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); + + Parser parser(in, fn); + typename T::Loader loader(obj); + loader.load(parser); +} + +} // namespace DataFile } // namespace Msp #endif