-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathget_strings.dart
131 lines (112 loc) · 3.44 KB
/
get_strings.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
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import '../benchmark.dart';
import '../generated/benchmark.pb.dart'
show BenchmarkID, Params, Request, Sample;
import '../generated/string_grid.pb.dart' as pb;
/// A benchmark that accesses each value in a grid of string fields.
class GetStringsBenchmark extends Benchmark {
static const width = 10;
final int height;
final String? fillValue; // null means start uninitialized.
late pb.Grid10 grid;
GetStringsBenchmark(this.height, this.fillValue) : super($id);
@override
String get summary {
final fill = fillValue == null ? 'null' : "'$fillValue'";
return '${id.name}($height x $fill)';
}
@override
Params makeParams() {
final p = Params()..messageCount = height;
if (fillValue != null) p.stringValue = fillValue!;
return p;
}
@override
void setup() {
grid = _makeGrid(height, fillValue);
}
// makes a rectangle where every cell has the same value.
static pb.Grid10 _makeGrid(int height, String? fillValue) {
final grid = pb.Grid10();
for (var y = 0; y < height; y++) {
final line = pb.Line10();
if (fillValue != null) {
for (var x = 0; x < width; x++) {
final tag = getTagForColumn(line, x);
line.setField(tag, fillValue);
}
}
grid.lines.add(line);
}
return grid;
}
static int getTagForColumn(pb.Line10 line, int x) {
return line.getTagNumber('cell${x + 1}')!; // assume x start from 1
}
@override
int exercise() {
const reps = 100;
for (var i = 0; i < reps; i++) {
run();
}
return reps;
}
@override
void run() {
if (fillValue == null) {
_getDefaults();
} else {
_getStrings();
}
}
void _getDefaults() {
var ok = true;
for (final line in grid.lines) {
ok = ok && line.cell1.isEmpty;
ok = ok && line.cell2.isEmpty;
ok = ok && line.cell3.isEmpty;
ok = ok && line.cell4.isEmpty;
ok = ok && line.cell5.isEmpty;
ok = ok && line.cell6.isEmpty;
ok = ok && line.cell7.isEmpty;
ok = ok && line.cell8.isEmpty;
ok = ok && line.cell9.isEmpty;
ok = ok && line.cell10.isEmpty;
}
if (!ok) throw 'failed';
}
void _getStrings() {
var ok = true;
for (final line in grid.lines) {
ok = ok && line.cell1.isNotEmpty;
ok = ok && line.cell2.isNotEmpty;
ok = ok && line.cell3.isNotEmpty;
ok = ok && line.cell4.isNotEmpty;
ok = ok && line.cell5.isNotEmpty;
ok = ok && line.cell6.isNotEmpty;
ok = ok && line.cell7.isNotEmpty;
ok = ok && line.cell8.isNotEmpty;
ok = ok && line.cell9.isNotEmpty;
ok = ok && line.cell10.isNotEmpty;
}
if (!ok) throw 'failed';
}
@override
void setCounts(Sample m) {
m.counts.stringReads = width * height * m.loopCount;
}
@override
double measureSample(Sample? s) => stringReadsPerMillisecond(s);
@override
String get measureSampleUnits => 'string reads/ms';
static const $id = BenchmarkID.GET_STRINGS;
static final $type = const BenchmarkType($id, $create);
static GetStringsBenchmark $create(Request r) {
assert(r.params.hasMessageCount());
String? value;
if (r.params.hasStringValue()) value = r.params.stringValue;
return GetStringsBenchmark(r.params.messageCount, value);
}
}