24 #ifndef _EXCEPTION_HPP_
25 #define _EXCEPTION_HPP_
42 public:
user_error(
const std::string& what) : std::runtime_error(what) {}
58 extern "C" __declspec(dllimport) unsigned
int __stdcall SetErrorMode(
unsigned int uMode);
62 inline std::string narrow(
const std::wstring& str)
64 std::ostringstream oss;
65 const std::ctype<wchar_t>& ctfacet = std::use_facet< std::ctype<wchar_t> >(oss.getloc());
66 for (
size_t i=0; i < str.size(); ++i)
67 oss << ctfacet.narrow(str[i], 0);
71 inline int CrtReportHook(
int reportType,
char *message,
int *returnValue)
73 throw std::runtime_error(message);
76 inline int CrtReportHookW(
int reportType,
wchar_t *message,
int *returnValue)
78 throw std::runtime_error(narrow(message));
87 SetErrorMode(SetErrorMode(0) | 0x0002);
88 _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE);
89 _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);
90 _CrtSetReportHook2(_CRT_RPTHOOK_INSTALL, &CrtReportHook);
91 _CrtSetReportHookW2(_CRT_RPTHOOK_INSTALL, &CrtReportHookW);
96 _CrtSetReportHook2(_CRT_RPTHOOK_REMOVE, &CrtReportHook);
97 _CrtSetReportHookW2(_CRT_RPTHOOK_REMOVE, &CrtReportHookW);
100 static ReportHooker reportHooker;
106 #define BOOST_ENABLE_ASSERT_HANDLER
110 inline void assertion_failed(
char const * expr,
char const *
function,
char const * file,
long line)
112 std::ostringstream oss;
113 oss <<
"[" << file <<
":" << line <<
"] Assertion failed: " << expr;
114 throw std::runtime_error(oss.str());
117 inline void assertion_failed_msg(
char const * expr,
char const * msg,
char const *
function,
char const * file,
long line)
119 std::ostringstream oss;
120 oss <<
"[" << file <<
":" << line <<
"] Assertion failed: " << expr <<
" (" << msg <<
")";
121 throw std::runtime_error(oss.str());
124 #endif // !defined(NDEBUG)
127 #endif // _EXCEPTION_HPP_