2015-03-01 20:42:39 +00:00
|
|
|
#ifndef IOEXCEPTION_HPP
|
|
|
|
#define IOEXCEPTION_HPP
|
2013-01-27 01:19:49 +00:00
|
|
|
|
2014-09-29 03:33:36 +00:00
|
|
|
#include "Athena/Exception.hpp"
|
2013-07-21 03:57:20 +00:00
|
|
|
|
|
|
|
|
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 IOException
|
|
|
|
* \brief An excpeption thrown on inappropriate IO calls.
|
|
|
|
*
|
|
|
|
* This should only be thrown when the library tries to write to a buffer
|
|
|
|
* e.g when the position is greater than the position and the stream
|
|
|
|
* is not set to autoresize.<br />
|
|
|
|
* <br />
|
|
|
|
* It is <b>NOT</b> appropriate to use <b>throw new</b> so avoid doing so,
|
|
|
|
* keeping things on the stack as much as possible is very important for speed.
|
2013-07-21 03:57:20 +00:00
|
|
|
*/
|
|
|
|
class IOException : public Exception
|
|
|
|
{
|
2013-01-27 01:19:49 +00:00
|
|
|
public:
|
|
|
|
/*! \brief The constructor for an IOException
|
|
|
|
* \param message The error message to throw
|
2013-07-21 03:57:20 +00:00
|
|
|
*/
|
2014-04-20 09:14:15 +00:00
|
|
|
inline IOException(const std::string& message, const std::string& file, const std::string& function, const int line) :
|
|
|
|
Exception(message, file, function, line)
|
2015-05-18 23:28:17 +00:00
|
|
|
{
|
|
|
|
m_exceptionName = "IOException";
|
|
|
|
}
|
2013-07-21 03:57:20 +00:00
|
|
|
};
|
|
|
|
|
2013-07-21 07:49:07 +00:00
|
|
|
} // error
|
2014-04-20 09:14:15 +00:00
|
|
|
} // Athena
|
2014-03-22 02:27:29 +00:00
|
|
|
|
2014-12-29 04:46:43 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define THROW_IO_EXCEPTION(args, ...) \
|
|
|
|
do { \
|
2015-05-18 23:28:17 +00:00
|
|
|
if (atGetExceptionHandler()) {atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, __VA_ARGS__); return; \
|
|
|
|
} else {
|
2015-05-19 03:24:56 +00:00
|
|
|
std::string msg = Athena::utility::sprintf(args, __VA_ARGS__);
|
|
|
|
\
|
|
|
|
throw Athena::error::IOException(std::string("IOException: ") + msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__);
|
|
|
|
\
|
|
|
|
} \
|
|
|
|
|
|
|
|
} while (0)
|
2014-12-29 04:46:43 +00:00
|
|
|
#elif defined(__GNUC__)
|
2014-05-31 00:40:35 +00:00
|
|
|
#define THROW_IO_EXCEPTION(args...) \
|
|
|
|
do { \
|
2015-05-18 23:28:17 +00:00
|
|
|
if (atGetExceptionHandler()) {atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, args); return; \
|
|
|
|
} else { std::string msg = Athena::utility::sprintf(args); \
|
|
|
|
throw Athena::error::IOException(msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define THROW_IO_EXCEPTION_RETURN(ret, args, ...) \
|
|
|
|
do { \
|
|
|
|
if (atGetExceptionHandler()) {atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, __VA_ARGS__); return ret; \
|
|
|
|
} else {
|
2015-05-19 03:24:56 +00:00
|
|
|
std::string msg = Athena::utility::sprintf(args, __VA_ARGS__);
|
|
|
|
|
|
|
|
\
|
|
|
|
throw Athena::error::IOException(std::string("IOException: ") + msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__);
|
|
|
|
\
|
|
|
|
} \
|
|
|
|
|
|
|
|
} while (0)
|
2015-05-18 23:28:17 +00:00
|
|
|
#elif defined(__GNUC__)
|
|
|
|
#define THROW_IO_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::IOException(msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
|
|
|
} \
|
2014-05-31 00:40:35 +00:00
|
|
|
} while(0)
|
2013-07-21 03:57:20 +00:00
|
|
|
#endif
|
2015-03-01 20:42:39 +00:00
|
|
|
|
|
|
|
#endif // IOEXCEPTION_HPP
|