]> git.lyx.org Git - features.git/commitdiff
On Linux show in crash message box the backtrace
authorPeter Kümmel <syntheticpp@gmx.net>
Sat, 7 Jun 2014 09:12:31 +0000 (11:12 +0200)
committerPeter Kümmel <kuemmel@lyx.org>
Sat, 14 Jun 2014 09:25:25 +0000 (11:25 +0200)
src/LyX.cpp
src/frontends/alert.h
src/frontends/qt4/GuiAlert.cpp
src/frontends/qt4/GuiProgress.cpp
src/frontends/qt4/GuiProgress.h
src/support/CMakeLists.txt
src/support/ProgressInterface.h
src/support/Systemcall.cpp
src/support/lassert.cpp
src/support/lassert.h

index b7848311b85a6a10450572285cab072a7bcf0f94..98c57059176896c81a9d0d30e55b9d8f07d585e2 100644 (file)
@@ -667,7 +667,7 @@ static void error_handler(int err_sig)
        if (!msg.empty()) {
                lyxerr << "\nlyx: " << msg << endl;
                // try to make a GUI message
-               Alert::error(_("LyX crashed!"), msg);
+               Alert::error(_("LyX crashed!"), msg, true);
        }
 
        // Deinstall the signal handlers
index 4f052342974b9e48d1646214b208a06daaf6c4a9..b96ca1e1d876740672061b6a63538945940160a5 100644 (file)
@@ -48,8 +48,9 @@ void warning(docstring const & title, docstring const & message,
 /**
  * Display a warning to the user. Title should be a short (general) summary.
  * Only use this if the user cannot perform some remedial action.
+ * On some systems it is possible to show a backtrace.
  */
-void error(docstring const & title, docstring const & message);
+void error(docstring const & title, docstring const & message, bool backtrace = false);
 
 /**
  * Informational message. Use very very sparingly. That is, you must
index 4e9a8e4c2a6055229c4d331b65b394311125ca13..14cce933e478bef4548b202a94c30b01071c5c41 100644 (file)
@@ -24,6 +24,7 @@
 #include "support/debug.h"
 #include "support/docstring.h"
 #include "support/lstrings.h"
+#include "support/lassert.h"
 #include "support/ProgressInterface.h"
 
 #include <QApplication>
@@ -197,12 +198,17 @@ void warning(docstring const & title0, docstring const & message,
                                title0, message, askshowagain);
 }
 
-void doError(docstring const & title0, docstring const & message)
+void doError(docstring const & title0, docstring const & message, bool backtrace)
 {
        lyxerr << "Error: " << title0 << '\n'
               << "----------------------------------------\n"
               << message << endl;
 
+       QString details;
+       if (backtrace) {
+               details = QString::fromLocal8Bit(to_local8bit(printCallStack()).c_str());
+       }
+
        if (!use_gui)
                return;
 
@@ -223,7 +229,8 @@ void doError(docstring const & title0, docstring const & message)
 
        ProgressInterface::instance()->error(
                toqstr(title),
-               toqstr(message));
+               toqstr(message),
+               details);
 
        qApp->restoreOverrideCursor();
 
@@ -231,14 +238,14 @@ void doError(docstring const & title0, docstring const & message)
                theApp()->startLongOperation();
 }
 
-void error(docstring const & title0, docstring const & message)
+void error(docstring const & title0, docstring const & message, bool backtrace)
 {
 #ifdef EXPORT_in_THREAD
        InGuiThread<void>().call(&doError, 
 #else
        doError(
 #endif
-                               title0, message);
+                               title0, message, backtrace);
 }
 
 void doInformation(docstring const & title0, docstring const & message)
index ab8c6bd3cfb470284913784acc148ac2ebc765a5..a44438d4893087387079d420ea62d4cb71d9f66a 100644 (file)
@@ -56,8 +56,8 @@ GuiProgress::GuiProgress()
                SLOT(doWarning(QString const &, QString const &)));
        connect(this, SIGNAL(toggleWarning(QString const &, QString const &, QString const &)),
                SLOT(doToggleWarning(QString const &, QString const &, QString const &)));
-       connect(this, SIGNAL(error(QString const &, QString const &)),
-               SLOT(doError(QString const &, QString const &)));
+       connect(this, SIGNAL(error(QString const &, QString const &, QString const &)),
+               SLOT(doError(QString const &, QString const &, QString const &)));
        connect(this, SIGNAL(information(QString const &, QString const &)),
                SLOT(doInformation(QString const &, QString const &)));
        connect(this, SIGNAL(triggerFlush()),
@@ -183,9 +183,13 @@ void GuiProgress::doToggleWarning(QString const & title, QString const & msg, QS
 }
 
 
-void GuiProgress::doError(QString const & title, QString const & message)
+void GuiProgress::doError(QString const & title, QString const & message, QString const & details)
 {
-       QMessageBox::critical(qApp->focusWidget(), title, message);
+       QMessageBox box(QMessageBox::Critical, title, message, QMessageBox::Ok, qApp->focusWidget());
+       if (!details.isEmpty()) {
+               box.setDetailedText(details);
+       }
+       box.exec();
 }
 
 
index 9bb8b23034f3a779220f5e8592514c23a9f2aef0..80ab47a5580e1b22d14cd924a76302b44a622d37 100644 (file)
@@ -62,7 +62,7 @@ Q_SIGNALS:
        // Alert interface
        void warning(QString const & title, QString const & message);
        void toggleWarning(QString const & title, QString const & msg, QString const & formatted);
-       void error(QString const & title, QString const & message);
+       void error(QString const & title, QString const & message, QString const & details = QString());
        void information(QString const & title, QString const & message);
 
 private Q_SLOTS:
@@ -74,7 +74,7 @@ private Q_SLOTS:
 
        void doWarning(QString const &, QString const &);
        void doToggleWarning(QString const & title, QString const & msg, QString const & formatted);
-       void doError(QString const &, QString const &);
+       void doError(QString const &, QString const &, QString const &);
        void doInformation(QString const &, QString const &);
 
        void updateWithLyXErr();
index b0d1c6db202f58ca12a57dadf6b69f42632b195d..4a018e8cce8944396d3874a07133fed8dd1133e6 100644 (file)
@@ -41,6 +41,10 @@ else()
        set(support_linkback_headers "")
 endif()
 
+if(UNIX AND CMAKE_COMPILER_IS_GNUCC AND NOT APPLE)
+       add_definitions(-DLYX_CALLSTACK_PRINTING)
+endif()
+
 add_subdirectory(tests)
 
 # needed to compile tex2lyx in merged mode
index 1efb79a7e3b6296875311eea692fb27b82175218..4a9a1edb68ac8c7e60a8a9f962d35a8f857a7591 100644 (file)
@@ -36,7 +36,7 @@ public:
        /// Alert interface
        virtual void warning(QString const & title, QString const & message) = 0;
        virtual void toggleWarning(QString const & title, QString const & msg, QString const & formatted) = 0;
-       virtual void error(QString const & title, QString const & message) = 0;
+       virtual void error(QString const & title, QString const & message, QString const & details) = 0;
        virtual void information(QString const & title, QString const & message) = 0;
        virtual int prompt(docstring const & title, docstring const & question,
                           int default_button, int cancel_button,
index dc76b3d44c13c31e0a768b06be8739c1c381fc3b..467f04bd8409db36c1f5fc60780082eb964bab1a 100644 (file)
@@ -71,7 +71,7 @@ public:
 
        void warning(QString const &, QString const &) {}
        void toggleWarning(QString const &, QString const &, QString const &) {}
-       void error(QString const &, QString const &) {}
+       void error(QString const &, QString const &, QString const &) {}
        void information(QString const &, QString const &) {}
        int prompt(docstring const &, docstring const &, int default_but, int,
                   docstring const &, docstring const &) { return default_but; }
index 02e64bf7bf681ec9fc84e64d1d5ecb4980e583a1..281330e52c74ab6bdcd8fedfbc901220b9c3275c 100644 (file)
@@ -20,9 +20,8 @@
 
 #include <boost/assert.hpp>
 
+#include <QString>
 
-//#define LYX_CALLSTACK_PRINTING
-// must be linked with -rdynamic
 #ifdef LYX_CALLSTACK_PRINTING
 #include <cstdio>
 #include <cstdlib>
@@ -87,11 +86,12 @@ void doAppErr(char const * expr, char const * file, long line)
 }
 
 
-//TODO Return as string, so call stack could be used in dialogs.
-void printCallStack()
+docstring printCallStack()
 {
-#ifdef LYX_CALLSTACK_PRINTING
-       const int depth = 50;
+#ifndef LYX_CALLSTACK_PRINTING
+       return docstring();
+#else
+       const int depth = 200;
        
        // get void*'s for all entries on the stack
        void* array[depth];
@@ -99,9 +99,9 @@ void printCallStack()
        
        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]
+       docstring bt;
+       for (size_t i = 1; i < size && messages != NULL; i++) {
+               const std::string orig(messages[i]);
                char* mangled = 0;
                for (char *p = messages[i]; *p; ++p) {
                        if (*p == '(') {
@@ -112,15 +112,16 @@ void printCallStack()
                                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());
-               }               
+               int status = 0;
+               const char* demangled = abi::__cxa_demangle(mangled, 0, 0, &status);
+               const QByteArray line = QString("(%1) %2: %3\n").arg(i, 3).arg(messages[i])
+                                                               .arg(demangled ? demangled : orig.c_str()).toLocal8Bit();
+               free((void*)demangled);
+
+               fprintf(stderr, "%s", line.constData());
+               bt += from_local8bit(line.constData());
        }
+               return bt;
 #endif
 }
 
index 5e152e05bc810e16975396ef6ae21312531e9b53..f9328f3581e97e322e017746535ef61f502873cb 100644 (file)
@@ -66,7 +66,7 @@ void doBufErr(char const * expr, char const * file, long line);
 void doAppErr(char const * expr, char const * file, long line);
 
 /// Print demangled callstack to stderr
-void printCallStack();
+docstring printCallStack();
 
 
 } // namespace lyx