summaryrefslogtreecommitdiffstats
path: root/src/other/applicationmanager.cpp
blob: c23f82caecc7575ea2349da1fdae7ffe7f15a736 (plain)
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/**************************************************************************
**
** This file is part of Qt Simulator
**
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (info@qt.nokia.com)
**
**
** GNU Lesser General Public License Usage
**
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this file.
** Please review the following information to ensure the GNU Lesser General
** Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
** If you have questions regarding the use of this file, please contact
** Nokia at info@qt.nokia.com.
**
**************************************************************************/

#include "application.h"
#include "applicationmanager.h"
#include "applicationtablewidget.h"
#include "deviceitem.h"
#include "widgetmanager.h"
#include "widget.h"

#include <QtCore/QTimer>
#include <QtGui/QLayout>
#include <QtGui/QFileDialog>
#include <QtGui/QMessageBox>
#include <QtGui/QDesktopWidget>
#include <QtGui/QApplication>
#include <QtNetwork/QLocalServer>
#include <QtNetwork/QLocalSocket>

#include <cmath>

#ifdef Q_OS_WIN
#   include <windows.h>
#   include <Tlhelp32.h>
#elif defined(Q_OS_UNIX)
#   include <sys/types.h>
#   include <unistd.h>
#   include <errno.h>
#endif

namespace {
    int gAppIdCounter = 0;
}

ApplicationManager::ApplicationManager(const VersionStruct &simulatorVersion, QObject *parent)
    : QObject(parent)
    , mVersion(simulatorVersion)
    , mServer(0)
    , mPhononManager(0)
    , mWidgetManager(0)
    , mTableWidget(0)
    , mSimulatorStarted(false)
{
    // simulator socket connection
    QLocalSocket checkSocket;
    checkSocket.connectToServer(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString());
    if (checkSocket.waitForConnected(100)) {
        mSimulatorStarted = true;
        return;
    }

    mServer = new QLocalServer();
    QLocalServer::removeServer(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString());
    if (!mServer->listen(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString())) {
        qFatal("Could not open mServer");
    }
    connect(mServer, SIGNAL(newConnection()), this, SLOT(handleConnection()));
    connect(this, SIGNAL(applicationRegistered(Application*)), this, SLOT(registerApplication(Application*)));

    // debug window
    mTableWidget = new ApplicationTableWidget();
    mConfigWidget = new QWidget();
    QHBoxLayout* layout = new QHBoxLayout;
    layout->addWidget(mTableWidget);
    mConfigWidget->setLayout(layout);
    connect(mTableWidget, SIGNAL(killApplication(int)), this, SLOT(killApplication(int)));

    // watch for simulator clients that have been terminated
    QTimer* watchDogTimer = new QTimer(this);
    watchDogTimer->setObjectName(QLatin1String("watchDogTimer"));
    connect(watchDogTimer, SIGNAL(timeout()), SLOT(watchDogTimer()));
    watchDogTimer->start(5000);
}

ApplicationManager::~ApplicationManager()
{
    if (mServer) {
        mServer->close();
        QLocalServer::removeServer(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString());
        delete mServer;
        mServer = 0;
    }
    if (mTableWidget)
        delete mTableWidget;
}

void ApplicationManager::registerApplication(Application *newApp)
{
    mApps.push_back(newApp);

    // add to debug application table
    mTableWidget->insertRow(0);
    QTableWidgetItem *item = new QTableWidgetItem(QString::number(newApp->id()));
    item->setData(0, newApp->id());
    mTableWidget->setItem(0, 0, item);
    mTableWidget->setItem(0, 1, new QTableWidgetItem(newApp->name()));
    mTableWidget->setItem(0, 2, new QTableWidgetItem(newApp->clientVersion().toString()));
    mTableWidget->sortItems(0);

    if (mApps.size() == 1)
        emit firstAppRegistered();
    //qDebug() << "ApplicationManager registered:" << newApp->name();
}

void ApplicationManager::unregisterApplication(int id)
{
    emit applicationUnRegistered(id);
    for (int i = 0; i < mApps.size(); ++i) {
        if (mApps.at(i)->id() == id) {
            Application* item = mApps.takeAt(i);
            //qDebug() << "ApplicationManager removes:" << item->name();
            item->deleteLater();

            // remove from debug application table
            for (int r = 0; r < mTableWidget->rowCount(); ++r) {
                if (mTableWidget->item(r, 0)->data(0).toInt() == id) {
                    mTableWidget->removeRow(r);
                    break;
                }
            }
            break;
        }
    }
    if (mApps.isEmpty()) {
        emit lastAppUnregistered();
    }
}

bool ApplicationManager::hasApplications() const
{
    return !mApps.empty();
}

bool ApplicationManager::simulatorAlreadyStarted() const
{
    return mSimulatorStarted;
}

bool ApplicationManager::initializeFontDirectory()
{
    // make sure that we have a valid font directory
    QDir fontDir("fonts");
    if (!fontDir.exists()) {
        QMessageBox errorMsg;
        errorMsg.setWindowTitle(tr("\"%1\" folder does not exist").arg("Fonts"));
        errorMsg.setText(tr("The \"%1\" folder could not be located in the installation directory.").arg("fonts"));
        errorMsg.setIcon(QMessageBox::Critical);
        errorMsg.exec();
        return false;
    }
    mFontDirectory = fontDir.absolutePath();
    return true;
}

void ApplicationManager::killApplication(int id)
{
    for (int i = 0; i < mApps.size(); ++i) {
        if (mApps.at(i)->id() == id) {
            Application* item = mApps.at(i);
            item->kill();
            break;
        }
    }
}

void ApplicationManager::killCurrentApplication()
{
    Widget *activeWidget = mWidgetManager->activeWidget();
    if (!activeWidget)
        return;

    mWidgetManager->activeWidget()->owner->kill();
}

void ApplicationManager::killAllApplications()
{
    foreach (Application* item, mApps) {
        item->kill();
    }
}

Application* ApplicationManager::applicationForId(int id)
{
    foreach(Application* item, mApps) {
        if (item->id() == id)
            return item;
    }
    return 0;
}



void ApplicationManager::handleConnection()
{
    // get the incoming connection
    QLocalSocket* socket = mServer->nextPendingConnection();
    if (!socket->isValid())
        qWarning() << "Invalid socket!";

    using namespace QtSimulatorPrivate;

    // read the command id
    qint32 requestCommand = 0;
    qint64 bytesToRead = sizeof(requestCommand);
    qint64 bytesRead = qt_blockingRead(
        socket, reinterpret_cast<char *>(&requestCommand), bytesToRead, 500);
    if (bytesRead < bytesToRead)
    {
        qWarning("Dropped incoming connection, couldn't read command id.");
        return;
    }
    if (requestCommand != Command::ApplicationConnect)
    {
        qWarning("Dropped incoming connection, it sent an invalid command.");
        return;
    }

    // read the command
    ApplicationConnectCommand cmd;
    bytesToRead = sizeof(cmd.request);
    bytesRead = qt_blockingRead(
        socket, reinterpret_cast<char *>(&cmd.request), bytesToRead, 500);
    if (bytesRead < bytesToRead)
    {
        qWarning("Dropped incoming connection, couldn't read command data.");
        return;
    }

    // send a reply
    cmd.reply.appId = gAppIdCounter + 1;
    cmd.reply.version = mVersion;
    qint64 bytesToWrite = sizeof(cmd.reply);
    qint64 bytesWritten = qt_blockingWrite(
        socket, reinterpret_cast<const char *>(&cmd.reply), bytesToWrite, 500);
    if (bytesWritten < bytesToWrite)
    {
        qWarning("Dropped incoming connection, couldn't send connect reply.");
        return;
    }

    // success: register new application
    gAppIdCounter++;
    Application *app = new Application(QString::fromLatin1(cmd.request.applicationName),
                                       cmd.reply.appId, cmd.request.applicationPid, socket, this);
    if ( !app->socket()->isOpen()) {
      qWarning("Could not connect to application: Make sure %s has read/write permissions to the application socket.", qPrintable(qApp->applicationName()));
      delete app;
      return;
    }
    VersionStruct version;
    version = cmd.request.version;
    app->setClientVersion(version);
    app->setPhononManager(mPhononManager);
    app->setWidgetManager(mWidgetManager);
    emit applicationRegistered(app);
}

void ApplicationManager::setPhononManager(PhononManager *manager)
{
    Q_ASSERT(!mPhononManager);
    mPhononManager = manager;
}

void ApplicationManager::setWidgetManager(WidgetManager *widMan)
{
    // changing the widget manager not yet supported
    Q_ASSERT(!mWidgetManager);

    mWidgetManager = widMan;

    // basic display info data that's fixed for a widget manager
    QImage tmp(16, 16, widMan->imageFormat());
    mDisplayInfo.format = tmp.format();
    mDisplayInfo.numColors = tmp.numColors();
    mDisplayInfo.depth = tmp.depth();
    QDesktopWidget *desktop = QApplication::desktop();
    mDisplayInfo.hostDpi = QSize(desktop->logicalDpiX(), desktop->logicalDpiY());
}

QString ApplicationManager::fontDirectory()
{
    return mFontDirectory;
}

const QtSimulatorPrivate::DisplayInfo &ApplicationManager::displayInfo()
{
    return mDisplayInfo;
}

void ApplicationManager::watchDogTimer()
{
#ifdef Q_OS_WIN
    QHash<qint64, Application*> pidMapping;
    foreach (Application* app, mApps)
        pidMapping.insert(app->processId(), app);

    HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
    if (hSnapShot == INVALID_HANDLE_VALUE) {
        QTimer* watchDogTimer = findChild<QTimer*>(QLatin1String("watchDogTimer"));
        watchDogTimer->stop();
        qWarning("Cannot create process snapshot. Watchdog timer stopped.");
        return;
    }
    BOOL bSuccess;
    PROCESSENTRY32 processEntry;
    processEntry.dwSize = sizeof(processEntry);
    bSuccess = Process32First(hSnapShot, &processEntry);
    while (bSuccess) {
        Application* app = pidMapping.value(processEntry.th32ProcessID, 0);
        if (app)
            pidMapping.remove(processEntry.th32ProcessID);
        bSuccess = Process32Next(hSnapShot, &processEntry);
    }
    CloseHandle(hSnapShot);

    QHash<qint64, Application*>::iterator it;
    for (it = pidMapping.begin(); it != pidMapping.end(); ++it)
        watchDogBark(it.value());

#elif defined(Q_OS_UNIX)
    foreach (Application *app, mApps) {
        pid_t pgid = getpgid(app->processId());
        if (pgid == -1 && errno == ESRCH)
            watchDogBark(app);
    }

#else
    QTimer* watchDogTimer = findChild<QTimer*>(QLatin1String("watchDogTimer"));
    watchDogTimer->stop();
    qWarning("ApplicationManager::watchDogTimer not implemented");
#endif
}

void ApplicationManager::watchDogBark(Application* deadApp)
{
    qWarning() << "Application died without unregistering. Unregistering now:" << deadApp->name();
    unregisterApplication(deadApp->id());
}


void ApplicationManager::updateDisplayInformation(const QSize &resolution, const DeviceData &device)
{
    using namespace std;
    qreal pixelDiagonal = sqrt(pow((qreal)resolution.width(), 2) + pow((qreal)resolution.height(), 2));
    QSizeF displaySizeInch(QSizeF(resolution) * device.diagonalInInch / pixelDiagonal);

    mDisplayInfo.size = resolution;
    mDisplayInfo.availableRect = device.availableGeometry;

    // calculate dpi
    if (device.forceDpi != -1) {
        mDisplayInfo.dpi = QSize(device.forceDpi, device.forceDpi);
    } else {
        mDisplayInfo.dpi.setWidth(resolution.width() / displaySizeInch.width());
        mDisplayInfo.dpi.setHeight(resolution.height() / displaySizeInch.height());
    }

    mDisplayInfo.defaultFontSize = device.defaultFontSize;
    mDisplayInfo.style = device.style;
    mDisplayInfo.styleTheme = device.styleTheme;
    mDisplayInfo.hasSoftKeys = !device.symbianSoftKeys.isEmpty();

    const qreal MMperInch = 25.4;
    mDisplayInfo.sizeMM = QSize(displaySizeInch.width() * MMperInch, displaySizeInch.height() * MMperInch);

    foreach (Application *application, mApps)
        QtSimulatorPrivate::RemoteMetacall<void>::call(application->socket(), QtSimulatorPrivate::NoSync,
                                                       "updateDisplayInformation");
    double newSoftKeyTextSize = 1.0 * mDisplayInfo.defaultFontSize / mDisplayInfo.hostDpi.width() * mDisplayInfo.dpi.width();
    emit softkeyTextSizeChanged(newSoftKeyTextSize);
}

void ApplicationManager::updateMobilityVersion(int appId, VersionStruct version)
{
    for (int i = 0; i < mTableWidget->rowCount(); i++) {
        QTableWidgetItem *item = mTableWidget->itemAt(i, 0);
        if (item->data(0) == appId) {
            mTableWidget->setItem(i, 3, new QTableWidgetItem(version.toString()));
            return;
        }
    }
}