icinga2/lib/base/exception.hpp

131 lines
4.4 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
* *
* This program 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 2 *
* of the License, or (at your option) any later version. *
* *
* This program 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 this program; if not, write to the Free Software Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef EXCEPTION_H
#define EXCEPTION_H
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/string.hpp"
2014-05-25 16:23:35 +02:00
#include "base/stacktrace.hpp"
#include "base/context.hpp"
#include "base/utility.hpp"
#include "base/debuginfo.hpp"
2013-03-16 21:18:53 +01:00
#include <sstream>
2013-03-18 17:04:22 +01:00
#include <boost/exception/errinfo_api_function.hpp>
#include <boost/exception/errinfo_errno.hpp>
#include <boost/exception/errinfo_file_name.hpp>
#include <boost/exception/diagnostic_information.hpp>
#include <boost/exception_ptr.hpp>
2013-03-15 18:21:29 +01:00
2013-03-16 21:18:53 +01:00
#ifdef _WIN32
# include <boost/algorithm/string/trim.hpp>
#endif /* _WIN32 */
namespace icinga
{
class I2_BASE_API user_error : virtual public std::exception, virtual public boost::exception
{ };
/*
* @ingroup base
*/
class I2_BASE_API ScriptError : virtual public user_error
{
public:
ScriptError(const String& message);
ScriptError(const String& message, const DebugInfo& di, bool incompleteExpr = false);
~ScriptError(void) throw();
virtual const char *what(void) const throw();
DebugInfo GetDebugInfo(void) const;
bool IsIncompleteExpression(void) const;
private:
String m_Message;
DebugInfo m_DebugInfo;
bool m_IncompleteExpr;
};
I2_BASE_API StackTrace *GetLastExceptionStack(void);
I2_BASE_API void SetLastExceptionStack(const StackTrace& trace);
I2_BASE_API ContextTrace *GetLastExceptionContext(void);
I2_BASE_API void SetLastExceptionContext(const ContextTrace& context);
I2_BASE_API void RethrowUncaughtException(void);
typedef boost::error_info<StackTrace, StackTrace> StackTraceErrorInfo;
inline std::string to_string(const StackTraceErrorInfo& e)
{
return "";
}
typedef boost::error_info<ContextTrace, ContextTrace> ContextTraceErrorInfo;
inline std::string to_string(const ContextTraceErrorInfo& e)
{
std::ostringstream msgbuf;
msgbuf << "[Context] = " << e.value();
return msgbuf.str();
}
I2_BASE_API String DiagnosticInformation(const std::exception& ex, bool verbose = true, StackTrace *stack = NULL, ContextTrace *context = NULL);
I2_BASE_API String DiagnosticInformation(boost::exception_ptr eptr, bool verbose = true);
class I2_BASE_API posix_error : virtual public std::exception, virtual public boost::exception {
public:
posix_error(void);
virtual ~posix_error(void) throw();
virtual const char *what(void) const throw();
private:
mutable char *m_Message;
};
2012-05-18 22:21:28 +02:00
2012-04-22 16:45:31 +02:00
#ifdef _WIN32
2013-03-11 14:03:01 +01:00
class I2_BASE_API win32_error : virtual public std::exception, virtual public boost::exception { };
2013-03-18 17:04:22 +01:00
struct errinfo_win32_error_;
2013-03-11 13:45:08 +01:00
typedef boost::error_info<struct errinfo_win32_error_, int> errinfo_win32_error;
inline std::string to_string(const errinfo_win32_error& e)
2012-04-22 16:45:31 +02:00
{
return "[errinfo_win32_error] = " + Utility::FormatErrorNumber(e.value()) + "\n";
2013-03-11 13:45:08 +01:00
}
2012-04-22 16:45:31 +02:00
#endif /* _WIN32 */
struct errinfo_getaddrinfo_error_;
typedef boost::error_info<struct errinfo_getaddrinfo_error_, int> errinfo_getaddrinfo_error;
inline std::string to_string(const errinfo_getaddrinfo_error& e)
{
return "[errinfo_getaddrinfo_error] = " + String(gai_strerror(e.value())) + "\n";
}
struct errinfo_message_;
typedef boost::error_info<struct errinfo_message_, std::string> errinfo_message;
2012-04-16 16:27:41 +02:00
}
#endif /* EXCEPTION_H */