// This file is part of libAthena. // // libAthena is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // libAthena is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with libAthena. If not, see #ifndef IOEXCEPTION_HPP #define IOEXCEPTION_HPP #include "Athena/Exception.hpp" namespace Athena { namespace error { /*! \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.
*
* It is NOT appropriate to use throw new so avoid doing so, * keeping things on the stack as much as possible is very important for speed. */ class IOException : public Exception { public: /*! \brief The constructor for an IOException * \param message The error message to throw */ inline IOException(const std::string& message, const std::string& file, const std::string& function, const int line) : Exception(message, file, function, line) { m_exceptionName = "IOException"; } }; } // error } // Athena #ifdef _MSC_VER #define THROW_IO_EXCEPTION(args, ...) \ do { \ if (atGetExceptionHandler()) {atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, __VA_ARGS__); return; \ } else { std::string msg = Athena::utility::sprintf(args, __VA_ARGS__); \ throw Athena::error::IOException(std::string("IOException: ") + msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \ } \ } while (0) #elif defined(__GNUC__) #define THROW_IO_EXCEPTION(args...) \ do { \ 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 { std::string msg = Athena::utility::sprintf(args, __VA_ARGS__); \ throw Athena::error::IOException(std::string("IOException: ") + msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \ } \ } while (0) #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__); \ } \ } while(0) #endif #endif // IOEXCEPTION_HPP