Multi diag tools
qtlocalpeer.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the Qt Solutions component.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 ** * Redistributions of source code must retain the above copyright
15 ** notice, this list of conditions and the following disclaimer.
16 ** * Redistributions in binary form must reproduce the above copyright
17 ** notice, this list of conditions and the following disclaimer in
18 ** the documentation and/or other materials provided with the
19 ** distribution.
20 ** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
21 ** of its contributors may be used to endorse or promote products derived
22 ** from this software without specific prior written permission.
23 **
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40 
41 
42 #include "qtlocalpeer.h"
43 #include <QCoreApplication>
44 #include <QDataStream>
45 #include <QTime>
46 #include <QLatin1String>
47 
48 #if defined(Q_OS_WIN)
49 #include <QLibrary>
50 #include <qt_windows.h>
51 typedef BOOL(WINAPI*PProcessIdToSessionId)(DWORD,DWORD*);
52 static PProcessIdToSessionId pProcessIdToSessionId = 0;
53 #endif
54 #if defined(Q_OS_UNIX)
55 #include <sys/types.h>
56 #include <time.h>
57 #include <unistd.h>
58 #endif
59 
60 namespace QtLP_Private {
61 #include "qtlockedfile.cpp"
62 #if defined(Q_OS_WIN)
63 #include "qtlockedfile_win.cpp"
64 #else
65 #include "qtlockedfile_unix.cpp"
66 #endif
67 }
68 
69 const char* QtLocalPeer::ack = "ack";
70 
71 QtLocalPeer::QtLocalPeer(QObject* parent, const QString &appId)
72  : QObject(parent), id(appId)
73 {
74  QString prefix = id;
75  if (id.isEmpty()) {
76  id = QCoreApplication::applicationFilePath();
77 #if defined(Q_OS_WIN)
78  id = id.toLower();
79 #endif
80  prefix = id.section(QLatin1Char('/'), -1);
81  }
82  prefix.remove(QRegExp(QLatin1String("[^a-zA-Z]")));
83  prefix.truncate(6);
84 
85  QByteArray idc = id.toUtf8();
86  quint16 idNum = qChecksum(idc.constData(), idc.size());
87  socketName = QLatin1String("qtsingleapp-") + prefix
88  + QLatin1Char('-') + QString::number(idNum, 16);
89 
90 #if defined(Q_OS_WIN)
91  if (!pProcessIdToSessionId) {
92  QLibrary lib(QLatin1String("kernel32"));
93  pProcessIdToSessionId = (PProcessIdToSessionId)lib.resolve("ProcessIdToSessionId");
94  }
95  if (pProcessIdToSessionId) {
96  DWORD sessionId = 0;
97  pProcessIdToSessionId(GetCurrentProcessId(), &sessionId);
98  socketName += QLatin1Char('-') + QString::number(sessionId, 16);
99  }
100 #else
101  socketName += QLatin1Char('-') + QString::number(::getuid(), 16);
102 #endif
103 
104  server = new QLocalServer(this);
105  QString lockName = QDir(QDir::tempPath()).absolutePath()
106  + QLatin1Char('/') + socketName
107  + QLatin1String("-lockfile");
108  lockFile.setFileName(lockName);
109  lockFile.open(QIODevice::ReadWrite);
110 }
111 
112 
113 
114 bool QtLocalPeer::isClient()
115 {
116  if (lockFile.isLocked())
117  return false;
118 
119  if (!lockFile.lock(QtLP_Private::QtLockedFile::WriteLock, false))
120  return true;
121 
122  bool res = server->listen(socketName);
123 #if defined(Q_OS_UNIX) && (QT_VERSION >= QT_VERSION_CHECK(4,5,0))
124  // ### Workaround
125  if (!res && server->serverError() == QAbstractSocket::AddressInUseError) {
126  QFile::remove(QDir::cleanPath(QDir::tempPath())+QLatin1Char('/')+socketName);
127  res = server->listen(socketName);
128  }
129 #endif
130  if (!res)
131  qWarning("QtSingleCoreApplication: listen on local socket failed, %s", qPrintable(server->errorString()));
132  QObject::connect(server, SIGNAL(newConnection()), SLOT(receiveConnection()));
133  return false;
134 }
135 
136 
137 bool QtLocalPeer::sendMessage(const QString &message, int timeout)
138 {
139  if (!isClient())
140  return false;
141 
142  QLocalSocket socket;
143  bool connOk = false;
144  for(int i = 0; i < 2; i++) {
145  // Try twice, in case the other instance is just starting up
146  socket.connectToServer(socketName);
147  connOk = socket.waitForConnected(timeout/2);
148  if (connOk || i)
149  break;
150  int ms = 250;
151 #if defined(Q_OS_WIN)
152  Sleep(DWORD(ms));
153 #else
154  struct timespec ts = { ms / 1000, (ms % 1000) * 1000 * 1000 };
155  nanosleep(&ts, NULL);
156 #endif
157  }
158  if (!connOk)
159  return false;
160 
161  QByteArray uMsg(message.toUtf8());
162  QDataStream ds(&socket);
163  ds.writeBytes(uMsg.constData(), uMsg.size());
164  bool res = socket.waitForBytesWritten(timeout);
165  if (res) {
166  res &= socket.waitForReadyRead(timeout); // wait for ack
167  if (res)
168  res &= (socket.read(qstrlen(ack)) == ack);
169  }
170  return res;
171 }
172 
173 
174 void QtLocalPeer::receiveConnection()
175 {
176  QLocalSocket* socket = server->nextPendingConnection();
177  if (!socket)
178  return;
179 
180  while (true) {
181  if (socket->state() == QLocalSocket::UnconnectedState) {
182  qWarning("QtLocalPeer: Peer disconnected");
183  delete socket;
184  return;
185  }
186  if (socket->bytesAvailable() >= qint64(sizeof(quint32)))
187  break;
188  socket->waitForReadyRead();
189  }
190 
191  QDataStream ds(socket);
192  QByteArray uMsg;
193  quint32 remaining;
194  ds >> remaining;
195  uMsg.resize(remaining);
196  int got = 0;
197  char* uMsgBuf = uMsg.data();
198  do {
199  got = ds.readRawData(uMsgBuf, remaining);
200  remaining -= got;
201  uMsgBuf += got;
202  } while (remaining && got >= 0 && socket->waitForReadyRead(2000));
203  if (got < 0) {
204  qWarning("QtLocalPeer: Message reception failed %s", socket->errorString().toLatin1().constData());
205  delete socket;
206  return;
207  }
208  QString message(QString::fromUtf8(uMsg));
209  socket->write(ack, qstrlen(ack));
210  socket->waitForBytesWritten(1000);
211  socket->waitForDisconnected(1000); // make sure client reads ack
212  delete socket;
213  emit messageReceived(message); //### (might take a long time to return)
214 }