X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Floader.cpp;h=2bf90ee1e5ec9436e9306a09a7917c8e25e32cdc;hb=302f73123da1194dd91b43138cd880cae9318a14;hp=de9323a36269ebc51656c75e1c771a1f169bb706;hpb=e2a4cefe59dd3e6e1b2fac2fb7232326bb2b0787;p=libs%2Fdatafile.git diff --git a/source/loader.cpp b/source/loader.cpp index de9323a..2bf90ee 100644 --- a/source/loader.cpp +++ b/source/loader.cpp @@ -1,11 +1,5 @@ -/* $Id$ - -This file is part of libmspdatafile -Copyright © 2006-2008, 2010 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include +#include +#include "dataerror.h" #include "loader.h" #include "type.h" @@ -13,6 +7,16 @@ using namespace std; namespace { +template +struct Set +{ + T &ref; + T orig; + + Set(T &r, const T &v): ref(r), orig(r) { r = v; } + ~Set() { ref = orig; } +}; + bool signature_match(char s, char a) { if(s==a) @@ -48,12 +52,34 @@ bool signature_match(const string &st_sig, const string &act_sig) } + namespace Msp { namespace DataFile { +class unknown_keyword: public runtime_error +{ +public: + unknown_keyword(const std::string &k): + runtime_error(k) + { } + + virtual ~unknown_keyword() throw() { } +}; + + +class invalid_signature: public runtime_error +{ +public: + invalid_signature(const std::string &k, const std::string & s): + runtime_error(format("%s %s", k, s)) + { } + + virtual ~invalid_signature() throw() { } +}; + + Loader::Loader(): cur_st(0), - allow_pointer_reload(true), check_sub_loads(false) { } @@ -83,7 +109,7 @@ void Loader::load(const Statement &st) void Loader::load_statement(const Statement &st) { - cur_st = &st; + Set set_cst(cur_st, &st); try { @@ -93,25 +119,23 @@ void Loader::load_statement(const Statement &st) sub_loaded = false; act->execute(*this, st); if(check_sub_loads && !st.sub.empty() && !sub_loaded) - throw Exception("Substatements were not loaded"); + throw logic_error("substatements ignored"); } } - catch(Exception &e) + catch(const data_error &) { - cur_st = 0; - if(!e.where()[0]) - e.at(st.get_location()); - throw; } - - cur_st = 0; + catch(const exception &e) + { + throw data_error(st.source, st.line, e); + } } void Loader::load_sub_with(Loader &ldr) { if(!cur_st) - throw InvalidState("load_sub called without current statement"); + throw logic_error("no current statement"); ldr.load(*cur_st); sub_loaded = true; @@ -119,7 +143,7 @@ void Loader::load_sub_with(Loader &ldr) void Loader::add(const string &kwd, LoaderAction *act) { - ActionKey key(kwd, act->get_signature()); + ActionKey key(kwd, (act ? act->get_signature() : "*")); ActionMap::iterator i = actions.find(key); if(i!=actions.end()) { @@ -136,13 +160,20 @@ LoaderAction *Loader::find_action(const ActionKey &key) const ActionMap::const_iterator end = actions.upper_bound(ActionKey(key.keyword, "~")); if(begin==end) - throw KeyError("Unknown keyword", key.keyword); + throw unknown_keyword(key.keyword); for(ActionMap::const_iterator i=begin; i!=end; ++i) if(signature_match(key.signature, i->first.signature)) return i->second; - throw KeyError(format("Keyword '%s' does not accept signature '%s'", key.keyword, key.signature)); + throw invalid_signature(key.keyword, key.signature); +} + +const string &Loader::get_source() const +{ + if(!cur_st) + throw logic_error("no current statement"); + return cur_st->source; }