我想在程序终止时将数据转储到文件中,无论是“Ctrl-C”还是Linux中的其他方式。
不确定如何捕获程序关闭或终止事件?
看起来好像您正在尝试捕获系统信号。如果是这样,请看这里
您需要处理 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);
}
QCoreApplication(因此QApplication)有一个aboutToQuit()信号,当应用程序即将退出主事件循环时将发出该信号。将它连接到转储数据的插槽,你应该没问题。