2015-03-01 20:42:39 +00:00
|
|
|
#ifndef EXCEPTION_HPP
|
|
|
|
#define EXCEPTION_HPP
|
2013-01-29 21:46:05 +00:00
|
|
|
|
|
|
|
#include <string>
|
2014-05-31 00:40:35 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include "Athena/Utility.hpp"
|
2014-12-29 04:46:43 +00:00
|
|
|
#include "Athena/Global.hpp"
|
2013-01-27 01:19:49 +00:00
|
|
|
|
2014-02-27 05:46:26 +00:00
|
|
|
#define __STRX(x) #x
|
|
|
|
#define __STR(x) __STRX(x)
|
|
|
|
#define __LINE_STRING__ __STR(__LINE__)
|
|
|
|
|
2014-04-20 09:14:15 +00:00
|
|
|
namespace Athena
|
2013-07-21 03:57:20 +00:00
|
|
|
{
|
2013-07-21 07:49:07 +00:00
|
|
|
namespace error
|
|
|
|
{
|
2013-01-27 01:19:49 +00:00
|
|
|
/*! \class Exception
|
|
|
|
* \brief The baseclass for all Exceptions.
|
|
|
|
*
|
|
|
|
* <b>Do Not</b> use Exception directly, instead create an appropriate
|
|
|
|
* Exception class and inherit from this baseclass.
|
2013-01-29 21:46:05 +00:00
|
|
|
*/
|
|
|
|
class Exception
|
|
|
|
{
|
2013-01-27 01:19:49 +00:00
|
|
|
public:
|
|
|
|
/*! \brief The constructor for an Exception
|
|
|
|
* \param message The error message to throw
|
2013-01-29 21:46:05 +00:00
|
|
|
*/
|
2014-04-20 09:14:15 +00:00
|
|
|
inline Exception(const std::string& message, const std::string& file, const std::string& function, const int line) :
|
|
|
|
m_message(message),
|
|
|
|
m_file(file),
|
|
|
|
m_function(function),
|
2015-05-18 23:28:17 +00:00
|
|
|
m_line(line),
|
|
|
|
m_exceptionName("Exception")
|
2013-01-29 21:46:05 +00:00
|
|
|
{
|
2013-07-21 03:57:20 +00:00
|
|
|
}
|
2013-01-27 01:19:49 +00:00
|
|
|
|
|
|
|
/*! \brief Returns the Error message of the exception
|
|
|
|
* \return std::string The error message
|
2013-01-29 21:46:05 +00:00
|
|
|
*/
|
|
|
|
inline std::string message() const
|
|
|
|
{
|
2015-05-18 23:28:17 +00:00
|
|
|
return m_exceptionName + (m_message.empty() ? "" : ": " + m_message);
|
2013-07-21 03:57:20 +00:00
|
|
|
}
|
2014-04-20 09:14:15 +00:00
|
|
|
|
|
|
|
inline std::string file() const
|
|
|
|
{
|
|
|
|
return m_file;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::string function() const
|
|
|
|
{
|
|
|
|
return m_function;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int line() const
|
|
|
|
{
|
|
|
|
return m_line;
|
|
|
|
}
|
2015-05-01 04:16:18 +00:00
|
|
|
|
|
|
|
inline std::string formattedMessage() const
|
|
|
|
{
|
2015-05-18 23:28:17 +00:00
|
|
|
return Athena::utility::sprintf("%s : %s (%i) %s", m_file.c_str(), m_function.c_str(), m_line, message().c_str());
|
2015-05-01 04:16:18 +00:00
|
|
|
}
|
2013-01-29 21:46:05 +00:00
|
|
|
protected:
|
2013-07-21 03:57:20 +00:00
|
|
|
std::string m_message; //!< The error message string
|
2014-04-20 09:14:15 +00:00
|
|
|
std::string m_file;
|
|
|
|
std::string m_function;
|
|
|
|
int m_line;
|
2015-05-18 23:28:17 +00:00
|
|
|
std::string m_exceptionName;
|
2013-01-29 21:46:05 +00:00
|
|
|
};
|
2013-07-21 07:49:07 +00:00
|
|
|
} // error
|
2014-04-20 09:14:15 +00:00
|
|
|
} // Athena
|
2014-12-29 04:46:43 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define THROW_EXCEPTION(args,...) \
|
2015-05-18 23:28:17 +00:00
|
|
|
do { \
|
|
|
|
if (atGetExceptionHandler()) {atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, __VA_ARGS__); return; \
|
|
|
|
} else { std::string msg = Athena::utility::sprintf(__VA_ARGS__); \
|
2014-12-29 04:46:43 +00:00
|
|
|
throw Athena::error::Exception(std::string("Exception: ")+msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
2015-05-18 23:28:17 +00:00
|
|
|
} \
|
|
|
|
} while(0)
|
2014-12-29 04:46:43 +00:00
|
|
|
#elif defined(__GNUC__)
|
2014-05-31 00:40:35 +00:00
|
|
|
#define THROW_EXCEPTION(args...) \
|
2015-05-18 23:28:17 +00:00
|
|
|
do { \
|
|
|
|
if (atGetExceptionHandler()) { atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, args); return; \
|
|
|
|
} else { \
|
2014-05-31 00:40:35 +00:00
|
|
|
std::string msg = Athena::utility::sprintf(args); \
|
2015-05-18 23:28:17 +00:00
|
|
|
throw Athena::error::Exception(msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define THROW_EXCEPTION_RETURN(ret, args,...) \
|
|
|
|
do { \
|
|
|
|
if (atGetExceptionHandler()) \
|
|
|
|
{ \
|
|
|
|
atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, __VA_ARGS__); \
|
|
|
|
return ret; \
|
|
|
|
} else { \
|
|
|
|
std::string msg = Athena::utility::sprintf(__VA_ARGS__); \
|
2014-12-29 04:46:43 +00:00
|
|
|
throw Athena::error::Exception(std::string("Exception: ")+msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
2015-05-18 23:28:17 +00:00
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
#define THROW_EXCEPTION_RETURN(ret, args...) \
|
|
|
|
do { \
|
|
|
|
if (atGetExceptionHandler()) { atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, args); return ret; \
|
|
|
|
} else { \
|
|
|
|
std::string msg = Athena::utility::sprintf(args); \
|
|
|
|
throw Athena::error::Exception(msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
2014-12-29 04:46:43 +00:00
|
|
|
#endif
|
2014-02-27 05:46:26 +00:00
|
|
|
|
2015-03-01 20:42:39 +00:00
|
|
|
#endif // EXCEPTION_HPP
|