kakoune/src/assert.cc

56 lines
1.1 KiB
C++
Raw Normal View History

2011-09-09 21:24:18 +02:00
#include "assert.hh"
2012-10-17 17:01:08 +02:00
#include "exception.hh"
#include "debug.hh"
2012-10-17 17:01:08 +02:00
#if defined(__CYGWIN__)
#include <windows.h>
#endif
#include <sys/types.h>
#include <unistd.h>
2011-09-09 21:24:18 +02:00
namespace Kakoune
{
2012-10-17 17:01:08 +02:00
struct assert_failed : logic_error
2011-09-09 21:24:18 +02:00
{
2012-10-17 17:01:08 +02:00
assert_failed(const String& message)
: m_message(message) {}
2011-09-09 21:24:18 +02:00
const char* what() const override { return m_message.c_str(); }
2012-10-17 17:01:08 +02:00
private:
String m_message;
};
2011-09-09 21:24:18 +02:00
2012-10-17 17:01:08 +02:00
void on_assert_failed(const char* message)
{
2013-05-13 14:23:07 +02:00
String debug_info = "pid: " + to_string(getpid());
write_debug("assert failed: '"_str + message + "' " + debug_info);
const auto msg = message + "\n[Debug Infos]\n"_str + debug_info;
#if defined(__CYGWIN__)
int res = MessageBox(NULL, msg.c_str(), "Kakoune: assert failed",
MB_OKCANCEL | MB_ICONERROR);
switch (res)
{
case IDCANCEL:
throw assert_failed(message);
case IDOK:
return;
}
#else
int res = system(("xmessage -buttons 'quit:0,ignore:1' '" + msg + "'").c_str());
switch (res)
{
case -1:
case 0:
throw assert_failed(message);
case 1:
return;
}
#endif
}
2011-09-09 21:24:18 +02:00
}