-
Notifications
You must be signed in to change notification settings - Fork 2
/
object_inspector.rb
98 lines (83 loc) · 2.33 KB
/
object_inspector.rb
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
# frozen_string_literal: true
# Run from the IRB console with:
# load "script/benchmarking/object_inspector.rb"
require "benchmark/ips"
inspector_klass = ObjectInspector::Inspector
MyObject = Struct.new(:identification, :flags, :info, :name)
def object_with_flags_and_info_and_name
@object_with_flags_and_info_and_name ||=
MyObject.new(
identification: "IDENTIFICATION",
flags: "FLAG1 | FLAG2",
info: "INFO",
name: "NAME")
end
def object_with_flags_and_info
@object_with_flags_and_info ||=
MyObject.new(
identification: "IDENTIFICATION",
flags: "FLAG1 | FLAG2",
info: "INFO")
end
def object_with_flags_and_name
@object_with_flags_and_name ||=
MyObject.new(
identification: "IDENTIFICATION",
flags: "FLAG1 | FLAG2",
name: "NAME")
end
def object_with_info_and_name
@object_with_info_and_name ||=
MyObject.new(
identification: "IDENTIFICATION",
info: "INFO",
name: "NAME")
end
def object_with_name
@object_with_name ||=
MyObject.new(
identification: "IDENTIFICATION",
name: "NAME")
end
def object_with_flags
@object_with_flags ||=
MyObject.new(
identification: "IDENTIFICATION",
flags: "FLAG1 | FLAG2")
end
def object_with_info
@object_with_info ||=
MyObject.new(
identification: "IDENTIFICATION",
info: "INFO")
end
def object_with_base
@object_with_base ||=
MyObject.new(
identification: "IDENTIFICATION")
end
puts "== Averaged ============================================================="
Benchmark.ips do |x|
x.report(inspector_klass) do
inspector_klass.inspect(object_with_flags_and_info_and_name)
inspector_klass.inspect(object_with_flags_and_info)
inspector_klass.inspect(object_with_flags_and_name)
inspector_klass.inspect(object_with_info_and_name)
inspector_klass.inspect(object_with_name)
inspector_klass.inspect(object_with_flags)
inspector_klass.inspect(object_with_info)
inspector_klass.inspect(object_with_base)
end
x.report("Ruby") do
object_with_flags_and_info_and_name.inspect
object_with_flags_and_info.inspect
object_with_flags_and_name.inspect
object_with_info_and_name.inspect
object_with_name.inspect
object_with_flags.inspect
object_with_info.inspect
object_with_base.inspect
end
x.compare!
end
puts "== Done"