]> git.sur5r.net Git - minitube/blob - src/qtsingleapplication/qtlocalpeer.cpp
Imported Upstream version 2.0
[minitube] / src / qtsingleapplication / qtlocalpeer.cpp
1 /****************************************************************************
2 **
3 ** This file is part of a Qt Solutions component.
4 ** 
5 ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
6 ** 
7 ** Contact:  Qt Software Information (qt-info@nokia.com)
8 ** 
9 ** Commercial Usage  
10 ** Licensees holding valid Qt Commercial licenses may use this file in
11 ** accordance with the Qt Solutions Commercial License Agreement provided
12 ** with the Software or, alternatively, in accordance with the terms
13 ** contained in a written agreement between you and Nokia.
14 ** 
15 ** GNU Lesser General Public License Usage
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
17 ** General Public License version 2.1 as published by the Free Software
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
19 ** packaging of this file.  Please review the following information to
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22 ** 
23 ** In addition, as a special exception, Nokia gives you certain
24 ** additional rights. These rights are described in the Nokia Qt LGPL
25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26 ** package.
27 ** 
28 ** GNU General Public License Usage 
29 ** Alternatively, this file may be used under the terms of the GNU
30 ** General Public License version 3.0 as published by the Free Software
31 ** Foundation and appearing in the file LICENSE.GPL included in the
32 ** packaging of this file.  Please review the following information to
33 ** ensure the GNU General Public License version 3.0 requirements will be
34 ** met: http://www.gnu.org/copyleft/gpl.html.
35 ** 
36 ** Please note Third Party Software included with Qt Solutions may impose
37 ** additional restrictions and it is the user's responsibility to ensure
38 ** that they have met the licensing requirements of the GPL, LGPL, or Qt
39 ** Solutions Commercial license and the relevant license of the Third
40 ** Party Software they are using.
41 ** 
42 ** If you are unsure which license is appropriate for your use, please
43 ** contact the sales department at qt-sales@nokia.com.
44 ** 
45 ****************************************************************************/
46
47
48 #include "qtlocalpeer.h"
49 #include <QtCore/QCoreApplication>
50 #include <QtCore/QTime>
51 #include <QDebug>
52
53 #if defined(Q_OS_WIN)
54 #include <QtCore/QLibrary>
55 #include <QtCore/qt_windows.h>
56 typedef BOOL(WINAPI*PProcessIdToSessionId)(DWORD,DWORD*);
57 static PProcessIdToSessionId pProcessIdToSessionId = 0;
58 #endif
59 #if defined(Q_OS_UNIX)
60 #include <unistd.h>
61 #include <sys/types.h>
62 #include <time.h>
63 #endif
64
65 namespace QtLP_Private {
66 #include "qtlockedfile.cpp"
67 #if defined(Q_OS_WIN)
68 #include "qtlockedfile_win.cpp"
69 #else
70 #include "qtlockedfile_unix.cpp"
71 #endif
72 }
73
74 const char* QtLocalPeer::ack = "ack";
75
76 QtLocalPeer::QtLocalPeer(QObject* parent, const QString &appId)
77     : QObject(parent), id(appId)
78 {
79     QString prefix = id;
80     if (id.isEmpty()) {
81         id = QCoreApplication::applicationFilePath();
82 #if defined(Q_OS_WIN)
83         id = id.toLower();
84 #endif
85         prefix = id.section(QLatin1Char('/'), -1);
86     }
87     prefix.remove(QRegExp(QLatin1String("[^a-zA-Z]")));
88     prefix.truncate(6);
89
90     QByteArray idc = id.toUtf8();
91     quint16 idNum = qChecksum(idc.constData(), idc.size());
92     socketName = QLatin1String("qtsingleapp-") + prefix
93                  + QLatin1Char('-') + QString::number(idNum, 16);
94
95 #if defined(Q_OS_WIN)
96     if (!pProcessIdToSessionId) {
97         QLibrary lib("kernel32");
98         pProcessIdToSessionId = (PProcessIdToSessionId)lib.resolve("ProcessIdToSessionId");
99     }
100     if (pProcessIdToSessionId) {
101         DWORD sessionId = 0;
102         pProcessIdToSessionId(GetCurrentProcessId(), &sessionId);
103         socketName += QLatin1Char('-') + QString::number(sessionId, 16);
104     }
105 #else
106     socketName += QLatin1Char('-') + QString::number(::getuid(), 16);
107 #endif
108
109     server = new QLocalServer(this);
110     QString lockName = QDir(QDir::tempPath()).absolutePath()
111                        + QLatin1Char('/') + socketName
112                        + QLatin1String("-lockfile");
113     lockFile.setFileName(lockName);
114     lockFile.open(QIODevice::ReadWrite);
115 }
116
117
118
119 bool QtLocalPeer::isClient()
120 {
121     if (lockFile.isLocked())
122         return false;
123
124     if (!lockFile.lock(QtLP_Private::QtLockedFile::WriteLock, false))
125         return true;
126
127     bool res = server->listen(socketName);
128 #if defined(Q_OS_UNIX) && (QT_VERSION >= QT_VERSION_CHECK(4,5,0))
129     // ### Workaround
130     if (!res && server->serverError() == QAbstractSocket::AddressInUseError) {
131         QFile::remove(QDir::cleanPath(QDir::tempPath())+QLatin1Char('/')+socketName);
132         res = server->listen(socketName);
133     }
134 #endif
135     if (!res)
136         qWarning("QtSingleCoreApplication: listen on local socket failed, %s", qPrintable(server->errorString()));
137     QObject::connect(server, SIGNAL(newConnection()), SLOT(receiveConnection()));
138     return false;
139 }
140
141
142 bool QtLocalPeer::sendMessage(const QString &message, int timeout)
143 {
144     if (!isClient())
145         return false;
146
147     QLocalSocket socket;
148     bool connOk = false;
149     for(int i = 0; i < 2; i++) {
150         // Try twice, in case the other instance is just starting up
151         socket.connectToServer(socketName);
152         connOk = socket.waitForConnected(timeout/2);
153         if (connOk || i)
154             break;
155         int ms = 250;
156 #if defined(Q_OS_WIN)
157         Sleep(DWORD(ms));
158 #else
159         struct timespec ts = { ms / 1000, (ms % 1000) * 1000 * 1000 };
160         nanosleep(&ts, NULL);
161 #endif
162     }
163     if (!connOk)
164         return false;
165
166     QByteArray uMsg(message.toUtf8());
167     QDataStream ds(&socket);
168     ds.writeBytes(uMsg.constData(), uMsg.size());
169     bool res = socket.waitForBytesWritten(timeout);
170     res &= socket.waitForReadyRead(timeout);   // wait for ack
171     res &= (socket.read(qstrlen(ack)) == ack);
172     return res;
173 }
174
175
176 void QtLocalPeer::receiveConnection()
177 {
178     QLocalSocket* socket = server->nextPendingConnection();
179     if (!socket)
180         return;
181
182     while (socket->bytesAvailable() < (int)sizeof(quint32))
183         socket->waitForReadyRead();
184     QDataStream ds(socket);
185     QByteArray uMsg;
186     quint32 remaining;
187     ds >> remaining;
188     uMsg.resize(remaining);
189     int got = 0;
190     char* uMsgBuf = uMsg.data();
191     do {
192         got = ds.readRawData(uMsgBuf, remaining);
193         remaining -= got;
194         uMsgBuf += got;
195     } while (remaining && got >= 0 && socket->waitForReadyRead(2000));
196     if (got < 0) {
197         qWarning() << "QtLocalPeer: Message reception failed" << socket->errorString();
198         delete socket;
199         return;
200     }
201     QString message(QString::fromUtf8(uMsg));
202     socket->write(ack, qstrlen(ack));
203     socket->waitForBytesWritten(1000);
204     delete socket;
205     emit messageReceived(message); //### (might take a long time to return)
206 }