summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-09-11 12:23:13 +0200
committerJohn Glover <j@johnglover.net>2012-09-11 12:23:13 +0200
commit1afaa87774ef8f3b8d29f085f1771c9593f887ec (patch)
tree953374458835e6aef72d2d4a1b899b6441357d7c /src
parenta2ce39b9c79cf5e3b63fba45fd314f44704cd3df (diff)
downloadsimpl-1afaa87774ef8f3b8d29f085f1771c9593f887ec.tar.gz
simpl-1afaa87774ef8f3b8d29f085f1771c9593f887ec.tar.bz2
simpl-1afaa87774ef8f3b8d29f085f1771c9593f887ec.zip
[exceptions] Remove unused Exception classes, add
exceptions.cpp to list of sources in Python extension.
Diffstat (limited to 'src')
-rw-r--r--src/simpl/exceptions.cpp39
-rw-r--r--src/simpl/exceptions.h272
2 files changed, 26 insertions, 285 deletions
diff --git a/src/simpl/exceptions.cpp b/src/simpl/exceptions.cpp
index 3e4ae53..9431bc0 100644
--- a/src/simpl/exceptions.cpp
+++ b/src/simpl/exceptions.cpp
@@ -1,42 +1,7 @@
#include "exceptions.h"
#include <string>
-namespace simpl {
+using namespace simpl;
-// ---------------------------------------------------------------------------
-// Exception constructor
-// ---------------------------------------------------------------------------
-//! Construct a new instance with the specified description and, optionally
-//! a string identifying the location at which the exception as thrown. The
-//! Throw(Exception_Class, description_string) macro generates a location
-//! string automatically using __FILE__ and __LINE__.
-//!
-//! \param str is a string describing the exceptional condition
-//! \param where is an option string describing the location in
-//! the source code from which the exception was thrown
-//! (generated automatically byt he Throw macro).
-//
-Exception::Exception(const std::string & str, const std::string & where) :
- _sbuf(str)
-{
- _sbuf.append(where);
- _sbuf.append(" ");
+Exception::Exception(const std::string & str) : _msg(str) {
}
-
-// ---------------------------------------------------------------------------
-// append
-// ---------------------------------------------------------------------------
-//! Append the specified string to this Exception's description,
-//! and return a reference to this Exception.
-//!
-//! \param str is text to append to the exception description
-//! \return a reference to this Exception.
-//
-Exception &
-Exception::append(const std::string & str)
-{
- _sbuf.append(str);
- return *this;
-}
-
-} // end of namespace Simpl
diff --git a/src/simpl/exceptions.h b/src/simpl/exceptions.h
index 0d247b2..3e9f961 100644
--- a/src/simpl/exceptions.h
+++ b/src/simpl/exceptions.h
@@ -1,266 +1,42 @@
#ifndef EXCEPTIONS_H
#define EXCEPTIONS_H
-//
-// Mostly taken from the LorisException.h file in Loris (http://www.cerlsoundgroup.org/loris)
#include <stdexcept>
#include <string>
-namespace simpl {
-
-// ---------------------------------------------------------------------------
-// class Exception
-//
-//! Exception is a generic exception class for reporting exceptional
-//! circumstances in Simpl. Exception is derived from std:exception,
-//! and is the base for a hierarchy of derived exception classes
-//! in Simpl.
-//!
-//
-class Exception : public std::exception
-{
-public:
- //! Construct a new instance with the specified description and, optionally
- //! a string identifying the location at which the exception as thrown. The
- //! Throw(Exception_Class, description_string) macro generates a location
- //! string automatically using __FILE__ and __LINE__.
- //!
- //! \param str is a string describing the exceptional condition
- //! \param where is an option string describing the location in
- //! the source code from which the exception was thrown
- //! (generated automatically by the Throw macro).
- Exception(const std::string & str, const std::string & where = "");
-
- //! Destroy this Exception.
- virtual ~Exception(void) throw() {}
-
- //! Return a description of this Exception in the form of a
- //! C-style string (char pointer). Overrides std::exception::what.
- //!
- //! \return a C-style string describing the exceptional condition.
- const char * what(void) const throw()
- {
- return _sbuf.c_str();
- }
-
- //! Append the specified string to this Exception's description,
- //! and return a reference to this Exception.
- //!
- //! \param str is text to append to the exception description
- //! \return a reference to this Exception.
- Exception & append(const std::string & str);
-
- //! Return a read-only refernce to this Exception's
- //! description string.
- //!
- //! \return a string describing the exceptional condition
- const std::string & str(void) const
- {
- return _sbuf;
- }
-
-protected:
- //! string for storing the exception description
- std::string _sbuf;
-
-};
-
-// ----------------------------------------------------------------------------
-// class AssertionFailure
-//
-//! Class of exceptions thrown when an assertion (usually representing an
-//! invariant condition, and usually detected by the Assert macro) is
-//! violated.
-//
-class AssertionFailure : public Exception
+namespace simpl
{
-public:
-
- //! Construct a new instance with the specified description and, optionally
- //! a string identifying the location at which the exception as thrown. The
- //! Throw(Exception_Class, description_string) macro generates a location
- //! string automatically using __FILE__ and __LINE__.
- //!
- //! \param str is a string describing the exceptional condition
- //! \param where is an option string describing the location in
- //! the source code from which the exception was thrown
- //! (generated automatically by the Throw macro).
- AssertionFailure(const std::string & str, const std::string & where = "") :
- Exception(std::string("Assertion failed -- ").append(str), where)
- {
- }
-
-};
// ---------------------------------------------------------------------------
-// class IndexOutOfBounds
-//
-//! Class of exceptions thrown when a subscriptable object is accessed
-//! with an index that is out of range.
+// Exception
//
-class IndexOutOfBounds : public Exception
-{
-public:
-
- //! Construct a new instance with the specified description and, optionally
- //! a string identifying the location at which the exception as thrown. The
- //! Throw(Exception_Class, description_string) macro generates a location
- //! string automatically using __FILE__ and __LINE__.
- //!
- //! \param str is a string describing the exceptional condition
- //! \param where is an option string describing the location in
- //! the source code from which the exception was thrown
- //! (generated automatically by the Throw macro).
- IndexOutOfBounds(const std::string & str, const std::string & where = "") :
- Exception(std::string("Index out of bounds -- ").append(str), where) {}
-
-};
+// Exception is derived from std:exception, and is the base for a hierarchy
+// of derived exception classes in Simpl.
+class Exception : public std::exception {
+ public:
+ // Construct a new instance with the specified description.
+ Exception(const std::string & str);
+ // Destroy this Exception.
+ virtual ~Exception(void) throw() {}
-// ---------------------------------------------------------------------------
-// class InvalidObject
-//
-//! Class of exceptions thrown when an object is found to be badly configured
-//! or otherwise invalid.
-//
-class InvalidObject : public Exception
-{
-public:
+ // Return a description of this Exception in the form of a
+ // C-style string (char pointer). Overrides std::exception::what.
+ const char * what(void) const throw() {
+ return _msg.c_str();
+ }
- //! Construct a new instance with the specified description and, optionally
- //! a string identifying the location at which the exception as thrown. The
- //! Throw(Exception_Class, description_string) macro generates a location
- //! string automatically using __FILE__ and __LINE__.
- //!
- //! \param str is a string describing the exceptional condition
- //! \param where is an option string describing the location in
- //! the source code from which the exception was thrown
- //! (generated automatically by the Throw macro).
- InvalidObject(const std::string & str, const std::string & where = "") :
- Exception(std::string("Invalid configuration or object -- ").append(str), where)
- {
- }
-
-};
-
-// ---------------------------------------------------------------------------
-// class InvalidIterator
-//
-//! Class of exceptions thrown when an Iterator is found to be badly configured
-//! or otherwise invalid.
-//
-class InvalidIterator : public InvalidObject
-{
-public:
+ // Return a read-only refernce to this Exception's
+ // description string.
+ const std::string & str(void) const {
+ return _msg;
+ }
- //! Construct a new instance with the specified description and, optionally
- //! a string identifying the location at which the exception as thrown. The
- //! Throw(Exception_Class, description_string) macro generates a location
- //! string automatically using __FILE__ and __LINE__.
- //!
- //! \param str is a string describing the exceptional condition
- //! \param where is an option string describing the location in
- //! the source code from which the exception was thrown
- //! (generated automatically by the Throw macro).
- InvalidIterator(const std::string & str, const std::string & where = "") :
- InvalidObject(std::string("Invalid Iterator -- ").append(str), where)
- {
- }
-
+ protected:
+ // string for storing the exception description
+ std::string _msg;
};
-// ---------------------------------------------------------------------------
-// class InvalidArgument
-//
-//! Class of exceptions thrown when a function argument is found to be invalid.
-//
-class InvalidArgument : public Exception
-{
-public:
-
- //! Construct a new instance with the specified description and, optionally
- //! a string identifying the location at which the exception as thrown. The
- //! Throw(Exception_Class, description_string) macro generates a location
- //! string automatically using __FILE__ and __LINE__.
- //!
- //! \param str is a string describing the exceptional condition
- //! \param where is an option string describing the location in
- //! the source code from which the exception was thrown
- //! (generated automatically by the Throw macro).
- InvalidArgument(const std::string & str, const std::string & where = "") :
- Exception(std::string("Invalid Argument -- ").append(str), where)
- {
- }
-
-};
-
-// ---------------------------------------------------------------------------
-// class RuntimeError
-//
-//! Class of exceptions thrown when an unanticipated runtime error is
-//! encountered.
-//
-class RuntimeError : public Exception
-{
-public:
-
- //! Construct a new instance with the specified description and, optionally
- //! a string identifying the location at which the exception as thrown. The
- //! Throw(Exception_Class, description_string) macro generates a location
- //! string automatically using __FILE__ and __LINE__.
- //!
- //! \param str is a string describing the exceptional condition
- //! \param where is an option string describing the location in
- //! the source code from which the exception was thrown
- //! (generated automatically by the Throw macro).
- RuntimeError(const std::string & str, const std::string & where = "") :
- Exception(std::string("Runtime Error -- ").append(str), where)
- {
- }
-
-};
-
-// ---------------------------------------------------------------------------
-// class FileIOException
-//
-//! Class of exceptions thrown when file input or output fails.
-//
-class FileIOException : public RuntimeError
-{
-public:
-
- //! Construct a new instance with the specified description and, optionally
- //! a string identifying the location at which the exception as thrown. The
- //! Throw(Exception_Class, description_string) macro generates a location
- //! string automatically using __FILE__ and __LINE__.
- //!
- //! \param str is a string describing the exceptional condition
- //! \param where is an option string describing the location in
- //! the source code from which the exception was thrown
- //! (generated automatically by the Throw macro).
- FileIOException(const std::string & str, const std::string & where = "") :
- RuntimeError(std::string("File i/o error -- ").append(str), where)
- {
- }
-
-};
-
-// ---------------------------------------------------------------------------
-// macros for throwing exceptions
-//
-// The compelling reason for using macros instead of inlines for all these
-// things is that the __FILE__ and __LINE__ macros will be useful.
-//
-#define __STR(x) __VAL(x)
-#define __VAL(x) #x
-#define Throw(exType, report) \
- throw exType(report, " (" __FILE__ " line: " __STR(__LINE__)") ")
-
-#define Assert(test) \
- do { \
- if (!(test)) Throw(Simpl::AssertionFailure, #test); \
- } while (false)
-
-} // end of namespace Simpl
+} // end of namespace simpl
#endif