-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathobject_inspector.rb
More file actions
122 lines (105 loc) · 2.98 KB
/
object_inspector.rb
File metadata and controls
122 lines (105 loc) · 2.98 KB
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
# frozen_string_literal: true
# Run from the IRB console with:
# load "script/benchmarking/object_inspector.rb"
require "benchmark/ips"
inspector_class = ObjectInspector::Inspector
MyObject ||= Struct.new(:identification, :flags, :issues, :info, :name)
def object_with_flags_and_issues_and_info_and_name
@object_with_flags_and_issues_and_info_and_name ||=
MyObject.new({
identification: "IDENTIFICATION",
flags: "FLAG1 | FLAG2",
issues: "ISSUE1",
info: "INFO",
name: "NAME"
})
end
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
def ruby_version = @ruby_version ||= `ruby -v | awk '{ print $2 }'`.strip
puts("Reporting for: Ruby v#{ruby_version}\n\n")
puts("== Averaged ============================================================")
Benchmark.ips do |x|
x.report(inspector_class) do
inspector_class.inspect(object_with_flags_and_issues_and_info_and_name)
inspector_class.inspect(object_with_flags_and_info_and_name)
inspector_class.inspect(object_with_flags_and_info)
inspector_class.inspect(object_with_flags_and_name)
inspector_class.inspect(object_with_info_and_name)
inspector_class.inspect(object_with_name)
inspector_class.inspect(object_with_flags)
inspector_class.inspect(object_with_info)
inspector_class.inspect(object_with_base)
end
x.report("Ruby") do
object_with_flags_and_issues_and_info_and_name.inspect
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 ================================================================")