|
1 /**************************************************************************** |
|
2 ** |
|
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 ** Contact: Nokia Corporation (qt-info@nokia.com) |
|
5 ** |
|
6 ** This file is part of the examples of the Qt Toolkit. |
|
7 ** |
|
8 ** $QT_BEGIN_LICENSE:LGPL$ |
|
9 ** No Commercial Usage |
|
10 ** This file contains pre-release code and may not be distributed. |
|
11 ** You may use this file in accordance with the terms and conditions |
|
12 ** contained in the either Technology Preview License Agreement or the |
|
13 ** Beta Release License Agreement. |
|
14 ** |
|
15 ** GNU Lesser General Public License Usage |
|
16 ** Alternatively, this file may be used under the terms of the GNU Lesser |
|
17 ** General Public License version 2.1 as published by the Free Software |
|
18 ** Foundation and appearing in the file LICENSE.LGPL included in the |
|
19 ** packaging of this file. Please review the following information to |
|
20 ** ensure the GNU Lesser General Public License version 2.1 requirements |
|
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
22 ** |
|
23 ** In addition, as a special exception, Nokia gives you certain |
|
24 ** additional rights. These rights are described in the Nokia Qt LGPL |
|
25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this |
|
26 ** package. |
|
27 ** |
|
28 ** GNU General Public License Usage |
|
29 ** Alternatively, this file may be used under the terms of the GNU |
|
30 ** General Public License version 3.0 as published by the Free Software |
|
31 ** Foundation and appearing in the file LICENSE.GPL included in the |
|
32 ** packaging of this file. Please review the following information to |
|
33 ** ensure the GNU General Public License version 3.0 requirements will be |
|
34 ** met: http://www.gnu.org/copyleft/gpl.html. |
|
35 ** |
|
36 ** If you are unsure which license is appropriate for your use, please |
|
37 ** contact the sales department at http://qt.nokia.com/contact. |
|
38 ** $QT_END_LICENSE$ |
|
39 ** |
|
40 ****************************************************************************/ |
|
41 |
|
42 #ifndef TESTCONTROLLER_H |
|
43 #define TESTCONTROLLER_H |
|
44 |
|
45 #include <QObject> |
|
46 #include <QTime> |
|
47 |
|
48 #include "resultlogger.h" |
|
49 #include "dummydatagen.h" |
|
50 #include "resourcemoninterface.h" |
|
51 #include "theme.h" |
|
52 |
|
53 class QMutex; |
|
54 class QWaitCondition; |
|
55 class MainView; |
|
56 class ItemRecyclingList; |
|
57 class SimpleList; |
|
58 class RecycledListItem; |
|
59 class ListItem; |
|
60 |
|
61 class TestController : public QObject |
|
62 { |
|
63 Q_OBJECT |
|
64 public: |
|
65 |
|
66 TestController(const QString &fname, MainView *mMainView, ResultLogger::ResultFormat format, QObject *parent=0); |
|
67 virtual ~TestController(); |
|
68 |
|
69 QString resultFileName(); |
|
70 ResultLogger::ResultFormat resultFileFormat(); |
|
71 |
|
72 public slots: |
|
73 // Test case methods. |
|
74 void fillList(int itemCount, Benchmark::ListType listType, TestFunctionResult *testFunctionResult, const QString &tag); |
|
75 void deleteList(TestFunctionResult *testFunctionResult, const QString &tag); |
|
76 void themeChange(int theme, TestFunctionResult *testFunctionResult, const QString &tag); |
|
77 void scrollList(int maxTimeMs, TestFunctionResult *testFunctionResult, const QString &tag); |
|
78 void forceUpdate(int maxTimeMs, TestFunctionResult *testFunctionResult, const QString &tag); |
|
79 void addToBeginningOfList(int itemCount, TestFunctionResult *testFunctionResult, const QString &tag); |
|
80 void removeFromBeginningOfList(int itemCount, TestFunctionResult *testFunctionResult, const QString &tag); |
|
81 |
|
82 // Test configuration methods. |
|
83 void applicationExit(); |
|
84 void changeTheme(Theme::Themes theme); |
|
85 void setImageBasedRendering(const bool imageBasedRendering); |
|
86 bool imageBasedRendering() const; |
|
87 void setSubtreeCache(const bool enabled); |
|
88 bool subtreeCache() const; |
|
89 void setScrollStep(const int step); |
|
90 int scrollStep() const; |
|
91 void setCpuMemLogging(const bool enabled); |
|
92 void rotateMainWindow(const int angle); |
|
93 int mainWindowRotationAngle() const; |
|
94 void setTwoColumns(const bool twoCols); |
|
95 bool twoColumns() const; |
|
96 |
|
97 signals: |
|
98 void stop(); |
|
99 void testDone(); |
|
100 void doScrollRecyclingList(TestFunctionResult *testFunctionResult, const QString &tag); |
|
101 void doScrollSimpleList(TestFunctionResult *testFunctionResult, const QString &tag); |
|
102 void doForceUpdate(TestFunctionResult *testFunctionResult, const QString &tag); |
|
103 |
|
104 private slots: |
|
105 void scrollRecyclingList(TestFunctionResult *testFunctionResult, const QString &tag); |
|
106 void scrollSimpleList(TestFunctionResult *testFunctionResult, const QString &tag); |
|
107 void doForceUpdateViewport(TestFunctionResult *testFunctionResult, const QString &tag); |
|
108 |
|
109 void aboutToQuit(); |
|
110 void testIsDone(); |
|
111 |
|
112 void printResourceLoad(); |
|
113 |
|
114 private: |
|
115 Q_DISABLE_COPY(TestController) |
|
116 |
|
117 bool loadPlugin(); |
|
118 void createCpuBenchmark(TestFunctionResult *testFunctionResult, const QString &tag, int listItems, Benchmark::ListType type, const QString &theme, ResourceMonitorInterface::CpuUsage cpuUsage); |
|
119 void createMemoryBenchmark(TestFunctionResult *testFunctionResult, const QString &tag, int listItems, Benchmark::ListType type, const QString &theme, ResourceMonitorInterface::MemoryAllocation allocation); |
|
120 |
|
121 MainView *mMainView; |
|
122 |
|
123 SimpleList *mCurrentSimpleList; |
|
124 ItemRecyclingList *mCurrentRecyclingList; |
|
125 QTime mTestDuration; |
|
126 int mMaxTestDurationTime; |
|
127 int mScrollDirection; |
|
128 QString mFileName; |
|
129 ResultLogger::ResultFormat mResultFormat; |
|
130 DummyDataGenerator mDataGenerator; |
|
131 ResourceMonitorInterface* mResMon; |
|
132 bool mSubtreeCacheEnabled; |
|
133 int mScrollStep; |
|
134 bool mCpuMemLogging; |
|
135 int mLastElapsed; |
|
136 }; |
|
137 |
|
138 #endif // TESTCONTROLLER_H |