forked from hivedb/hive_benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
331 lines (304 loc) · 8.35 KB
/
main.dart
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
import 'dart:math';
import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart';
import 'package:hive_benchmark/benchmark.dart';
void main() => runApp(App());
class App extends StatefulWidget {
@override
_AppState createState() => _AppState();
}
class _AppState extends State<App> with SingleTickerProviderStateMixin {
TabController controller;
@override
void initState() {
super.initState();
controller = TabController(length: 3, vsync: this);
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(15.0),
child: Column(
children: <Widget>[
Center(
child: Text(
"Hive Benchmark",
style: TextStyle(fontSize: 40),
),
),
SizedBox(height: 15),
TabBar(
tabs: <Widget>[
Tab(text: "read"),
Tab(text: "write"),
Tab(text: "delete"),
],
labelColor: const Color(0xff7589a2),
controller: controller,
onTap: (index) {
setState(() {});
},
),
SizedBox(height: 25),
Expanded(
child:
BenchmarkWidget(BenchmarkType.values[controller.index]),
),
],
),
),
),
),
);
}
}
enum BenchmarkType { read, write, delete }
class BenchmarkWidget extends StatefulWidget {
final BenchmarkType type;
BenchmarkWidget(this.type);
@override
_BenchmarkWidgetState createState() => _BenchmarkWidgetState();
}
class _BenchmarkWidgetState extends State<BenchmarkWidget> {
static const entrySteps = [10, 20, 50, 100, 200, 500, 1000];
var entryValue = 0.0;
int get entries => entrySteps[entryValue.round()];
var benchmarkRunning = false;
List<Result> benchmarkResults;
@override
void didChangeDependencies() {
benchmarkResults = null;
benchmarkRunning = false;
super.didChangeDependencies();
}
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
if (benchmarkResults == null)
Expanded(
child: Center(
child: Text('Run benchmark to show data'),
),
)
else
Expanded(
child: Center(
child: BenchmarkResult(benchmarkResults),
),
),
SizedBox(height: 20),
Row(
children: <Widget>[
Expanded(
child: Slider(
value: entryValue,
min: 0,
max: (entrySteps.length - 1).toDouble(),
divisions: entrySteps.length - 2,
onChanged: (newValue) {
setState(() {
entryValue = newValue;
});
},
),
),
SizedBox(
width: 80,
child: Text(entries.toString() + " Entries"),
),
],
),
Center(
child: RaisedButton(
onPressed: !benchmarkRunning ? _performBenchmark : null,
child: Text("Benchmark"),
),
),
SizedBox(height: 20),
],
);
}
_performBenchmark() async {
var entries = this.entries;
setState(() {
benchmarkRunning = true;
});
List<Result> results;
switch (widget.type) {
case BenchmarkType.read:
results = await benchmarkRead(entries);
break;
case BenchmarkType.write:
results = await benchmarkWrite(entries);
break;
case BenchmarkType.delete:
results = await benchmarkDelete(entries);
break;
}
setState(() {
benchmarkRunning = false;
benchmarkResults = results;
});
}
}
class BenchmarkResult extends StatelessWidget {
final Color leftBarColor = Color(0xff53fdd7);
final Color rightBarColor = Color(0xffff5182);
final double width = 12;
final List<Result> results;
BenchmarkResult(this.results);
List<String> get labels {
return results.map((r) => r.runner.name).toList();
}
int get maxResultTime {
var max = 0;
for (var result in results) {
if (result.intTime > max) {
max = result.intTime;
}
if (result.stringTime > max) {
max = result.stringTime;
}
}
return max;
}
List<BarChartGroupData> get barGroups {
var x = 0;
return results.map((result) {
return BarChartGroupData(
barsSpace: 4,
x: x++,
barRods: [
BarChartRodData(
y: max(result.intTime.toDouble(), 1),
color: leftBarColor,
width: width,
isRound: true,
),
BarChartRodData(
y: max(result.stringTime.toDouble(), 1),
color: rightBarColor,
width: width,
isRound: true,
),
],
);
}).toList();
}
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
SizedBox(height: 10),
Center(
child: Row(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
SizedBox(
width: 15,
height: 15,
child: Container(
color: leftBarColor,
),
),
SizedBox(width: 5),
Text(
'Integers',
style: TextStyle(
color: const Color(0xff7589a2),
fontWeight: FontWeight.bold,
fontSize: 14,
),
),
SizedBox(width: 10),
SizedBox(
width: 15,
height: 15,
child: Container(
color: rightBarColor,
),
),
SizedBox(width: 5),
Text(
'Strings',
style: TextStyle(
color: const Color(0xff7589a2),
fontWeight: FontWeight.bold,
fontSize: 14,
),
),
],
),
),
SizedBox(height: 20),
Expanded(
child: _buildChart(),
),
],
);
}
_buildChart() {
var maxTime = maxResultTime;
return Container(
child: FlChart(
chart: BarChart(
BarChartData(
barTouchData: BarTouchData(
touchTooltipData: TouchTooltipData(
tooltipBgColor: Colors.grey,
getTooltipItems: (spots) {
return spots.map((TouchedSpot spot) {
return null;
}).toList();
},
),
),
maxY: maxTime.toDouble(),
alignment: BarChartAlignment.spaceAround,
titlesData: FlTitlesData(
show: true,
bottomTitles: SideTitles(
showTitles: true,
textStyle: TextStyle(
color: const Color(0xff7589a2),
fontWeight: FontWeight.bold,
fontSize: 14,
),
margin: 20,
getTitles: (double value) {
return labels[value.toInt()];
},
),
leftTitles: SideTitles(
showTitles: true,
textStyle: TextStyle(
color: const Color(0xff7589a2),
fontWeight: FontWeight.bold,
fontSize: 14,
),
margin: 32,
reservedSize: 50,
getTitles: (value) {
if (value % (maxResultTime ~/ 4) == 0) {
return value.toInt().toString() + 'ms';
}
return '';
},
),
),
borderData: FlBorderData(
show: false,
),
barGroups: barGroups,
),
),
),
);
}
}