1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/*
* Copyright (C) 2006 Justin Karneges
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
#include "processquit.h"
#ifndef NO_IRISNET
# include "irisnetglobal_p.h"
#endif
#ifdef QT_GUI_LIB
# include <QApplication>
#endif
#ifdef Q_OS_WIN
# include <windows.h>
#endif
#ifdef Q_OS_UNIX
# include <signal.h>
# include <unistd.h>
#endif
#ifndef NO_IRISNET
namespace XMPP {
#endif
Q_GLOBAL_STATIC(QMutex, pq_mutex)
static ProcessQuit *g_pq = 0;
inline bool is_gui_app()
{
#ifdef QT_GUI_LIB
return (QApplication::type() != QApplication::Tty);
#else
return false;
#endif
}
class ProcessQuit::Private : public QObject
{
Q_OBJECT
public:
ProcessQuit *q;
bool done;
#ifdef Q_OS_WIN
bool use_handler;
#endif
#ifdef Q_OS_UNIX
int sig_pipe[2];
QSocketNotifier *sig_notifier;
#endif
Private(ProcessQuit *_q) : QObject(_q), q(_q)
{
done = false;
#ifdef Q_OS_WIN
use_handler = !is_gui_app();
if(use_handler)
SetConsoleCtrlHandler((PHANDLER_ROUTINE)winHandler, TRUE);
#endif
#ifdef Q_OS_UNIX
pipe(sig_pipe);
sig_notifier = new QSocketNotifier(sig_pipe[0], QSocketNotifier::Read, this);
connect(sig_notifier, SIGNAL(activated(int)), SLOT(sig_activated(int)));
unixWatchAdd(SIGINT);
unixWatchAdd(SIGHUP);
unixWatchAdd(SIGTERM);
#endif
}
~Private()
{
#ifdef Q_OS_WIN
if(use_handler)
SetConsoleCtrlHandler((PHANDLER_ROUTINE)winHandler, FALSE);
#endif
#ifdef Q_OS_UNIX
unixWatchRemove(SIGINT);
unixWatchRemove(SIGHUP);
unixWatchRemove(SIGTERM);
delete sig_notifier;
close(sig_pipe[0]);
close(sig_pipe[1]);
#endif
}
#ifdef Q_OS_WIN
static BOOL winHandler(DWORD ctrlType)
{
Q_UNUSED(ctrlType);
QMetaObject::invokeMethod(g_pq->d, "ctrl_ready", Qt::QueuedConnection);
return TRUE;
}
#endif
#ifdef Q_OS_UNIX
static void unixHandler(int sig)
{
Q_UNUSED(sig);
unsigned char c = 0;
::write(g_pq->d->sig_pipe[1], &c, 1);
}
void unixWatchAdd(int sig)
{
struct sigaction sa;
sigaction(sig, NULL, &sa);
// if the signal is ignored, don't take it over. this is
// recommended by the glibc manual
if(sa.sa_handler == SIG_IGN)
return;
sigemptyset(&(sa.sa_mask));
sa.sa_flags = 0;
sa.sa_handler = unixHandler;
sigaction(sig, &sa, 0);
}
void unixWatchRemove(int sig)
{
struct sigaction sa;
sigaction(sig, NULL, &sa);
// ignored means we skipped it earlier, so we should
// skip it again
if(sa.sa_handler == SIG_IGN)
return;
sigemptyset(&(sa.sa_mask));
sa.sa_flags = 0;
sa.sa_handler = SIG_DFL;
sigaction(sig, &sa, 0);
}
#endif
public slots:
void ctrl_ready()
{
#ifdef Q_OS_WIN
do_emit();
#endif
}
void sig_activated(int)
{
#ifdef Q_OS_UNIX
unsigned char c;
::read(sig_pipe[0], &c, 1);
do_emit();
#endif
}
private:
void do_emit()
{
// only signal once
if(!done)
{
done = true;
emit q->quit();
}
}
};
ProcessQuit::ProcessQuit(QObject *parent)
:QObject(parent)
{
d = new Private(this);
}
ProcessQuit::~ProcessQuit()
{
delete d;
}
ProcessQuit *ProcessQuit::instance()
{
QMutexLocker locker(pq_mutex());
if(!g_pq)
{
g_pq = new ProcessQuit;
g_pq->moveToThread(QCoreApplication::instance()->thread());
#ifndef NO_IRISNET
irisNetAddPostRoutine(cleanup);
#endif
}
return g_pq;
}
void ProcessQuit::reset()
{
QMutexLocker locker(pq_mutex());
if(g_pq)
g_pq->d->done = false;
}
void ProcessQuit::cleanup()
{
delete g_pq;
g_pq = 0;
}
#ifndef NO_IRISNET
}
#endif
#include "processquit.moc"
|