-rw-r--r-- | noncore/settings/sysinfo/benchmarkinfo.cpp | 94 | ||||
-rw-r--r-- | noncore/settings/sysinfo/benchmarkinfo.h | 7 | ||||
-rw-r--r-- | share/sysinfo/results | 30 |
3 files changed, 109 insertions, 22 deletions
diff --git a/noncore/settings/sysinfo/benchmarkinfo.cpp b/noncore/settings/sysinfo/benchmarkinfo.cpp index 69d8229..0aeb251 100644 --- a/noncore/settings/sysinfo/benchmarkinfo.cpp +++ b/noncore/settings/sysinfo/benchmarkinfo.cpp | |||
@@ -1,416 +1,468 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** BenchmarkInfo | 2 | ** BenchmarkInfo |
3 | ** | 3 | ** |
4 | ** A benchmark for Qt/Embedded | 4 | ** A benchmark for Qt/Embedded |
5 | ** | 5 | ** |
6 | ** Copyright (C) 2004 Michael Lauer <mickey@vanille.de> | 6 | ** Copyright (C) 2004 Michael Lauer <mickey@vanille.de> |
7 | ** Inspired by ZBench (C) 2002 Satoshi <af230533@im07.alpha-net.ne.jp> | 7 | ** Inspired by ZBench (C) 2002 Satoshi <af230533@im07.alpha-net.ne.jp> |
8 | ** | 8 | ** |
9 | ** This file may be distributed and/or modified under the terms of the | 9 | ** This file may be distributed and/or modified under the terms of the |
10 | ** GNU General Public License version 2 as published by the Free Software | 10 | ** GNU General Public License version 2 as published by the Free Software |
11 | ** Foundation and appearing in the file LICENSE.GPL included in the | 11 | ** Foundation and appearing in the file LICENSE.GPL included in the |
12 | ** packaging of this file. | 12 | ** packaging of this file. |
13 | ** | 13 | ** |
14 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 14 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
15 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 15 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
16 | ** | 16 | ** |
17 | **********************************************************************/ | 17 | **********************************************************************/ |
18 | 18 | ||
19 | /* OPIE */ | 19 | /* OPIE */ |
20 | #include <opie2/ostorageinfo.h> | 20 | #include <opie2/ostorageinfo.h> |
21 | #include <qpe/qpeapplication.h> | 21 | #include <qpe/qpeapplication.h> |
22 | #include <qpe/qcopenvelope_qws.h> | 22 | #include <qpe/qcopenvelope_qws.h> |
23 | #include <qpe/qpedecoration_qws.h> | 23 | #include <qpe/qpedecoration_qws.h> |
24 | #include <qpe/resource.h> | 24 | #include <qpe/resource.h> |
25 | #include <qpe/config.h> | 25 | #include <qpe/config.h> |
26 | 26 | ||
27 | /* QT */ | 27 | /* QT */ |
28 | #include <qlayout.h> | 28 | #include <qclipboard.h> |
29 | #include <qcolor.h> | ||
30 | #include <qcombobox.h> | ||
31 | #include <qdirectpainter_qws.h> | ||
32 | #include <qfile.h> | ||
33 | #include <qtextstream.h> | ||
29 | #include <qfiledialog.h> | 34 | #include <qfiledialog.h> |
30 | #include <qlabel.h> | 35 | #include <qlabel.h> |
36 | #include <qlayout.h> | ||
31 | #include <qpainter.h> | 37 | #include <qpainter.h> |
32 | #include <qdirectpainter_qws.h> | ||
33 | #include <qapplication.h> | ||
34 | #include <qpushbutton.h> | 38 | #include <qpushbutton.h> |
35 | #include <qclipboard.h> | ||
36 | #include <qtimer.h> | 39 | #include <qtimer.h> |
37 | #include <qcolor.h> | ||
38 | #include <qpushbutton.h> | ||
39 | 40 | ||
40 | /* STD */ | 41 | /* STD */ |
41 | #include <time.h> | 42 | #include <time.h> |
42 | #include <stdio.h> | 43 | #include <stdio.h> |
43 | #include <stdlib.h> | 44 | #include <stdlib.h> |
44 | #include <math.h> | 45 | #include <math.h> |
45 | 46 | ||
46 | #include "benchmarkinfo.h" | 47 | #include "benchmarkinfo.h" |
47 | 48 | ||
48 | extern "C" | 49 | extern "C" |
49 | { | 50 | { |
50 | void BenchFFT( void ); | 51 | void BenchFFT( void ); |
51 | double dhry_main( int ); | 52 | double dhry_main( int ); |
52 | } | 53 | } |
53 | 54 | ||
54 | #define DHRYSTONE_RUNS 20000000 | 55 | #define DHRYSTONE_RUNS 20000000 |
55 | #define TEST_DURATION 3 | 56 | #define TEST_DURATION 3 |
56 | 57 | ||
57 | #define BUFF_SIZE 8192 | 58 | #define BUFF_SIZE 8192 |
58 | #define FILE_SIZE 1024 * 1024 // 1Mb | 59 | #define FILE_SIZE 1024 * 1024 // 1Mb |
59 | 60 | ||
60 | //=========================================================================== | 61 | //=========================================================================== |
61 | 62 | ||
62 | class BenchmarkPaintWidget : public QWidget | 63 | class BenchmarkPaintWidget : public QWidget |
63 | { | 64 | { |
64 | public: | 65 | public: |
65 | BenchmarkPaintWidget() : QWidget( 0, "Benchmark Paint Widget", WStyle_Customize|WStyle_StaysOnTop|WPaintUnclipped|WPaintClever ) | 66 | BenchmarkPaintWidget() : QWidget( 0, "Benchmark Paint Widget", WStyle_Customize|WStyle_StaysOnTop|WPaintUnclipped|WPaintClever ) |
66 | { | 67 | { |
67 | resize( QApplication::desktop()->size() ); | 68 | resize( QApplication::desktop()->size() ); |
68 | show(); | 69 | show(); |
69 | p.begin( this ); | 70 | p.begin( this ); |
70 | }; | 71 | }; |
71 | 72 | ||
72 | ~BenchmarkPaintWidget() | 73 | ~BenchmarkPaintWidget() |
73 | { | 74 | { |
74 | p.end(); | 75 | p.end(); |
75 | hide(); | 76 | hide(); |
76 | }; | 77 | }; |
77 | 78 | ||
78 | QPainter p; | 79 | QPainter p; |
79 | }; | 80 | }; |
80 | 81 | ||
81 | //=========================================================================== | 82 | //=========================================================================== |
82 | 83 | ||
83 | BenchmarkInfo::BenchmarkInfo( QWidget *parent, const char *name, int wFlags ) | 84 | BenchmarkInfo::BenchmarkInfo( QWidget *parent, const char *name, int wFlags ) |
84 | : QWidget( parent, name, wFlags ) | 85 | : QWidget( parent, name, wFlags ) |
85 | { | 86 | { |
86 | 87 | ||
87 | setMinimumSize( 200, 150 ); | 88 | setMinimumSize( 200, 150 ); |
88 | 89 | ||
89 | QVBoxLayout* vb = new QVBoxLayout( this ); | 90 | QVBoxLayout* vb = new QVBoxLayout( this ); |
90 | vb->setSpacing( 4 ); | 91 | vb->setSpacing( 4 ); |
91 | vb->setMargin( 4 ); | 92 | vb->setMargin( 4 ); |
92 | 93 | ||
93 | tests = new QListView( this ); | 94 | tests = new QListView( this ); |
94 | tests->setMargin( 1 ); | 95 | tests->setMargin( 0 ); |
95 | tests->addColumn( "Tests" ); | 96 | tests->addColumn( tr( "Tests" ) ); |
96 | tests->addColumn( "Results" ); | 97 | tests->addColumn( tr( "Results" ) ); |
98 | tests->addColumn( tr( "Comparison" ) ); | ||
97 | tests->setShowSortIndicator( true ); | 99 | tests->setShowSortIndicator( true ); |
98 | 100 | ||
99 | test_alu = new QCheckListItem( tests, "1: Integer Arithmetic ", QCheckListItem::CheckBox ); | 101 | test_alu = new QCheckListItem( tests, tr( "1. Integer Arithmetic " ), QCheckListItem::CheckBox ); |
102 | test_fpu = new QCheckListItem( tests, tr( "2. Floating Point Unit " ), QCheckListItem::CheckBox ); | ||
103 | test_txt = new QCheckListItem( tests, tr( "3. Text Rendering " ), QCheckListItem::CheckBox ); | ||
104 | test_gfx = new QCheckListItem( tests, tr( "4. Gfx Rendering " ), QCheckListItem::CheckBox ); | ||
105 | test_ram = new QCheckListItem( tests, tr( "5. RAM Performance " ), QCheckListItem::CheckBox ); | ||
106 | test_sd = new QCheckListItem( tests, tr( "6. SD Card Performance " ), QCheckListItem::CheckBox ); | ||
107 | test_cf = new QCheckListItem( tests, tr( "7. CF Card Performance " ), QCheckListItem::CheckBox ); | ||
108 | |||
100 | test_alu->setText( 1, "n/a" ); | 109 | test_alu->setText( 1, "n/a" ); |
101 | test_fpu = new QCheckListItem( tests, "2: Floating Point Unit ", QCheckListItem::CheckBox ); | 110 | test_fpu->setText( 1, "n/a" ); |
102 | test_fpu->setText( 1, "n/a" ); | ||
103 | test_txt = new QCheckListItem( tests, "3: Text Rendering ", QCheckListItem::CheckBox ); | ||
104 | test_txt->setText( 1, "n/a" ); | 111 | test_txt->setText( 1, "n/a" ); |
105 | test_gfx = new QCheckListItem( tests, "4: Gfx Rendering ", QCheckListItem::CheckBox ); | ||
106 | test_gfx->setText( 1, "n/a" ); | 112 | test_gfx->setText( 1, "n/a" ); |
107 | test_ram = new QCheckListItem( tests, "5: RAM Performance ", QCheckListItem::CheckBox ); | ||
108 | test_ram->setText( 1, "n/a" ); | 113 | test_ram->setText( 1, "n/a" ); |
109 | test_sd = new QCheckListItem( tests, "6: SD Card Performance ", QCheckListItem::CheckBox ); | ||
110 | test_sd->setText( 1, "n/a" ); | 114 | test_sd->setText( 1, "n/a" ); |
111 | test_cf = new QCheckListItem( tests, "7: CF Card Performance ", QCheckListItem::CheckBox ); | 115 | test_cf->setText( 1, "n/a" ); |
112 | test_cf->setText( 1, "n/a" ); | 116 | |
113 | 117 | test_alu->setText( 2, "n/a" ); | |
118 | test_fpu->setText( 2, "n/a" ); | ||
119 | test_txt->setText( 2, "n/a" ); | ||
120 | test_gfx->setText( 2, "n/a" ); | ||
121 | test_ram->setText( 2, "n/a" ); | ||
122 | test_sd->setText( 2, "n/a" ); | ||
123 | test_cf->setText( 2, "n/a" ); | ||
124 | |||
114 | startButton = new QPushButton( tr( "&Start Tests!" ), this ); | 125 | startButton = new QPushButton( tr( "&Start Tests!" ), this ); |
115 | connect( startButton, SIGNAL( clicked() ), this, SLOT( run() ) ); | 126 | connect( startButton, SIGNAL( clicked() ), this, SLOT( run() ) ); |
116 | 127 | ||
117 | vb->addWidget( tests, 2 ); | 128 | vb->addWidget( tests, 2 ); |
118 | vb->addWidget( startButton ); | 129 | |
130 | QFile f( QPEApplication::qpeDir() + "/share/sysinfo/results" ); | ||
131 | if ( f.open( IO_ReadOnly ) ) | ||
132 | { | ||
133 | machineCombo = new QComboBox( this ); | ||
134 | |||
135 | QTextStream ts( &f ); | ||
136 | while( !ts.eof() ) | ||
137 | { | ||
138 | QString machline = ts.readLine(); | ||
139 | qDebug( "sysinfo: parsing benchmark results for '%s'", (const char*) machline ); | ||
140 | QString resline = ts.readLine(); | ||
141 | machines.insert( machline, new QStringList( QStringList::split( ",", resline ) ) ); | ||
142 | machineCombo->insertItem( machline ); | ||
143 | } | ||
144 | |||
145 | QHBoxLayout* hb = new QHBoxLayout( vb ); | ||
146 | hb->addWidget( new QLabel( tr( "Compare To:" ), this ) ); | ||
147 | hb->addWidget( machineCombo, 2 ); | ||
148 | connect( machineCombo, SIGNAL( activated( int ) ), this, SLOT( machineActivated( int ) ) ); | ||
149 | } | ||
150 | |||
151 | vb->addWidget( startButton, 2 ); | ||
119 | } | 152 | } |
120 | 153 | ||
121 | 154 | ||
122 | BenchmarkInfo::~BenchmarkInfo() | 155 | BenchmarkInfo::~BenchmarkInfo() |
123 | {} | 156 | {} |
124 | 157 | ||
125 | 158 | ||
159 | void BenchmarkInfo::machineActivated( int index ) | ||
160 | { | ||
161 | QStringList* results = machines[ machineCombo->text( index ) ]; | ||
162 | if ( !results ) | ||
163 | { | ||
164 | qDebug( "sysinfo: no results available." ); | ||
165 | return; | ||
166 | } | ||
167 | QStringList::Iterator it = results->begin(); | ||
168 | test_alu->setText( 2, *(it++) ); | ||
169 | test_fpu->setText( 2, *(it++) ); | ||
170 | test_txt->setText( 2, *(it++) ); | ||
171 | test_gfx->setText( 2, *(it++) ); | ||
172 | test_ram->setText( 2, *(it++) ); | ||
173 | test_sd->setText( 2, *(it++) ); | ||
174 | test_cf->setText( 2, *(it++) ); | ||
175 | } | ||
176 | |||
177 | |||
126 | void BenchmarkInfo::run() | 178 | void BenchmarkInfo::run() |
127 | { | 179 | { |
128 | startButton->setText( "> Don't touch! Running Tests! Don't touch! <" ); | 180 | startButton->setText( "> Don't touch! Running Tests! Don't touch! <" ); |
129 | qApp->processEvents(); | 181 | qApp->processEvents(); |
130 | QTime t; | 182 | QTime t; |
131 | 183 | ||
132 | if ( test_alu->isOn() ) | 184 | if ( test_alu->isOn() ) |
133 | { | 185 | { |
134 | int d = round( dhry_main( DHRYSTONE_RUNS ) ); | 186 | int d = round( dhry_main( DHRYSTONE_RUNS ) ); |
135 | test_alu->setText( 1, QString( "%1 dhrys" ).arg( QString::number( d ) ) ); | 187 | test_alu->setText( 1, QString( "%1 dhrys" ).arg( QString::number( d ) ) ); |
136 | test_alu->setOn( false ); | 188 | test_alu->setOn( false ); |
137 | } | 189 | } |
138 | 190 | ||
139 | if ( test_fpu->isOn() ) | 191 | if ( test_fpu->isOn() ) |
140 | { | 192 | { |
141 | t.start(); | 193 | t.start(); |
142 | BenchFFT(); | 194 | BenchFFT(); |
143 | test_fpu->setText( 1, QString( "%1 secs" ).arg( QString::number( t.elapsed() / 1000.0 ) ) ); | 195 | test_fpu->setText( 1, QString( "%1 secs" ).arg( QString::number( t.elapsed() / 1000.0 ) ) ); |
144 | test_fpu->setOn( false ); | 196 | test_fpu->setOn( false ); |
145 | } | 197 | } |
146 | 198 | ||
147 | if ( test_txt->isOn() ) | 199 | if ( test_txt->isOn() ) |
148 | { | 200 | { |
149 | int value = textRendering( TEST_DURATION ); | 201 | int value = textRendering( TEST_DURATION ); |
150 | test_txt->setText( 1, QString( "%1 chars/sec" ).arg( QString::number( value / TEST_DURATION ) ) ); | 202 | test_txt->setText( 1, QString( "%1 chars/sec" ).arg( QString::number( value / TEST_DURATION ) ) ); |
151 | test_txt->setOn( false ); | 203 | test_txt->setOn( false ); |
152 | } | 204 | } |
153 | 205 | ||
154 | if ( test_gfx->isOn() ) | 206 | if ( test_gfx->isOn() ) |
155 | { | 207 | { |
156 | int value = gfxRendering( TEST_DURATION ); | 208 | int value = gfxRendering( TEST_DURATION ); |
157 | test_gfx->setText( 1, QString( "%1 gops/sec" ).arg( QString::number( value / 4 / TEST_DURATION ) ) ); // 4 tests | 209 | test_gfx->setText( 1, QString( "%1 gops/sec" ).arg( QString::number( value / 4 / TEST_DURATION ) ) ); // 4 tests |
158 | test_gfx->setOn( false ); | 210 | test_gfx->setOn( false ); |
159 | } | 211 | } |
160 | 212 | ||
161 | if ( test_ram->isOn() ) // /tmp is supposed to be in RAM on a PDA | 213 | if ( test_ram->isOn() ) // /tmp is supposed to be in RAM on a PDA |
162 | { | 214 | { |
163 | performFileTest( "/tmp/benchmarkFile.dat", test_ram ); | 215 | performFileTest( "/tmp/benchmarkFile.dat", test_ram ); |
164 | } | 216 | } |
165 | 217 | ||
166 | if ( test_cf->isOn() ) | 218 | if ( test_cf->isOn() ) |
167 | { | 219 | { |
168 | OStorageInfo storage; | 220 | OStorageInfo storage; |
169 | performFileTest( storage.cfPath() + "/benchmarkFile.dat", test_cf ); | 221 | performFileTest( storage.cfPath() + "/benchmarkFile.dat", test_cf ); |
170 | } | 222 | } |
171 | 223 | ||
172 | if ( test_sd->isOn() ) | 224 | if ( test_sd->isOn() ) |
173 | { | 225 | { |
174 | OStorageInfo storage; | 226 | OStorageInfo storage; |
175 | performFileTest( storage.sdPath() + "/benchmarkFile.dat", test_sd ); | 227 | performFileTest( storage.sdPath() + "/benchmarkFile.dat", test_sd ); |
176 | } | 228 | } |
177 | 229 | ||
178 | startButton->setText( tr( "&Start Tests!" ) ); | 230 | startButton->setText( tr( "&Start Tests!" ) ); |
179 | } | 231 | } |
180 | 232 | ||
181 | 233 | ||
182 | int BenchmarkInfo::textRendering( int seconds ) | 234 | int BenchmarkInfo::textRendering( int seconds ) |
183 | { | 235 | { |
184 | QTime t; | 236 | QTime t; |
185 | t.start(); | 237 | t.start(); |
186 | int stop = t.elapsed() + seconds * 1000; | 238 | int stop = t.elapsed() + seconds * 1000; |
187 | 239 | ||
188 | int rr[] = { 255, 255, 255, 0, 0, 0, 0, 128, 128 }; | 240 | int rr[] = { 255, 255, 255, 0, 0, 0, 0, 128, 128 }; |
189 | int gg[] = { 0, 255, 0, 0, 255, 255, 0, 128, 128 }; | 241 | int gg[] = { 0, 255, 0, 0, 255, 255, 0, 128, 128 }; |
190 | int bb[] = { 0, 0, 255, 0, 0, 255, 255, 128, 0 }; | 242 | int bb[] = { 0, 0, 255, 0, 0, 255, 255, 128, 0 }; |
191 | const QString text( "Opie Benchmark Test" ); | 243 | const QString text( "Opie Benchmark Test" ); |
192 | 244 | ||
193 | int w = QApplication::desktop()->width(); | 245 | int w = QApplication::desktop()->width(); |
194 | int h = QApplication::desktop()->height(); | 246 | int h = QApplication::desktop()->height(); |
195 | 247 | ||
196 | srand( time( NULL ) ); | 248 | srand( time( NULL ) ); |
197 | 249 | ||
198 | BenchmarkPaintWidget bpw; | 250 | BenchmarkPaintWidget bpw; |
199 | 251 | ||
200 | int loops = 0; | 252 | int loops = 0; |
201 | 253 | ||
202 | while ( t.elapsed() < stop ) | 254 | while ( t.elapsed() < stop ) |
203 | { | 255 | { |
204 | int k = rand() % 9; | 256 | int k = rand() % 9; |
205 | int s = rand() % 100; | 257 | int s = rand() % 100; |
206 | bpw.p.setPen( QColor( rr[ k ], gg[ k ], bb[ k ] ) ); | 258 | bpw.p.setPen( QColor( rr[ k ], gg[ k ], bb[ k ] ) ); |
207 | bpw.p.setFont( QFont( "Vera", s ) ); | 259 | bpw.p.setFont( QFont( "Vera", s ) ); |
208 | bpw.p.drawText( rand() % w, rand() % h, text, text.length() ); | 260 | bpw.p.drawText( rand() % w, rand() % h, text, text.length() ); |
209 | ++loops; | 261 | ++loops; |
210 | } | 262 | } |
211 | 263 | ||
212 | return loops * text.length(); | 264 | return loops * text.length(); |
213 | } | 265 | } |
214 | 266 | ||
215 | int BenchmarkInfo::gfxRendering( int seconds ) | 267 | int BenchmarkInfo::gfxRendering( int seconds ) |
216 | { | 268 | { |
217 | int rr[] = { 255, 255, 255, 0, 0, 0, 0, 128, 128 }; | 269 | int rr[] = { 255, 255, 255, 0, 0, 0, 0, 128, 128 }; |
218 | int gg[] = { 0, 255, 0, 0, 255, 255, 0, 128, 128 }; | 270 | int gg[] = { 0, 255, 0, 0, 255, 255, 0, 128, 128 }; |
219 | int bb[] = { 0, 0, 255, 0, 0, 255, 255, 128, 0 }; | 271 | int bb[] = { 0, 0, 255, 0, 0, 255, 255, 128, 0 }; |
220 | 272 | ||
221 | int w = QApplication::desktop()->width(); | 273 | int w = QApplication::desktop()->width(); |
222 | int h = QApplication::desktop()->height(); | 274 | int h = QApplication::desktop()->height(); |
223 | 275 | ||
224 | srand( time( NULL ) ); | 276 | srand( time( NULL ) ); |
225 | 277 | ||
226 | BenchmarkPaintWidget bpw; | 278 | BenchmarkPaintWidget bpw; |
227 | 279 | ||
228 | QTime t; | 280 | QTime t; |
229 | t.start(); | 281 | t.start(); |
230 | int stop = t.elapsed() + seconds*1000; | 282 | int stop = t.elapsed() + seconds*1000; |
231 | int loops = 0; | 283 | int loops = 0; |
232 | 284 | ||
233 | while ( t.elapsed() < stop ) | 285 | while ( t.elapsed() < stop ) |
234 | { | 286 | { |
235 | int k = rand() % 9; | 287 | int k = rand() % 9; |
236 | bpw.p.setPen( QColor( rr[ k ], gg[ k ], bb[ k ] ) ); | 288 | bpw.p.setPen( QColor( rr[ k ], gg[ k ], bb[ k ] ) ); |
237 | bpw.p.drawLine( rand()%w, rand()%h, rand()%w, rand()%h ); | 289 | bpw.p.drawLine( rand()%w, rand()%h, rand()%w, rand()%h ); |
238 | ++loops; | 290 | ++loops; |
239 | } | 291 | } |
240 | 292 | ||
241 | t.restart(); | 293 | t.restart(); |
242 | stop = t.elapsed() + seconds*1000; | 294 | stop = t.elapsed() + seconds*1000; |
243 | 295 | ||
244 | while ( t.elapsed() < stop ) | 296 | while ( t.elapsed() < stop ) |
245 | { | 297 | { |
246 | int k = rand() % 9; | 298 | int k = rand() % 9; |
247 | bpw.p.setPen( QColor( rr[ k ], gg[ k ], bb[ k ] ) ); | 299 | bpw.p.setPen( QColor( rr[ k ], gg[ k ], bb[ k ] ) ); |
248 | bpw.p.drawArc( rand()%w, rand()%h, rand()%w, rand()%h, 360 * 16, 360 * 16 ); | 300 | bpw.p.drawArc( rand()%w, rand()%h, rand()%w, rand()%h, 360 * 16, 360 * 16 ); |
249 | ++loops; | 301 | ++loops; |
250 | } | 302 | } |
251 | 303 | ||
252 | QBrush br1; | 304 | QBrush br1; |
253 | br1.setStyle( SolidPattern ); | 305 | br1.setStyle( SolidPattern ); |
254 | t.restart(); | 306 | t.restart(); |
255 | stop = t.elapsed() + seconds*1000; | 307 | stop = t.elapsed() + seconds*1000; |
256 | 308 | ||
257 | while ( t.elapsed() < stop ) | 309 | while ( t.elapsed() < stop ) |
258 | { | 310 | { |
259 | int k = rand() % 9; | 311 | int k = rand() % 9; |
260 | br1.setColor( QColor( rr[ k ], gg[ k ], bb[ k ] ) ); | 312 | br1.setColor( QColor( rr[ k ], gg[ k ], bb[ k ] ) ); |
261 | bpw.p.fillRect( rand()%w, rand()%h, rand()%w, rand()%h, br1 ); | 313 | bpw.p.fillRect( rand()%w, rand()%h, rand()%w, rand()%h, br1 ); |
262 | ++loops; | 314 | ++loops; |
263 | } | 315 | } |
264 | 316 | ||
265 | QPixmap p = Resource::loadPixmap( "sysinfo/pattern" ); | 317 | QPixmap p = Resource::loadPixmap( "sysinfo/pattern" ); |
266 | t.restart(); | 318 | t.restart(); |
267 | stop = t.elapsed() + seconds*1000; | 319 | stop = t.elapsed() + seconds*1000; |
268 | 320 | ||
269 | while ( t.elapsed() < stop ) | 321 | while ( t.elapsed() < stop ) |
270 | { | 322 | { |
271 | bpw.p.drawPixmap( rand()%w, rand()%h, p ); | 323 | bpw.p.drawPixmap( rand()%w, rand()%h, p ); |
272 | ++loops; | 324 | ++loops; |
273 | } | 325 | } |
274 | 326 | ||
275 | return loops; | 327 | return loops; |
276 | 328 | ||
277 | } | 329 | } |
278 | 330 | ||
279 | void BenchmarkInfo::performFileTest( const QString& fname, QCheckListItem* item ) | 331 | void BenchmarkInfo::performFileTest( const QString& fname, QCheckListItem* item ) |
280 | { | 332 | { |
281 | QTime time; | 333 | QTime time; |
282 | time.start(); | 334 | time.start(); |
283 | if ( writeFile( fname ) && | 335 | if ( writeFile( fname ) && |
284 | readFile( fname ) ) | 336 | readFile( fname ) ) |
285 | { | 337 | { |
286 | QFile::remove( fname ); | 338 | QFile::remove( fname ); |
287 | item->setText( 1, QString( "%1 kb/sec" ).arg( QString::number( 1024.0 / ( time.elapsed() / 1000.0 ) ) ) ); | 339 | item->setText( 1, QString( "%1 kb/sec" ).arg( QString::number( 1024.0 / ( time.elapsed() / 1000.0 ) ) ) ); |
288 | item->setOn( false ); | 340 | item->setOn( false ); |
289 | } | 341 | } |
290 | else | 342 | else |
291 | { | 343 | { |
292 | item->setText( 1, tr( "error" ) ); | 344 | item->setText( 1, tr( "error" ) ); |
293 | } | 345 | } |
294 | } | 346 | } |
295 | 347 | ||
296 | char FileBuf[ BUFF_SIZE + 1 ]; | 348 | char FileBuf[ BUFF_SIZE + 1 ]; |
297 | 349 | ||
298 | bool BenchmarkInfo::writeFile( const QString& w_path ) | 350 | bool BenchmarkInfo::writeFile( const QString& w_path ) |
299 | { | 351 | { |
300 | int i; | 352 | int i; |
301 | int k; | 353 | int k; |
302 | int n; | 354 | int n; |
303 | int pos; | 355 | int pos; |
304 | int len; | 356 | int len; |
305 | char *data = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; // 62 | 357 | char *data = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; // 62 |
306 | 358 | ||
307 | 359 | ||
308 | // /*------------------------------------ | 360 | // /*------------------------------------ |
309 | int w_len; | 361 | int w_len; |
310 | 362 | ||
311 | QFile writeFile( w_path ); | 363 | QFile writeFile( w_path ); |
312 | srand( time( NULL ) ); | 364 | srand( time( NULL ) ); |
313 | 365 | ||
314 | for ( n = 0 ; n < 20 ; n++ ) | 366 | for ( n = 0 ; n < 20 ; n++ ) |
315 | { | 367 | { |
316 | if ( ! writeFile.open( IO_WriteOnly ) ) | 368 | if ( ! writeFile.open( IO_WriteOnly ) ) |
317 | { | 369 | { |
318 | writeFile.close(); | 370 | writeFile.close(); |
319 | writeFile.remove(); | 371 | writeFile.remove(); |
320 | return ( false ); | 372 | return ( false ); |
321 | } | 373 | } |
322 | // ------------------------------------------ sequential write | 374 | // ------------------------------------------ sequential write |
323 | for ( k = 0 ; k < 256 ; k++ ) | 375 | for ( k = 0 ; k < 256 ; k++ ) |
324 | { | 376 | { |
325 | n = rand() % 30; | 377 | n = rand() % 30; |
326 | memcpy( &FileBuf[ k * 32 ], &data[ n ], 32 ); | 378 | memcpy( &FileBuf[ k * 32 ], &data[ n ], 32 ); |
327 | } | 379 | } |
328 | 380 | ||
329 | for ( i = 0 ; i < FILE_SIZE / BUFF_SIZE ; i++ ) | 381 | for ( i = 0 ; i < FILE_SIZE / BUFF_SIZE ; i++ ) |
330 | { | 382 | { |
331 | w_len = writeFile.writeBlock( FileBuf, BUFF_SIZE ); | 383 | w_len = writeFile.writeBlock( FileBuf, BUFF_SIZE ); |
332 | if ( w_len != BUFF_SIZE ) | 384 | if ( w_len != BUFF_SIZE ) |
333 | { | 385 | { |
334 | writeFile.close(); | 386 | writeFile.close(); |
335 | writeFile.remove(); | 387 | writeFile.remove(); |
336 | return ( false ); | 388 | return ( false ); |
337 | } | 389 | } |
338 | writeFile.flush(); | 390 | writeFile.flush(); |
339 | } | 391 | } |
340 | // ------------------------------------------ random write | 392 | // ------------------------------------------ random write |
341 | for ( i = 0 ; i < 400 ; i++ ) | 393 | for ( i = 0 ; i < 400 ; i++ ) |
342 | { | 394 | { |
343 | len = rand() % 90 + 4000; | 395 | len = rand() % 90 + 4000; |
344 | for ( k = 0 ; k < 128 ; k++ ) | 396 | for ( k = 0 ; k < 128 ; k++ ) |
345 | { | 397 | { |
346 | n = rand() % 30; | 398 | n = rand() % 30; |
347 | memcpy( &FileBuf[ k * 8 ], &data[ n ], 32 ); | 399 | memcpy( &FileBuf[ k * 8 ], &data[ n ], 32 ); |
348 | } | 400 | } |
349 | pos = rand() % ( FILE_SIZE - BUFF_SIZE ); | 401 | pos = rand() % ( FILE_SIZE - BUFF_SIZE ); |
350 | 402 | ||
351 | writeFile.at( pos ); | 403 | writeFile.at( pos ); |
352 | w_len = writeFile.writeBlock( FileBuf, len ); | 404 | w_len = writeFile.writeBlock( FileBuf, len ); |
353 | if ( w_len != len ) | 405 | if ( w_len != len ) |
354 | { | 406 | { |
355 | writeFile.close(); | 407 | writeFile.close(); |
356 | writeFile.remove(); | 408 | writeFile.remove(); |
357 | return ( false ); | 409 | return ( false ); |
358 | } | 410 | } |
359 | writeFile.flush(); | 411 | writeFile.flush(); |
360 | } | 412 | } |
361 | writeFile.close(); | 413 | writeFile.close(); |
362 | } | 414 | } |
363 | return ( true ); | 415 | return ( true ); |
364 | 416 | ||
365 | } | 417 | } |
366 | 418 | ||
367 | 419 | ||
368 | bool BenchmarkInfo::readFile( const QString& r_path ) | 420 | bool BenchmarkInfo::readFile( const QString& r_path ) |
369 | { | 421 | { |
370 | int i; | 422 | int i; |
371 | int k; | 423 | int k; |
372 | int len; | 424 | int len; |
373 | int pos; | 425 | int pos; |
374 | int r_len; | 426 | int r_len; |
375 | 427 | ||
376 | QFile readFile( r_path ); | 428 | QFile readFile( r_path ); |
377 | srand( time( NULL ) ); | 429 | srand( time( NULL ) ); |
378 | 430 | ||
379 | for ( k = 0 ; k < 200 ; k++ ) | 431 | for ( k = 0 ; k < 200 ; k++ ) |
380 | { | 432 | { |
381 | if ( ! readFile.open( IO_ReadOnly ) ) | 433 | if ( ! readFile.open( IO_ReadOnly ) ) |
382 | { | 434 | { |
383 | readFile.remove(); | 435 | readFile.remove(); |
384 | return ( false ); | 436 | return ( false ); |
385 | } | 437 | } |
386 | // ------------------------------------------ sequential read | 438 | // ------------------------------------------ sequential read |
387 | readFile.at( 0 ); | 439 | readFile.at( 0 ); |
388 | for ( i = 0 ; i < FILE_SIZE / BUFF_SIZE ; i++ ) | 440 | for ( i = 0 ; i < FILE_SIZE / BUFF_SIZE ; i++ ) |
389 | { | 441 | { |
390 | readFile.at( i * BUFF_SIZE ); | 442 | readFile.at( i * BUFF_SIZE ); |
391 | r_len = readFile.readBlock( FileBuf, BUFF_SIZE ); | 443 | r_len = readFile.readBlock( FileBuf, BUFF_SIZE ); |
392 | if ( r_len != BUFF_SIZE ) | 444 | if ( r_len != BUFF_SIZE ) |
393 | { | 445 | { |
394 | readFile.close(); | 446 | readFile.close(); |
395 | readFile.remove(); | 447 | readFile.remove(); |
396 | return ( false ); | 448 | return ( false ); |
397 | } | 449 | } |
398 | } | 450 | } |
399 | // ------------------------------------------ random read | 451 | // ------------------------------------------ random read |
400 | for ( i = 0 ; i < 1000 ; i++ ) | 452 | for ( i = 0 ; i < 1000 ; i++ ) |
401 | { | 453 | { |
402 | len = rand() % 120 + 8; | 454 | len = rand() % 120 + 8; |
403 | pos = rand() % ( FILE_SIZE / BUFF_SIZE - BUFF_SIZE ); | 455 | pos = rand() % ( FILE_SIZE / BUFF_SIZE - BUFF_SIZE ); |
404 | readFile.at( pos ); | 456 | readFile.at( pos ); |
405 | r_len = readFile.readBlock( FileBuf, len ); | 457 | r_len = readFile.readBlock( FileBuf, len ); |
406 | if ( r_len != len ) | 458 | if ( r_len != len ) |
407 | { | 459 | { |
408 | readFile.close(); | 460 | readFile.close(); |
409 | readFile.remove(); | 461 | readFile.remove(); |
410 | return ( false ); | 462 | return ( false ); |
411 | } | 463 | } |
412 | } | 464 | } |
413 | readFile.close(); | 465 | readFile.close(); |
414 | } | 466 | } |
415 | return ( true ); | 467 | return ( true ); |
416 | } | 468 | } |
diff --git a/noncore/settings/sysinfo/benchmarkinfo.h b/noncore/settings/sysinfo/benchmarkinfo.h index 3c5ca37..d143602 100644 --- a/noncore/settings/sysinfo/benchmarkinfo.h +++ b/noncore/settings/sysinfo/benchmarkinfo.h | |||
@@ -1,64 +1,69 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** BenchmarkInfo | 2 | ** BenchmarkInfo |
3 | ** | 3 | ** |
4 | ** A benchmark for Qt/Embedded | 4 | ** A benchmark for Qt/Embedded |
5 | ** | 5 | ** |
6 | ** Copyright (C) 2004 Michael Lauer <mickey@vanille.de> | 6 | ** Copyright (C) 2004 Michael Lauer <mickey@vanille.de> |
7 | ** Inspired by ZBench (C) 2002 Satoshi <af230533@im07.alpha-net.ne.jp> | 7 | ** Inspired by ZBench (C) 2002 Satoshi <af230533@im07.alpha-net.ne.jp> |
8 | ** | 8 | ** |
9 | ** This file may be distributed and/or modified under the terms of the | 9 | ** This file may be distributed and/or modified under the terms of the |
10 | ** GNU General Public License version 2 as published by the Free Software | 10 | ** GNU General Public License version 2 as published by the Free Software |
11 | ** Foundation and appearing in the file LICENSE.GPL included in the | 11 | ** Foundation and appearing in the file LICENSE.GPL included in the |
12 | ** packaging of this file. | 12 | ** packaging of this file. |
13 | ** | 13 | ** |
14 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 14 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
15 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 15 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
16 | ** | 16 | ** |
17 | **********************************************************************/ | 17 | **********************************************************************/ |
18 | 18 | ||
19 | #include <qwidget.h> | 19 | #include <qwidget.h> |
20 | #include <qdialog.h> | 20 | #include <qdialog.h> |
21 | #include <qdict.h> | ||
22 | #include <qstringlist.h> | ||
21 | 23 | ||
22 | class QClipboard; | 24 | class QClipboard; |
25 | class QComboBox; | ||
23 | class QCheckListItem; | 26 | class QCheckListItem; |
24 | class QPushButton; | 27 | class QPushButton; |
25 | class QListView; | 28 | class QListView; |
26 | 29 | ||
27 | class BenchmarkInfo : public QWidget | 30 | class BenchmarkInfo : public QWidget |
28 | { | 31 | { |
29 | Q_OBJECT | 32 | Q_OBJECT |
30 | 33 | ||
31 | public: | 34 | public: |
32 | BenchmarkInfo( QWidget *parent = 0, const char *name = 0, int wFlags = 0 ); | 35 | BenchmarkInfo( QWidget *parent = 0, const char *name = 0, int wFlags = 0 ); |
33 | ~BenchmarkInfo(); | 36 | ~BenchmarkInfo(); |
34 | 37 | ||
35 | QCheckListItem* test_alu; | 38 | QCheckListItem* test_alu; |
36 | QCheckListItem* test_fpu; | 39 | QCheckListItem* test_fpu; |
37 | QCheckListItem* test_txt; | 40 | QCheckListItem* test_txt; |
38 | QCheckListItem* test_gfx; | 41 | QCheckListItem* test_gfx; |
39 | QCheckListItem* test_ram; | 42 | QCheckListItem* test_ram; |
40 | QCheckListItem* test_sd; | 43 | QCheckListItem* test_sd; |
41 | QCheckListItem* test_cf; | 44 | QCheckListItem* test_cf; |
42 | 45 | ||
43 | bool main_rd; | 46 | bool main_rd; |
44 | bool main_wt; | 47 | bool main_wt; |
45 | bool sd_rd; | 48 | bool sd_rd; |
46 | bool sd_wt; | 49 | bool sd_wt; |
47 | bool cf_rd; | 50 | bool cf_rd; |
48 | bool cf_wt; | 51 | bool cf_wt; |
49 | 52 | ||
50 | QClipboard* clb; | 53 | QClipboard* clb; |
51 | 54 | QComboBox* machineCombo; | |
52 | QListView* tests; | 55 | QListView* tests; |
53 | QPushButton* startButton; | 56 | QPushButton* startButton; |
57 | QDict <QStringList> machines; | ||
54 | 58 | ||
55 | int textRendering( int ); | 59 | int textRendering( int ); |
56 | int gfxRendering( int ); | 60 | int gfxRendering( int ); |
57 | void performFileTest( const QString& fname, QCheckListItem* item ); | 61 | void performFileTest( const QString& fname, QCheckListItem* item ); |
58 | 62 | ||
59 | private slots: | 63 | private slots: |
60 | bool writeFile( const QString& ); | 64 | bool writeFile( const QString& ); |
61 | bool readFile( const QString& ); | 65 | bool readFile( const QString& ); |
62 | void run(); | 66 | void run(); |
67 | void machineActivated( int ); | ||
63 | }; | 68 | }; |
64 | 69 | ||
diff --git a/share/sysinfo/results b/share/sysinfo/results new file mode 100644 index 0000000..1866da3 --- a/dev/null +++ b/share/sysinfo/results | |||
@@ -0,0 +1,30 @@ | |||
1 | <Choose a model> | ||
2 | n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a | ||
3 | Sharp SL-5500 | ||
4 | 240010 dhrys,41.498 sec,88 char/sec,1786 gops/sec,50.123 kb/sec,41.7329 kb/sec,105.873 kb/sec | ||
5 | Sharp SL-5600 | ||
6 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
7 | Sharp C-700 | ||
8 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
9 | Sharp C-750 | ||
10 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
11 | Sharp C-760 | ||
12 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
13 | Sharp C-860 | ||
14 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
15 | HP iPAQ 36xx | ||
16 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
17 | HP iPAQ 37xx | ||
18 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
19 | HP iPAQ 38xx | ||
20 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
21 | HP iPAQ 54xx | ||
22 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
23 | HP iPAQ 55xx | ||
24 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
25 | HP Jornada 5x0 | ||
26 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
27 | M&N Ramses | ||
28 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||
29 | SIEMENS SIMpad | ||
30 | not,yet,contributed,please,mail,to,opie@handhelds.org | ||