KCrash Namespace

This namespace contains functions to handle crashes. More...

Header: #include <KCrash>
CMake: find_package(KF6 REQUIRED COMPONENTS Crash)
target_link_libraries(mytarget PRIVATE KF6::Crash)

Types

enum CrashFlag { KeepFDs, SaferDialog, AlwaysDirectly, AutoRestart }
flags CrashFlags
HandlerType

Functions

KCrash::HandlerType crashHandler()
void defaultCrashHandler(int signal)
KCrash::HandlerType emergencySaveFunction()
(since 5.15) void initialize()
(since 4.5) bool isDrKonqiEnabled()
void setCrashHandler(KCrash::HandlerType handler = defaultCrashHandler)
(since 4.5) void setDrKonqiEnabled(bool enabled)
void setEmergencySaveFunction(KCrash::HandlerType saveFunction = nullptr)
(since 6.11) void setErrorExtraData(const QHash<QString, QString> &details)
(since 5.69) void setErrorMessage(const QString &message)
(since 6.11) void setErrorTags(const QHash<QString, QString> &details)
void setFlags(KCrash::CrashFlags flags)
(since 6.11) void setGPUData(const QVariantHash &data)

Detailed Description

It allows you to set a crash handler function that will be called when your application crashes and also provides a default crash handler that implements the following functionality:

  • Launches the KDE crash display application (DrKonqi) to let the user report the bug and/or debug it.
  • Calls an emergency save function that you can set with setEmergencySaveFunction() to attempt to save the application's data.
  • Autorestarts your application.

Note: All the above features are optional and you need to enable them explicitly. By default, the defaultCrashHandler() will not do anything. However, if you are using KApplication, it will by default enable launching DrKonqi on crashes, unless the –nocrashhandler argument was passed on the command line or the environment variable KDE_DEBUG is set to any value.

Type Documentation

enum KCrash::CrashFlag
flags KCrash::CrashFlags

Options to determine how the default crash handler should behave.

ConstantValueDescription
KCrash::KeepFDs1Don't close all file descriptors immediately
KCrash::SaferDialog2Start DrKonqi without arbitrary disk access
KCrash::AlwaysDirectly4Never try to to start DrKonqi via kdeinit. Use fork() and exec() instead. This enum has been deprecated. This is now the default, and does not need to be set.
KCrash::AutoRestart (since 4.1)8autorestart this application. Only sensible for KUniqueApplications

The CrashFlags type is a typedef for QFlags<CrashFlag>. It stores an OR combination of CrashFlag values.

KCrash::HandlerType

Typedef for a pointer to a crash handler function. The function's argument is the number of the signal.

Function Documentation

KCrash::HandlerType KCrash::crashHandler()

Returns the installed crash handler.

See also setCrashHandler().

void KCrash::defaultCrashHandler(int signal)

The default crash handler. Do not call this function directly. Instead, use setCrashHandler() to set it as your application's crash handler.

signal the signal number

Note: If you implement your own crash handler, you will have to call this function from your implementation if you want to use the features of this namespace.

KCrash::HandlerType KCrash::emergencySaveFunction()

Returns the currently set emergency save function.

See also setEmergencySaveFunction().

[since 5.15] void KCrash::initialize()

Initialize KCrash.

This does nothing if $KDE_DEBUG is set.

Call this in your main() after setting up KAboutData to ensure that the crash handler is launched.

This function was introduced in 5.15.

[since 4.5] bool KCrash::isDrKonqiEnabled()

Returns true if DrKonqi is set to be launched from the crash handler or false otherwise.

This function was introduced in 4.5.

void KCrash::setCrashHandler(KCrash::HandlerType handler = defaultCrashHandler)

Install a function to be called when a crash occurs. A crash occurs when one of the following signals is caught: SIGSEGV, SIGBUS, SIGFPE, SIGILL, SIGABRT.

handler this can be one of:

  • null, in which case signal catching is disabled (by setting the signal handler for the crash signals to SIG_DFL)
  • a user defined function in the form: static (if in a class) void myCrashHandler(int);
  • if handler is omitted, the default crash handler is installed

Note: If you use setDrKonqiEnabled(true), setEmergencySaveFunction(myfunc) or setFlags(AutoRestart), you do not need to call this function explicitly. The default crash handler is automatically installed by those functions if needed. However, if you set a custom crash handler, those functions will not change it.

See also crashHandler().

[since 4.5] void KCrash::setDrKonqiEnabled(bool enabled)

Enables or disables launching DrKonqi from the crash handler. By default, launching DrKonqi is enabled when QCoreApplication is created. To disable it:

void disableDrKonqi()
{
  KCrash::setDrKonqiEnabled(false);
}
Q_CONSTRUCTOR_FUNCTION(disableDrKonqi)

Note: It is the crash handler's responsibility to launch DrKonqi. Therefore, if no crash handler is set, this method also installs the default crash handler to ensure that DrKonqi will be launched.

This function was introduced in 4.5.

See also isDrKonqiEnabled().

void KCrash::setEmergencySaveFunction(KCrash::HandlerType saveFunction = nullptr)

Installs a function which should try to save the application's data.

Note: It is the crash handler's responsibility to call this function. Therefore, if no crash handler is set, the default crash handler is installed to ensure the save function will be called.

saveFunction the handler to install

See also emergencySaveFunction().

[since 6.11] void KCrash::setErrorExtraData(const QHash<QString, QString> &details)

Sets the error details to be included in the crash report. These are rendered as extra blobs of data and can any form.

Note that these are subject to event ingestion limits and should be kept at reasonable sizes to prevent event rejection.

This function was introduced in 6.11.

[since 5.69] void KCrash::setErrorMessage(const QString &message)

Allows providing information to be included in the bug report. Prefer setErrorExtraInformation as it is more flexible.

This function was introduced in 5.69.

[since 6.11] void KCrash::setErrorTags(const QHash<QString, QString> &details)

Sets the error tags to be included in the crash report. These are rendered as tags in the crash reporting system.

Note that server-side limits apply to the length of these so you should only put short, sortable data in here.

This function was introduced in 6.11.

void KCrash::setFlags(KCrash::CrashFlags flags)

Set options to determine how the default crash handler should behave.

flags ORed together CrashFlags

[since 6.11] void KCrash::setGPUData(const QVariantHash &data)

Sets better GPU data.

By default KCrash will try to determine the GPU name, this may however not be accurate data. In particular on multi-gpu systems it may not be possible to determine whether the integrated or dedicated GPU is in use.

You should call this function once you know which GPU will be in use for application. This is a free form string.

Server-side limits may apply; keep it as short as possible.

At least 'name' should be set. Additional supported fields follow Sentry unless documented otherwise.

Supported fields are listed at https://develop.sentry.dev/sdk/data-model/event-payloads/contexts/#gpu-context

This function was introduced in 6.11.