-
Notifications
You must be signed in to change notification settings - Fork 2
/
benchmarks_test.go
293 lines (243 loc) · 5.76 KB
/
benchmarks_test.go
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
package osmzen
import (
"context"
"encoding/xml"
"fmt"
"io/ioutil"
"os"
"testing"
"github.com/paulmach/osmzen/filter"
"github.com/paulmach/orb/maptile"
"github.com/paulmach/osm"
"github.com/paulmach/osm/osmapi"
"github.com/paulmach/osm/osmgeojson"
)
func loadLayer(filename string) (*Layer, error) {
l := &Layer{}
err := l.load("layer", func(string) ([]byte, error) {
return ioutil.ReadFile(filename)
})
return l, err
}
func BenchmarkBuildings(b *testing.B) {
layer, err := loadLayer("config/yaml/buildings.yaml")
if err != nil {
b.Fatalf("failed to load: %v", err)
}
o := &osm.OSM{
Ways: osm.Ways{
{
ID: 1,
Version: 2,
Nodes: osm.WayNodes{
{ID: 1, Lat: 0, Lon: 0},
{ID: 2, Lat: 0, Lon: 0.001},
{ID: 3, Lat: 0.001, Lon: 0.001},
{ID: 4, Lat: 0.001, Lon: 0},
{ID: 1, Lat: 0, Lon: 0},
},
Tags: osm.Tags{
{Key: "building", Value: "no"},
{Key: "building:part", Value: "yes"},
},
},
},
}
fc, err := osmgeojson.Convert(o,
osmgeojson.NoID(true),
osmgeojson.NoMeta(true),
osmgeojson.NoRelationMembership(true),
)
if err != nil {
b.Errorf("failed to convert to geojson: %v", err)
}
ctx := filter.NewContext(nil, fc.Features[0])
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchmarkLayer(layer, ctx)
}
}
func BenchmarkPOIs(b *testing.B) {
layer, err := loadLayer("config/yaml/pois.yaml")
if err != nil {
b.Fatalf("failed to load: %v", err)
}
o := &osm.OSM{
Nodes: osm.Nodes{
{
ID: 1,
Version: 2,
Tags: osm.Tags{
{Key: "amenity", Value: "restaurant"},
{Key: "cuisine", Value: "burger"},
{Key: "name", Value: "Kronnerburger"},
},
},
},
}
fc, err := osmgeojson.Convert(o,
osmgeojson.NoID(true),
osmgeojson.NoMeta(true),
osmgeojson.NoRelationMembership(true),
)
if err != nil {
b.Errorf("failed to convert to geojson: %v", err)
}
ctx := filter.NewContext(nil, fc.Features[0])
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchmarkLayer(layer, ctx)
}
}
// The matching benchmarks are to validate there are no allocations
// during layer matching.
func BenchmarkMatching_boundaries(b *testing.B) {
matchLayer(b, "boundaries")
}
func BenchmarkMatching_buildings(b *testing.B) {
matchLayer(b, "buildings")
}
func BenchmarkMatching_earth(b *testing.B) {
matchLayer(b, "earth")
}
func BenchmarkMatching_landuse(b *testing.B) {
matchLayer(b, "landuse")
}
func BenchmarkMatching_places(b *testing.B) {
matchLayer(b, "places")
}
func BenchmarkMatching_pois(b *testing.B) {
matchLayer(b, "pois")
}
func BenchmarkMatching_roads(b *testing.B) {
matchLayer(b, "roads")
}
func BenchmarkMatching_transit(b *testing.B) {
matchLayer(b, "transit")
}
func BenchmarkMatching_water(b *testing.B) {
matchLayer(b, "water")
}
func matchLayer(b *testing.B, name string) {
// Runtime for these benchmarks depend on the number of filters.
// They are here to validate that there are no allocations.
config, err := Load("config/queries.yaml")
if err != nil {
b.Fatalf("unable to load config: %v", err)
}
layer := config.Layers[name]
o := &osm.OSM{
Nodes: osm.Nodes{
{
ID: 1,
Version: 2,
Tags: osm.Tags{
{Key: "amenity", Value: "restaurant"},
{Key: "cuisine", Value: "burger"},
{Key: "name", Value: "Kronnerburger"},
},
},
},
}
fc, err := osmgeojson.Convert(o,
osmgeojson.NoID(true),
osmgeojson.NoMeta(true),
osmgeojson.NoRelationMembership(true),
)
if err != nil {
b.Errorf("failed to convert to geojson: %v", err)
}
ctx := filter.NewContext(nil, fc.Features[0])
ctx.Debug = true
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
for _, f := range layer.filters {
f.Match(ctx)
}
}
}
func benchmarkLayer(layer *Layer, ctx *filter.Context) {
ctx.Debug = true
for _, f := range layer.filters {
f.Match(ctx)
// check the outputs
for _, o := range f.Output {
o.Expr.Eval(ctx)
}
}
}
func BenchmarkFullTile(b *testing.B) {
config, err := Load("config/queries.yaml")
if err != nil {
b.Fatalf("unable to load layer: %v", err)
}
tile := maptile.New(17896, 24450, 16)
data := loadFile(b, tile)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, err := config.Process(data, tile.Bound(), tile.Z)
if err != nil {
b.Fatalf("procces failure: %v", err)
}
}
}
func BenchmarkProcessGeoJSON(b *testing.B) {
config, err := Load("config/queries.yaml")
if err != nil {
b.Fatalf("unable to load layer: %v", err)
}
tile := maptile.New(17896, 24450, 16)
data := loadFile(b, tile)
input, err := convertToGeoJSON(data, tile.Bound())
if err != nil {
b.Fatalf("convert failed: %v", err)
}
ctx := &zenContext{
Zoom: tile.Z,
Bound: tile.Bound(),
OSM: data,
}
ctx.ComputeMembership()
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, err := config.processGeoJSON(ctx, input, tile.Z)
if err != nil {
b.Fatalf("procces failure: %v", err)
}
}
}
func loadFile(t testing.TB, tile maptile.Tile) *osm.OSM {
filename := fmt.Sprintf("testdata/tile-%d-%d-%d.xml", tile.Z, tile.X, tile.Y)
if _, err := os.Stat(filename); os.IsNotExist(err) {
bounds, err := osm.NewBoundsFromTile(tile)
if err != nil {
t.Fatalf("could not create bound: %v", err)
}
o, err := osmapi.Map(context.Background(), bounds)
if err != nil {
t.Fatalf("api call failed: %v", err)
}
data, _ := xml.MarshalIndent(o, "", " ")
err = ioutil.WriteFile(filename, data, 0644)
if err != nil {
t.Fatalf("failed to write file: %v", err)
}
} else if err != nil {
t.Fatalf("file stat error: %v", err)
}
data, err := ioutil.ReadFile(filename)
if err != nil {
t.Fatalf("failed to read file: %v", err)
}
o := &osm.OSM{}
err = xml.Unmarshal(data, &o)
if err != nil {
t.Fatalf("failed to unmarshal: %v", err)
}
return o
}