kakoune/src/assert.cc

59 lines
1.3 KiB
C++
Raw Normal View History

2011-09-09 21:24:18 +02:00
#include "assert.hh"
#include "backtrace.hh"
#include "buffer_utils.hh"
#include "exception.hh"
2012-10-17 17:01:08 +02:00
#if defined(__CYGWIN__)
#include <windows.h>
#endif
#include <sys/types.h>
#include <unistd.h>
#include <cstdlib>
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
{
assert_failed(String message)
: m_message(std::move(message)) {}
2011-09-09 21:24:18 +02:00
StringView what() const override { return m_message; }
2012-10-17 17:01:08 +02:00
private:
String m_message;
};
2011-09-09 21:24:18 +02:00
2016-02-29 23:15:36 +01:00
bool notify_fatal_error(StringView msg)
{
#if defined(__CYGWIN__)
2016-02-29 23:15:36 +01:00
int res = MessageBox(NULL, msg.zstr(), "Kakoune: fatal error",
MB_OKCANCEL | MB_ICONERROR);
switch (res)
{
case IDCANCEL:
return false;
case IDOK:
return true;
}
2015-05-27 19:45:48 +02:00
#elif defined(__linux__)
auto cmd = format("xmessage -buttons 'quit:0,ignore:1' '{}'", msg);
if (system(cmd.c_str()) == 1)
return true;
#endif
return false;
}
void on_assert_failed(const char* message)
{
2015-05-29 14:35:54 +02:00
String debug_info = format("pid: {}\ncallstack:\n{}", getpid(), Backtrace{}.desc());
write_to_debug_buffer(format("assert failed: '{}'\n{}", message, debug_info));
const auto msg = format("{}\n[Debug Infos]\n{}", message, debug_info);
if (not notify_fatal_error(msg))
throw assert_failed(msg);
}
2011-09-09 21:24:18 +02:00
}