2014-01-17 13:55:04 +00:00
|
|
|
|
|
|
|
#include <sys/socket.h>
|
2014-01-17 22:06:47 +00:00
|
|
|
#include <unistd.h>
|
2014-01-17 13:55:04 +00:00
|
|
|
#include <signal.h>
|
|
|
|
|
2014-01-17 22:06:47 +00:00
|
|
|
#include <QApplication>
|
2014-01-17 13:55:04 +00:00
|
|
|
#include <QSocketNotifier>
|
|
|
|
|
|
|
|
#include "daemon.h"
|
|
|
|
|
|
|
|
static int sigtermfd[2];
|
|
|
|
const static char deadbeef = 1;
|
|
|
|
struct sigaction action;
|
|
|
|
|
|
|
|
void sighandler(int signum)
|
|
|
|
{
|
|
|
|
if( signum == SIGTERM || signum == SIGINT)
|
|
|
|
{
|
|
|
|
ssize_t unused = ::write(sigtermfd[0], &deadbeef, sizeof(deadbeef));
|
|
|
|
Q_UNUSED(unused);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void initializeTermHandlers(QCoreApplication* app)
|
|
|
|
{
|
|
|
|
::socketpair(AF_UNIX, SOCK_STREAM, 0, sigtermfd);
|
|
|
|
QSocketNotifier* snTerm = new QSocketNotifier(sigtermfd[1], QSocketNotifier::Read, app);
|
|
|
|
QObject::connect(snTerm, SIGNAL(activated(int)), app, SLOT(quit()));
|
|
|
|
|
|
|
|
action.sa_handler = sighandler;
|
|
|
|
sigemptyset(&action.sa_mask);
|
|
|
|
action.sa_flags = 0;
|
|
|
|
|
|
|
|
sigaction(SIGTERM, &action, NULL);
|
|
|
|
sigaction(SIGINT, &action, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2014-01-17 22:06:47 +00:00
|
|
|
QApplication app(argc, argv);
|
2014-01-17 13:55:04 +00:00
|
|
|
|
|
|
|
initializeTermHandlers(&app);
|
|
|
|
new Daemon(&app);
|
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|