summaryrefslogtreecommitdiffstats
path: root/tools/runonphone/main.cpp
blob: 8404906006416f4b9921342291f8c8eb8222f936 (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
/**************************************************************************
**
** This file is part of the tools applications of the Qt Toolkit.
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** Alternatively, 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.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#include <QCoreApplication>
#include <QDebug>
#include <QStringList>
#include <QScopedPointer>
#include "trkutils.h"
#include "trkdevice.h"
#include "launcher.h"

#include "trksignalhandler.h"
#include "serenum.h"

void printUsage()
{
    qDebug() << "runtest [options] <program> [program arguments]" << endl
            << "-s, --sis <file>                     specify sis file to install" << endl
            << "-p, --portname <COMx>                specify COM port to use by device name" << endl
            << "-f, --portfriendlyname <substring>   specify COM port to use by friendly name" << endl
            << endl
            << "USB COM ports can usually be autodetected" << endl;
}

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    QString serialPortName;
    QString serialPortFriendlyName;
    QString sisFile;
    QString exeFile;
    QString cmdLine;
    QStringList args = QCoreApplication::arguments();
    for (int i=1;i<args.size();i++) {
        QString arg = args.at(i);
        if (arg.startsWith("-")) {
            if (args.size() < i+2) {
                qWarning("Command line missing argument parameters");
                return 1;
            }
            i++;
            QString param = args.at(i);
            if(arg.compare("--portname", Qt::CaseSensitive) == 0
               || arg.compare("-p", Qt::CaseSensitive) == 0)
                serialPortName = param;
            else if(arg.compare("--portfriendlyname", Qt::CaseSensitive) == 0
                    || arg.compare("-f", Qt::CaseSensitive) == 0)
                serialPortFriendlyName = param;
            else if(arg.compare("--sis", Qt::CaseSensitive) == 0
                    || arg.compare("-s", Qt::CaseSensitive) == 0)
                sisFile = param;
            else
                qWarning() << "unknown command line option " << arg;
        } else {
            exeFile = arg;
            i++;
            for(;i<args.size();i++) {
                cmdLine.append(args.at(i));
                if(i + 1 < args.size()) cmdLine.append(' ');
            }
        }
    }

    if(exeFile.isEmpty()) {
        printUsage();
        return 1;
    }

    if(serialPortName.isEmpty()) {
        qDebug() << "Detecting serial ports" << endl;
        QList <SerialPortId> ports = enumerateSerialPorts();
        foreach(SerialPortId id, ports) {
            qDebug() << "Port Name: " << id.portName << ", "
                     << "Friendly Name:" << id.friendlyName << endl;
            if(serialPortName.isEmpty()) {
                if(id.friendlyName.isEmpty() &&
                    (id.friendlyName.contains("symbian", Qt::CaseInsensitive) ||
                       id.friendlyName.contains("s60", Qt::CaseInsensitive) ||
                       id.friendlyName.contains("nokia", Qt::CaseInsensitive)))
                        serialPortName = id.portName;
                else if (!id.friendlyName.isEmpty() &&
                         id.friendlyName.contains(serialPortFriendlyName))
                        serialPortName = id.portName;
            }
        }
    }

    QScopedPointer<trk::Launcher> launcher;

    if(sisFile.isEmpty()) {
        launcher.reset(new trk::Launcher(trk::Launcher::ActionCopyRun));
        launcher->setCopyFileName(exeFile, QString("c:\\sys\\bin\\") + exeFile);
        qDebug() << "System TRK required to copy EXE, use --sis if using Application TRK" << endl;
    } else {
        launcher.reset(new trk::Launcher(trk::Launcher::ActionCopyInstallRun));
        launcher->addStartupActions(trk::Launcher::ActionInstall);
        launcher->setCopyFileName(sisFile, "c:\\data\\testtemp.sis");
        launcher->setInstallFileName("c:\\data\\testtemp.sis");
    }
    qDebug() << "Connecting to target via " << serialPortName << endl;
    launcher->setTrkServerName(QString("\\\\.\\") + serialPortName);

    launcher->setFileName(QString("c:\\sys\\bin\\") + exeFile);
    launcher->setCommandLineArgs(cmdLine);

    TrkSignalHandler handler;

    QObject::connect(launcher.data(), SIGNAL(copyingStarted()), &handler, SLOT(copyingStarted()));
    QObject::connect(launcher.data(), SIGNAL(canNotConnect(const QString &)), &handler, SLOT(canNotConnect(const QString &)));
    QObject::connect(launcher.data(), SIGNAL(canNotCreateFile(const QString &, const QString &)), &handler, SLOT(canNotCreateFile(const QString &, const QString &)));
    QObject::connect(launcher.data(), SIGNAL(canNotWriteFile(const QString &, const QString &)), &handler, SLOT(canNotWriteFile(const QString &, const QString &)));
    QObject::connect(launcher.data(), SIGNAL(canNotCloseFile(const QString &, const QString &)), &handler, SLOT(canNotCloseFile(const QString &, const QString &)));
    QObject::connect(launcher.data(), SIGNAL(installingStarted()), &handler, SLOT(installingStarted()));
    QObject::connect(launcher.data(), SIGNAL(canNotInstall(const QString &, const QString &)), &handler, SLOT(canNotInstall(const QString &, const QString &)));
    QObject::connect(launcher.data(), SIGNAL(installingFinished()), &handler, SLOT(installingFinished()));
    QObject::connect(launcher.data(), SIGNAL(startingApplication()), &handler, SLOT(startingApplication()));
    QObject::connect(launcher.data(), SIGNAL(applicationRunning(uint)), &handler, SLOT(applicationRunning(uint)));
    QObject::connect(launcher.data(), SIGNAL(canNotRun(const QString &)), &handler, SLOT(canNotRun(const QString &)));
    QObject::connect(launcher.data(), SIGNAL(applicationOutputReceived(const QString &)), &handler, SLOT(applicationOutputReceived(const QString &)));
    QObject::connect(launcher.data(), SIGNAL(copyProgress(int)), &handler, SLOT(copyProgress(int)));
    QObject::connect(launcher.data(), SIGNAL(stateChanged(int)), &handler, SLOT(stateChanged(int)));
    QObject::connect(launcher.data(), SIGNAL(finished()), &handler, SLOT(finished()));

    QString errorMessage;
    if(!launcher->startServer(&errorMessage)) {
        qWarning() << errorMessage;
        return 1;
    }

    return a.exec();
}