OSDN Git Service

92364928837d12615ed8d692e12d9ae1fb6f4ea2
[qt-creator-jp/qt-creator-jp.git] / tests / tools / codaclient / codaclientapplication.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef CODACLIENTAPPLICATION_H
35 #define CODACLIENTAPPLICATION_H
36
37 #include <QtCore/QCoreApplication>
38 #include <QtCore/QStringList>
39 #include <QtCore/QSharedPointer>
40 #include <QtCore/QTime>
41
42 QT_FORWARD_DECLARE_CLASS(QFile)
43
44 namespace Coda {
45     struct CodaCommandResult;
46     class CodaDevice;
47     class CodaEvent;
48 }
49
50 class CodaClientApplication : public QCoreApplication
51 {
52     Q_OBJECT
53 public:
54     enum Mode { Invalid, Ping, Launch, Put, Stat, Install };
55
56     explicit CodaClientApplication(int &argc, char **argv);
57     ~CodaClientApplication();
58
59     enum ParseArgsResult { ParseArgsOk, ParseArgsError, ParseInitError, ParseArgsHelp };
60     ParseArgsResult parseArguments(QString *errorMessage);
61
62     bool start();
63
64     static QString usage();
65
66 private slots:
67     void slotError(const QString &);
68     void slotTrkLogMessage(const QString &);
69     void slotCodaEvent(const Coda::CodaEvent &);
70     void slotSerialPong(const QString &);
71
72 private:
73     void printTimeStamp();
74     bool parseArgument(const QString &a, int argNumber, QString *errorMessage);
75     void handleCreateProcess(const Coda::CodaCommandResult &result);
76     void handleFileSystemOpen(const Coda::CodaCommandResult &result);
77     void handleFileSystemWrite(const Coda::CodaCommandResult &result);
78     void handleFileSystemClose(const Coda::CodaCommandResult &result);
79     void handleFileSystemFStat(const Coda::CodaCommandResult &result);
80     void handleSymbianInstall(const Coda::CodaCommandResult &result);
81     void doExit(int ex);
82     void putSendNextChunk();
83     void closeRemoteFile();
84
85     Mode m_mode;
86     QString m_address;
87     unsigned short m_port;
88     QString m_launchBinary;
89     QStringList m_launchArgs;
90     unsigned m_launchUID;
91     bool m_launchDebug;
92     QString m_installSisFile;
93     QString m_installTargetDrive;
94     bool m_installSilently;
95     QString m_putLocalFile;
96     QString m_putRemoteFile;
97     bool m_putWriteOk;
98     bool m_statFstatOk;
99     QScopedPointer<QFile> m_putFile;
100     quint64 m_putLastChunkSize;
101     QString m_statRemoteFile;
102     QByteArray m_remoteFileHandle;
103     quint64 m_putChunkSize;
104     unsigned m_verbose;
105     QTime m_startTime;
106     QScopedPointer<Coda::CodaDevice> m_trkDevice;
107 };
108
109 #endif // CODACLIENTAPPLICATION_H