194f8fa14c89baa7399f016c59a9067164da8e07
[profile/ivi/qtdeclarative.git] / tests / auto / qml / debugger / shared / debugutil_p.h
1
2 /****************************************************************************
3 **
4 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 **
39 ** $QT_END_LICENSE$
40 **
41 ****************************************************************************/
42
43 #ifndef DEBUGUTIL_H
44 #define DEBUGUTIL_H
45
46 #include <QEventLoop>
47 #include <QTimer>
48 #include <QThread>
49 #include <QTest>
50 #include <QProcess>
51
52 #include <QtQml/qqmlengine.h>
53
54 #include <private/qqmldebugclient_p.h>
55 #include <private/qqmldebugservice_p.h>
56
57 class QQmlDebugTest
58 {
59 public:
60     static bool waitForSignal(QObject *receiver, const char *member, int timeout = 5000);
61 };
62
63 class QQmlDebugTestService : public QQmlDebugService
64 {
65     Q_OBJECT
66 public:
67     QQmlDebugTestService(const QString &s, float version = 1, QObject *parent = 0);
68
69 signals:
70     void stateHasChanged();
71
72 protected:
73     virtual void messageReceived(const QByteArray &ba);
74     virtual void stateChanged(State state);
75 };
76
77 class QQmlDebugTestClient : public QQmlDebugClient
78 {
79     Q_OBJECT
80 public:
81     QQmlDebugTestClient(const QString &s, QQmlDebugConnection *c);
82
83     QByteArray waitForResponse();
84
85 signals:
86     void stateHasChanged();
87     void serverMessage(const QByteArray &);
88
89 protected:
90     virtual void stateChanged(State state);
91     virtual void messageReceived(const QByteArray &ba);
92
93 private:
94     QByteArray lastMsg;
95 };
96
97 class QQmlDebugProcess : public QObject
98 {
99     Q_OBJECT
100 public:
101     QQmlDebugProcess(const QString &executable);
102     ~QQmlDebugProcess();
103
104     void setEnvironment(const QStringList &environment);
105
106     void start(const QStringList &arguments);
107     bool waitForSessionStart();
108
109     QString output() const;
110     void stop();
111
112 private slots:
113     void processAppOutput();
114
115 private:
116     QString m_executable;
117     QProcess m_process;
118     QString m_outputBuffer;
119     QString m_output;
120     QTimer m_timer;
121     QEventLoop m_eventLoop;
122     QMutex m_mutex;
123     bool m_started;
124     QStringList m_environment;
125 };
126
127 #endif // DEBUGUTIL_H