QT中的程序终止回调?

时间:2013-06-13 17:17:05

标签: c++ qt

我想在程序终止时将数据转储到文件中,无论是“Ctrl-C”还是Linux中的其他方法。

不确定如何捕获程序关闭或终止事件?

3 个答案:

答案 0 :(得分:1)

您需要处理Linux风格的信号。注意 - 如果您尝试跨平台,这将无法在Windows或Mac上运行。

请参阅Qt文章Calling Qt Functions From Unix Signal Handlers

以下是从文章中提取的最小设置示例:

class MyDaemon : public QObject
{
    ...
public:
    static void hupSignalHandler(int unused);

public slots:
    void handleSigHup();

private:
    static int sighupFd[2];

    QSocketNotifier *snHup;
};

MyDaemon::MyDaemon(...)
{
    if (::socketpair(AF_UNIX, SOCK_STREAM, 0, sighupFd))
       qFatal("Couldn't create HUP socketpair");
    snHup = new QSocketNotifier(sighupFd[1], QSocketNotifier::Read, this);
    connect(snHup, SIGNAL(activated(int)), this, SLOT(handleSigHup()));
}

static int setup_unix_signal_handlers()
{
    struct sigaction hup;
    hup.sa_handler = MyDaemon::hupSignalHandler;
    sigemptyset(&hup.sa_mask);
    hup.sa_flags = 0;
    hup.sa_flags |= SA_RESTART;
    if (sigaction(SIGHUP, &hup, 0) > 0)
       return 1;
    return 0;
}

void MyDaemon::hupSignalHandler(int)
{
    char a = 1;
    ::write(sighupFd[0], &a, sizeof(a));
}

void MyDaemon::handleSigHup()
{
    snHup->setEnabled(false);
    char tmp;
    ::read(sighupFd[1], &tmp, sizeof(tmp));

    // do Qt stuff

    snHup->setEnabled(true);
}

答案 1 :(得分:1)

好像您正在尝试捕获系统信号。如果是,请参阅here

答案 2 :(得分:1)

QCoreApplication (以及 QApplication )的信号 aboutToQuit()将在应用程序即将退出主事件时发出环。将它连接到一个转储数据的插槽,你应该没问题。