2011-09-09 21:24:18 +02:00
|
|
|
#include "assert.hh"
|
|
|
|
|
2012-10-17 17:01:08 +02:00
|
|
|
#include "exception.hh"
|
|
|
|
|
2013-01-23 13:45:44 +01:00
|
|
|
#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
|
|
|
|
2013-04-11 13:57:35 +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)
|
2012-10-16 16:16:32 +02:00
|
|
|
{
|
2013-05-13 14:23:07 +02:00
|
|
|
String debug_info = "pid: " + to_string(getpid());
|
2013-01-23 13:45:44 +01:00
|
|
|
int res = system(("xmessage -buttons 'quit:0,ignore:1' '"_str +
|
|
|
|
message + "\n[Debug Infos]\n" + debug_info + "'").c_str());
|
2012-10-16 16:16:32 +02:00
|
|
|
switch (res)
|
|
|
|
{
|
2012-10-19 03:53:10 +02:00
|
|
|
case -1:
|
|
|
|
case 0:
|
2012-10-16 16:16:32 +02:00
|
|
|
throw assert_failed(message);
|
|
|
|
case 1:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-09 21:24:18 +02:00
|
|
|
}
|