]> git.tdb.fi Git - libs/datafile.git/commitdiff
Exception rework for loader components
authorMikko Rasa <tdb@tdb.fi>
Mon, 25 Jul 2011 14:28:18 +0000 (17:28 +0300)
committerMikko Rasa <tdb@tdb.fi>
Mon, 25 Jul 2011 14:28:18 +0000 (17:28 +0300)
source/loader.cpp
source/loader.h
source/loaderaction.h
source/objectloader.cpp [new file with mode: 0644]
source/objectloader.h

index 51cdabec478d812a23a8133f3716b77c58568163..2bf90ee1e5ec9436e9306a09a7917c8e25e32cdc 100644 (file)
@@ -1,4 +1,5 @@
 #include <msp/strings/format.h>
+#include "dataerror.h"
 #include "loader.h"
 #include "type.h"
 
@@ -6,6 +7,16 @@ using namespace std;
 
 namespace {
 
+template<typename T>
+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)
@@ -41,9 +52,32 @@ 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),
        check_sub_loads(false)
@@ -75,7 +109,7 @@ void Loader::load(const Statement &st)
 
 void Loader::load_statement(const Statement &st)
 {
-       cur_st = &st;
+       Set<const Statement *> set_cst(cur_st, &st);
 
        try
        {
@@ -85,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;
@@ -128,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;
 }
 
 
index 4ea7994e757f76476dda000f20c67fa44e21fee9..604886125614728c2552d486decfa01afa19c804 100644 (file)
@@ -3,7 +3,6 @@
 
 #include <map>
 #include <msp/io/file.h>
-#include "except.h"
 #include "loaderaction.h"
 #include "parser.h"
 #include "statement.h"
@@ -138,12 +137,7 @@ protected:
        /** 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("get_source called without current statement");
-               return cur_st->source;
-       }
+       const std::string &get_source() const;
 
        virtual void finish() { }
 };
index a6eb552e981e38f329ab626c34d2cae9c7afc504..5b2f0b0f022016cc97dbce52bb3d09aab7887bf0 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef MSP_DATAFILE_LOADERACTION_H_
 #define MSP_DATAFILE_LOADERACTION_H_
 
-#include "except.h"
 #include "statement.h"
 
 namespace Msp {
diff --git a/source/objectloader.cpp b/source/objectloader.cpp
new file mode 100644 (file)
index 0000000..6d59812
--- /dev/null
@@ -0,0 +1,14 @@
+#include <msp/debug/demangle.h>
+#include "objectloader.h"
+
+using namespace std;
+
+namespace Msp {
+namespace DataFile {
+
+no_collection::no_collection(const type_info &t):
+       runtime_error(Debug::demangle(t.name()))
+{ }
+
+} // namespace DataFile
+} // namespace Msp
index bab1ce5378f5bce344fd931d80061b6a67af9698..f1cb6ffe051c5f8405fa652a67d36b3001dee380 100644 (file)
@@ -1,11 +1,18 @@
 #ifndef MSP_DATAFILE_OBJECTLOADER_H_
 #define MSP_DATAFILE_OBJECTLOADER_H_
 
+#include <typeinfo>
 #include "loader.h"
 
 namespace Msp {
 namespace DataFile {
 
+class no_collection: public std::runtime_error
+{
+public:
+       no_collection(const std::type_info &);
+};
+
 class Collection;
 
 /**
@@ -47,7 +54,7 @@ public:
        C &get_collection() const
        {
                if(!coll)
-                       throw InvalidState("No collection");
+                       throw no_collection(typeid(O));
                return *coll;
        }
 };