2008-04-17 21:11:41 +00:00
|
|
|
/**
|
2010-08-07 11:42:27 +00:00
|
|
|
* \file lassert.cpp
|
2008-04-17 21:11:41 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2011-04-25 09:14:50 +00:00
|
|
|
* \author Peter Kümmel
|
2008-04-17 21:11:41 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "support/debug.h"
|
|
|
|
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
2011-04-25 09:14:50 +00:00
|
|
|
|
|
|
|
//#define LYX_CALLSTACK_PRINTING
|
|
|
|
// must be linked with -rdynamic
|
|
|
|
#ifdef LYX_CALLSTACK_PRINTING
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <execinfo.h>
|
|
|
|
#include <cxxabi.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-04-17 21:11:41 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
void doAssert(char const * expr, char const * file, long line)
|
|
|
|
{
|
2011-04-25 09:14:50 +00:00
|
|
|
// TODO Should we try to print the call stack before exiting?
|
|
|
|
|
2008-04-17 21:11:41 +00:00
|
|
|
LYXERR0("ASSERTION " << expr << " VIOLATED IN " << file << ":" << line);
|
|
|
|
// comment this out if not needed
|
|
|
|
BOOST_ASSERT(false);
|
|
|
|
}
|
|
|
|
|
2011-04-25 09:14:50 +00:00
|
|
|
|
|
|
|
//TODO Return as string, so call stack could be used in dialogs.
|
|
|
|
void printCallStack()
|
|
|
|
{
|
|
|
|
#ifdef LYX_CALLSTACK_PRINTING
|
|
|
|
const int depth = 50;
|
|
|
|
|
|
|
|
// get void*'s for all entries on the stack
|
|
|
|
void* array[depth];
|
|
|
|
size_t size = backtrace(array, depth);
|
|
|
|
|
|
|
|
char** messages = backtrace_symbols(array, size);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < size && messages != NULL; i++) {
|
|
|
|
std::string orig(messages[i]);
|
|
|
|
// extract mangled: bin/lyx2.0(_ZN3lyx7support7packageEv+0x32) [0x8a2e02b]
|
|
|
|
char* mangled = 0;
|
|
|
|
for (char *p = messages[i]; *p; ++p) {
|
|
|
|
if (*p == '(') {
|
|
|
|
*p = 0;
|
|
|
|
mangled = p + 1;
|
|
|
|
} else if (*p == '+') {
|
|
|
|
*p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int err = 0;
|
|
|
|
char* demangled = abi::__cxa_demangle(mangled, 0, 0, &err);
|
|
|
|
if (err == 0) {
|
|
|
|
fprintf(stderr, "[bt]: (%d) %s %s\n", i, messages[i], demangled);
|
|
|
|
free((void*)demangled);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "[bt]: (%d) %s\n", i, orig.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-04-17 21:11:41 +00:00
|
|
|
} // namespace lyx
|