-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbenchmark_api.py
655 lines (488 loc) · 22.1 KB
/
benchmark_api.py
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
"""Test the performance of basic API calls."""
import itertools
import random
import rdflib
from simphony_osp.ontology.namespace import OntologyNamespace
from simphony_osp.ontology.parser import OntologyParser
from simphony_osp.session import Session
from .benchmark import Benchmark
DEFAULT_SIZE = 500
class EntityIri(Benchmark):
"""Benchmark getting the iri of ontology entities."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.citizen = city.Citizen(name="someone", age=25)
def _benchmark_iterate(self, iteration: int = None):
self.citizen.iri
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_entity_iri(benchmark):
"""Wrapper function for the IndividualIri benchmark."""
return EntityIri.iterate_pytest_benchmark(benchmark, size=DEFAULT_SIZE)
class EntityIdentifier(Benchmark):
"""Benchmark getting the identifier of ontology entities."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.citizen = city.Citizen(name="someone", age=25)
def _benchmark_iterate(self, iteration: int = None):
self.citizen.identifier
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_entity_identifier(benchmark):
"""Wrapper function for the IndividualUID benchmark."""
return EntityIdentifier.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualCreate(Benchmark):
"""Benchmark the `__call__` method (creation) of ontology individuals."""
ontology: Session
prev_default_ontology: Session
city: OntologyNamespace
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city = city
def _benchmark_iterate(self, iteration=None):
self.city.Citizen(
name="citizen " + str(iteration), age=random.randint(0, 80)
)
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_create(benchmark):
"""Wrapper function for the IndividualCreate benchmark."""
return IndividualCreate.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualIsA(Benchmark):
"""Benchmark the `is_a` method of ontology individuals."""
ontology: Session
prev_default_ontology: Session
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
classes = (
city.ArchitecturalComponent,
city.Floor,
)
classes_age = (
city.LivingBeing,
city.Citizen,
city.Person,
)
classes_coordinates = (
city.City,
city.Street,
city.Neighborhood,
city.PopulatedPlace,
)
classes_name = (
city.ArchitecturalStructure,
city.Building,
)
stuff = tuple(class_() for class_ in classes)
aged_stuff = tuple(
class_(name="name", age=25) for class_ in classes_age
)
coordinated_stuff = tuple(
class_(name="name", coordinates=[0, 0])
for class_ in classes_coordinates
)
named_stuff = tuple(class_(name="name") for class_ in classes_name)
self.iterator_stuff = itertools.cycle(
stuff + aged_stuff + coordinated_stuff + named_stuff
)
self.classes = (
classes + classes_age + classes_coordinates + named_stuff
)
def _benchmark_iterate(self, iteration: int = None):
individual = next(self.iterator_stuff)
class_ = random.choice(self.classes)
individual.is_a(class_)
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_is_a(benchmark):
"""Wrapper function for the IndividualIsA benchmark."""
return IndividualIsA.iterate_pytest_benchmark(benchmark, size=DEFAULT_SIZE)
class IndividualClasses(Benchmark):
"""Benchmark the `classes` method of ontology individuals."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.citizen = city.Citizen(name="someone", age=25)
def _benchmark_iterate(self, iteration: int = None):
self.citizen.classes
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_classes(benchmark):
"""Wrapper function for the IndividualClasses benchmark."""
return IndividualClasses.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualConnect(Benchmark):
"""Benchmark the `add` method, selecting the relationship."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city_namespace = city
self.city = city.City(name="Freiburg", coordinates=[0, 0])
self.citizens = tuple(
city.Citizen(name=f"citizen {i}", age=25) for i in range(self.size)
)
def _benchmark_iterate(self, iteration=None):
self.city.connect(
self.citizens[iteration], rel=self.city_namespace.hasInhabitant
)
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_connect(benchmark):
"""Wrapper function for the IndividualAddRel benchmark."""
return IndividualConnect.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualGetByIdentifier(Benchmark):
"""Benchmark getting CUDS objects by uid (of type UUID)."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city = city.City(name="Freiburg", coordinates=[0, 0])
self.citizens = tuple(
city.Citizen(name=f"citizen {i}", age=25) for i in range(self.size)
)
self.identifiers = tuple(
citizen.identifier for citizen in self.citizens
)
for citizen in self.citizens:
self.city.connect(citizen, rel=city.hasInhabitant)
def _benchmark_iterate(self, iteration: int = None):
self.city.get(self.identifiers[iteration])
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_get_byidentifier(benchmark):
"""Wrapper function for the IndividualGetByIdentifier benchmark."""
return IndividualGetByIdentifier.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualGetByIdentifierURIRef(Benchmark):
"""Benchmark getting CUDS objects by uid (of type IRI)."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city = city.City(name="Freiburg", coordinates=[0, 0])
self.iris = tuple(
rdflib.URIRef(f"http://example.org/city#Citizen_{i}")
for i in range(self.size)
)
self.citizens = tuple(
city.Citizen(name=f"citizen {i}", age=25, iri=self.iris[i])
for i in range(self.size)
)
for citizen in self.citizens:
self.city.connect(citizen, rel=city.hasInhabitant)
def _benchmark_iterate(self, iteration: int = None):
self.city.get(self.iris[iteration])
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_get_byidentifieruriref(benchmark):
"""Wrapper function for the IndividualGetByIdentifierURIRef benchmark."""
return IndividualGetByIdentifierURIRef.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualGetByRel(Benchmark):
"""Benchmark getting CUDS objects by relationship."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city_namespace = city
self.city = city.City(name="Freiburg", coordinates=[0, 0])
citizen = city.Citizen(name="Citizen", age=25)
streets = tuple(
city.Street(name=f"street {i}", coordinates=[0, 0])
for i in range(self.size - 1)
)
position = random.randint(0, (self.size - 1) - 1)
things = list(streets)
things.insert(position, citizen)
things = tuple(things)
rel = {position: city.hasInhabitant}
for i, thing in enumerate(things):
self.city.connect(thing, rel=rel.get(i, city.hasPart))
def _benchmark_iterate(self, iteration: int = None):
tuple(self.city.get(rel=self.city_namespace.hasInhabitant))
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_get_byrel(benchmark):
"""Wrapper function for the IndividualGetByRel benchmark."""
return IndividualGetByRel.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualGetByOclass(Benchmark):
"""Benchmark getting CUDS objects by oclass."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city_namespace = city
fr = city.City(name="Freiburg", coordinates=[0, 0])
citizen = city.Citizen(name="Citizen", age=25)
streets = tuple(
city.Street(name=f"street {i}", coordinates=[0, 0])
for i in range(self.size - 1)
)
position = random.randint(0, (self.size - 1) - 1)
things = list(streets)
things.insert(position, citizen)
things = tuple(things)
rel = {position: city.hasInhabitant}
for i, thing in enumerate(things):
fr.connect(thing, rel=rel.get(i, city.hasPart))
self.city = fr
def _benchmark_iterate(self, iteration: int = None):
tuple(self.city.get(oclass=self.city_namespace.Citizen))
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_get_byoclass(benchmark):
"""Wrapper function for the IndividualGetByOclass benchmark."""
return IndividualGetByOclass.iterate_pytest_benchmark(
benchmark, DEFAULT_SIZE
)
class IndividualIterByIdentifier(Benchmark):
"""Benchmark getting CUDS objects by uid (of type UUID)."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city = city.City(name="Freiburg", coordinates=[0, 0])
self.citizens = tuple(
city.Citizen(name=f"citizen {i}", age=25) for i in range(self.size)
)
self.identifiers = tuple(
citizen.identifier for citizen in self.citizens
)
for citizen in self.citizens:
self.city.connect(citizen, rel=city.hasInhabitant)
self.iterator = self.city.iter(*self.identifiers)
def _benchmark_iterate(self, iteration: int = None):
next(self.iterator)
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_iter_byidentifier(benchmark):
"""Wrapper function for the IndividualIterByIdentifier benchmark."""
return IndividualIterByIdentifier.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualIterByIdentifierURIRef(Benchmark):
"""Benchmark getting CUDS objects by uid (of type UUID)."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city = city.City(name="Freiburg", coordinates=[0, 0])
self.iris = tuple(
rdflib.URIRef(f"http://example.org/city#Citizen_{i}")
for i in range(self.size)
)
self.citizens = tuple(
city.Citizen(name=f"citizen {i}", age=25, iri=self.iris[i])
for i in range(self.size)
)
for citizen in self.citizens:
self.city.connect(citizen, rel=city.hasInhabitant)
self.iterator = self.city.iter(*self.iris)
def _benchmark_iterate(self, iteration: int = None):
next(self.iterator)
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_iter_byidentifieruriref(benchmark):
"""Wrapper function for the IndividualIterByIdentifierURIRef benchmark."""
return IndividualIterByIdentifierURIRef.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualIterByRel(Benchmark):
"""Benchmark getting CUDS objects by relationship."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city_namespace = city
self.city = city.City(name="Freiburg", coordinates=[0, 0])
citizen = city.Citizen(name="Citizen", age=25)
streets = tuple(
city.Street(name=f"street {i}", coordinates=[0, 0])
for i in range(self.size - 1)
)
position = random.randint(0, (self.size - 1) - 1)
things = list(streets)
things.insert(position, citizen)
things = tuple(things)
rel = {position: city.hasInhabitant}
for i, thing in enumerate(things):
self.city.connect(thing, rel=rel.get(i, city.hasPart))
def _benchmark_iterate(self, iteration: int = None):
next(self.city.iter(rel=self.city_namespace.hasInhabitant))
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_iter_byrel(benchmark):
"""Wrapper function for the IndividualIterByRel benchmark."""
return IndividualIterByRel.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualIterByOclass(Benchmark):
"""Benchmark getting CUDS objects by oclass."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.city_namespace = city
fr = city.City(name="Freiburg", coordinates=[0, 0])
citizen = city.Citizen(name="Citizen", age=25)
streets = tuple(
city.Street(name=f"street {i}", coordinates=[0, 0])
for i in range(self.size - 1)
)
position = random.randint(0, (self.size - 1) - 1)
things = list(streets)
things.insert(position, citizen)
things = tuple(things)
rel = {position: city.hasInhabitant}
for i, thing in enumerate(things):
fr.connect(thing, rel=rel.get(i, city.hasPart))
self.city = fr
def _benchmark_iterate(self, iteration: int = None):
next(self.city.iter(oclass=self.city_namespace.Citizen))
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_iter_byoclass(benchmark):
"""Wrapper function for the IndividualIterByOclass benchmark."""
return IndividualIterByOclass.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
class IndividualGetAttr(Benchmark):
"""Benchmark getting attributes of ontology individuals."""
def _benchmark_set_up(self):
"""Create a TBox and set it as the default ontology.
The new TBox contains SIMPHONY, OWL, RDFS and City.
"""
self.ontology = Session(identifier="test-tbox", ontology=True)
self.ontology.load_parser(OntologyParser.get_parser("city"))
self.prev_default_ontology = Session.default_ontology
Session.default_ontology = self.ontology
from simphony_osp.namespaces import city
self.citizen = city.Citizen(name="Lukas", age=93)
self.city = city.City(name="Freiburg", coordinates=[108, 49])
self.address = city.Address(
name="Street123", postalCode=79111, number=1
)
self.things = itertools.cycle((self.citizen, self.city, self.address))
self.attributes = itertools.cycle(
(("age",), ("coordinates",), ("postalCode",))
)
def _benchmark_iterate(self, iteration: int = None):
thing = next(self.things)
attributes = next(self.attributes)
for attr in attributes:
getattr(thing, attr)
def _benchmark_tear_down(self):
"""Restore the previous default TBox."""
Session.default_ontology = self.prev_default_ontology
def benchmark_individual_getattr(benchmark):
"""Wrapper function for the IndividualAttributes benchmark."""
return IndividualGetAttr.iterate_pytest_benchmark(
benchmark, size=DEFAULT_SIZE
)
if __name__ == "__main__":
pass