]> git.tdb.fi Git - libs/datafile.git/commitdiff
Move all exception classes to a common header
authorMikko Rasa <tdb@tdb.fi>
Fri, 2 Sep 2016 11:41:49 +0000 (14:41 +0300)
committerMikko Rasa <tdb@tdb.fi>
Fri, 2 Sep 2016 11:41:49 +0000 (14:41 +0300)
source/binaryparser.cpp
source/dataerror.cpp [deleted file]
source/dataerror.h [deleted file]
source/except.cpp [new file with mode: 0644]
source/except.h [new file with mode: 0644]
source/loader.cpp
source/parser.cpp
source/textparser.cpp

index e2ced82098e7b1472944dd4a2b626bef32211459..4ed2877a4424c2389c890473a0e71918418516ba 100644 (file)
@@ -5,6 +5,7 @@
 #include "argumentstore.h"
 #include "binaryparser.h"
 #include "binfloat.h"
+#include "except.h"
 #include "input.h"
 #include "loaderaction.h"
 
@@ -13,27 +14,6 @@ using namespace std;
 namespace Msp {
 namespace DataFile {
 
-class bad_definition: public runtime_error
-{
-public:
-       bad_definition(const std::string &w):
-               runtime_error(w)
-       { }
-
-       virtual ~bad_definition() throw() { }
-};
-
-class nesting_error: public logic_error
-{
-public:
-       nesting_error(const std::string &w):
-               logic_error(w)
-       { }
-
-       virtual ~nesting_error() throw() { }
-};
-
-
 BinaryParser::BinaryParser(Input &i, const string &s):
        ParserMode(i, s),
        float_precision(32),
diff --git a/source/dataerror.cpp b/source/dataerror.cpp
deleted file mode 100644 (file)
index b21b84f..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#include <typeinfo>
-#include <msp/debug/demangle.h>
-#include <msp/strings/format.h>
-#include "dataerror.h"
-
-using namespace std;
-
-namespace Msp {
-namespace DataFile {
-
-data_error::data_error(const string &s, unsigned l, const string &w):
-       runtime_error(make_what(s, l, w)),
-       source(s),
-       line(l)
-{ }
-
-data_error::data_error(const string &s, unsigned l, const exception &e):
-       runtime_error(make_what(s, l, format("%s (%s)", Debug::demangle(typeid(e).name()), e.what()))),
-       source(s),
-       line(l)
-{ }
-
-string data_error::make_what(const string &s, unsigned l, const string &w)
-{
-       if(l)
-               return format("%s:%d: %s", s, l, w);
-       else
-               return format("%s: %s", s, w);
-}
-
-} // namespace DataFile
-} // namespace Msp
diff --git a/source/dataerror.h b/source/dataerror.h
deleted file mode 100644 (file)
index 5fca0c3..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef MSP_DATAFILE_DATAERROR_H_
-#define MSP_DATAFILE_DATAERROR_H_
-
-#include <stdexcept>
-
-namespace Msp {
-namespace DataFile {
-
-class data_error: public std::runtime_error
-{
-private:
-       std::string source;
-       unsigned line;
-
-public:
-       data_error(const std::string &, unsigned, const std::string &);
-       data_error(const std::string &, unsigned, const std::exception &);
-       virtual ~data_error() throw() { }
-
-       const std::string &get_source() const { return source; }
-       unsigned get_line() const { return line; }
-
-private:
-       std::string make_what(const std::string &, unsigned, const std::string &);
-};
-
-} // namespace DataFile
-} // namespace Msp
-
-#endif
diff --git a/source/except.cpp b/source/except.cpp
new file mode 100644 (file)
index 0000000..eea692e
--- /dev/null
@@ -0,0 +1,52 @@
+#include <typeinfo>
+#include <msp/debug/demangle.h>
+#include <msp/strings/format.h>
+#include "except.h"
+
+using namespace std;
+
+namespace Msp {
+namespace DataFile {
+
+data_error::data_error(const string &s, unsigned l, const string &w):
+       runtime_error(make_what(s, l, w)),
+       source(s),
+       line(l)
+{ }
+
+data_error::data_error(const string &s, unsigned l, const exception &e):
+       runtime_error(make_what(s, l, format("%s (%s)", Debug::demangle(typeid(e).name()), e.what()))),
+       source(s),
+       line(l)
+{ }
+
+string data_error::make_what(const string &s, unsigned l, const string &w)
+{
+       if(l)
+               return format("%s:%d: %s", s, l, w);
+       else
+               return format("%s: %s", s, w);
+}
+
+
+parse_error::parse_error(const string &t):
+       runtime_error(t.empty() ? "at end of input" : format("after '%s'", t))
+{ }
+
+
+syntax_error::syntax_error(const string &t):
+       runtime_error(t.empty() ? "at end of input" : format("at '%s'", t))
+{ }
+
+
+bad_definition::bad_definition(const string &w):
+       runtime_error(w)
+{ }
+
+
+nesting_error::nesting_error(const string &w):
+       logic_error(w)
+{ }
+
+} // namespace DataFile
+} // namespace Msp
diff --git a/source/except.h b/source/except.h
new file mode 100644 (file)
index 0000000..e68ec48
--- /dev/null
@@ -0,0 +1,62 @@
+#ifndef MSP_DATAFILE_EXCEPT_H_
+#define MSP_DATAFILE_EXCEPT_H_
+
+#include <stdexcept>
+
+namespace Msp {
+namespace DataFile {
+
+class data_error: public std::runtime_error
+{
+private:
+       std::string source;
+       unsigned line;
+
+public:
+       data_error(const std::string &, unsigned, const std::string &);
+       data_error(const std::string &, unsigned, const std::exception &);
+       virtual ~data_error() throw() { }
+
+       const std::string &get_source() const { return source; }
+       unsigned get_line() const { return line; }
+
+private:
+       std::string make_what(const std::string &, unsigned, const std::string &);
+};
+
+
+class parse_error: public std::runtime_error
+{
+public:
+       parse_error(const std::string &);
+       virtual ~parse_error() throw() { }
+};
+
+
+class syntax_error: public std::runtime_error
+{
+public:
+       syntax_error(const std::string &t);
+       virtual ~syntax_error() throw() { }
+};
+
+
+class bad_definition: public std::runtime_error
+{
+public:
+       bad_definition(const std::string &w);
+       virtual ~bad_definition() throw() { }
+};
+
+
+class nesting_error: public std::logic_error
+{
+public:
+       nesting_error(const std::string &);
+       virtual ~nesting_error() throw() { }
+};
+
+} // namespace DataFile
+} // namespace Msp
+
+#endif
index 81370687ffd7e32f35a413359ac47d90d01c6c5a..4bc715aff01597c4164f19b206f5a31ae8db87fb 100644 (file)
@@ -1,6 +1,6 @@
 #include <msp/core/raii.h>
 #include <msp/strings/format.h>
-#include "dataerror.h"
+#include "except.h"
 #include "loader.h"
 #include "type.h"
 
index a9bbbf22fe8ccb52cf8a60ede5d914f581fdcf04..5972e2d98f832d312afa4373bfe66d4204d10f8f 100644 (file)
@@ -1,6 +1,6 @@
 #include <msp/strings/format.h>
 #include "binaryparser.h"
-#include "dataerror.h"
+#include "except.h"
 #include "parser.h"
 #include "statement.h"
 #include "textparser.h"
index 05521a90456a617e2e82b1fb664225d512a22af4..c87a32df666924e163ee83e8d53f06d7d181b2e3 100644 (file)
@@ -1,5 +1,6 @@
 #include <msp/strings/format.h>
 #include <msp/strings/utils.h>
+#include "except.h"
 #include "input.h"
 #include "textparser.h"
 #include "token.h"
@@ -9,28 +10,6 @@ using namespace std;
 namespace Msp {
 namespace DataFile {
 
-class parse_error: public runtime_error
-{
-public:
-       parse_error(const std::string &t):
-               runtime_error(t.empty() ? "at end of input" : format("after '%s'", t))
-       { }
-
-       virtual ~parse_error() throw() { }
-};
-
-
-class syntax_error: public runtime_error
-{
-public:
-       syntax_error(const std::string &t):
-               runtime_error(t.empty() ? "at end of input" : format("at '%s'", t))
-       { }
-
-       virtual ~syntax_error() throw() { }
-};
-
-
 TextParser::TextParser(Input &i, const string &s):
        ParserMode(i, s)
 { }