-
Notifications
You must be signed in to change notification settings - Fork 2
/
bench_test.go
249 lines (187 loc) · 5.38 KB
/
bench_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
package main_test
import (
"sync"
"testing"
"github.com/Devoter/dlplugin"
"github.com/Devoter/dlplugin_multilib_example/device"
"github.com/Devoter/dlplugin_multilib_example/papi"
)
type benchDataItem struct {
api *papi.DevicePlugin
plug *dlplugin.Plugin
dev uintptr
}
var benchData map[string]*benchDataItem
var benchDataMx sync.Mutex
func accessDevice(b *testing.B, lib string) *benchDataItem {
benchDataMx.Lock()
defer benchDataMx.Unlock()
if benchData == nil {
benchData = map[string]*benchDataItem{}
}
data, ok := benchData[lib]
if !ok {
var api papi.DevicePlugin
plug, err := dlplugin.Open(lib, &api)
if err != nil {
b.Fatalf("could not load a plugin by the reason: %v\n", err)
return nil
}
data = &benchDataItem{api: &api, plug: plug}
benchData[lib] = data
}
if data.dev == 0 {
dev := data.api.CreateDevice()
if dev <= 0 {
b.Fatalf("could not instantiate a device by the reason: %d\n", dev)
return nil
}
data.dev = dev
}
return data
}
func BenchmarkSetGetGoPlug(b *testing.B) {
benchItem := accessDevice(b, "./goplug/libgoplug.so")
if benchItem == nil {
b.Fatalf("could not access a device\n")
}
api := benchItem.api
dev := benchItem.dev
var value int32
var err error
i := int32(b.N)
b.ResetTimer()
if err = api.Device_SetValue(dev, i); err != nil {
b.Fatalf("could not set a device value by the reason: %v\n", err)
}
if value, err = api.Device_Value(dev); err != nil {
b.Fatalf("could not get a device value by the reason: %v\n", err)
}
if i != value {
b.Errorf("value should be [%d], but got [%d]", i, value)
}
}
func BenchmarkSetGetCPPPlug(b *testing.B) {
benchItem := accessDevice(b, "./cppplug/libcppplug.so")
if benchItem == nil {
b.Fatalf("could not access a device\n")
}
api := benchItem.api
dev := benchItem.dev
var value int32
var err error
i := int32(b.N)
b.ResetTimer()
if err = api.Device_SetValue(dev, i); err != nil {
b.Fatalf("could not set a device value by the reason: %v\n", err)
}
if value, err = api.Device_Value(dev); err != nil {
b.Fatalf("could not get a device value by the reason: %v\n", err)
}
if i != value {
b.Errorf("value should be [%d], but got [%d]", i, value)
}
}
func BenchmarkSetGetGoPure(b *testing.B) {
var dev device.Device
var value int32
i := int32(b.N)
b.ResetTimer()
dev.SetValue(i)
value = dev.Value()
if i != value {
b.Errorf("value should be [%d], but got [%d]", i, value)
}
}
func BenchmarkReadingGoPlug(b *testing.B) {
benchItem := accessDevice(b, "./goplug/libgoplug.so")
if benchItem == nil {
b.Fatalf("iteration: %d. could not access a device\n", b.N)
}
api := benchItem.api
dev := benchItem.dev
var err error
i := int32(b.N)
b.ResetTimer()
api.Device_SetValue(dev, i)
encoded, err := api.GetDevice(dev, false)
if err != nil {
b.Fatalf("iteration: %d. could not get an encoded device state by the reason: %v\n", b.N, err)
}
var d device.Device
if err = d.UnmarshalBinary(encoded); err != nil {
b.Fatalf("iteration: %d. Could not parse an encoded device state by the reason: %v\n", b.N, err)
}
if i != d.Value() {
b.Errorf("iteration: %d. value should be [%d], but got [%d]", b.N, i, d.Value())
}
}
func BenchmarkReadingCPPPlug(b *testing.B) {
benchItem := accessDevice(b, "./cppplug/libcppplug.so")
if benchItem == nil {
b.Fatalf("iteration: %d. could not access a device\n", b.N)
}
api := benchItem.api
dev := benchItem.dev
var err error
i := int32(b.N)
b.ResetTimer()
api.Device_SetValue(dev, i)
encoded, err := api.GetDevice(dev, false)
if err != nil {
b.Fatalf("iteration: %d. could not get an encoded device state by the reason: %v\n", b.N, err)
}
var d device.Device
if err = d.UnmarshalBinary(encoded); err != nil {
b.Fatalf("iteration: %d. Could not parse an encoded device state by the reason: %v\n", b.N, err)
}
if i != d.Value() {
b.Errorf("iteration: %d. value should be [%d], but got [%d]", b.N, i, d.Value())
}
}
func BenchmarkReadingJSONGoPlug(b *testing.B) {
benchItem := accessDevice(b, "./goplug/libgoplug.so")
if benchItem == nil {
b.Fatalf("iteration: %d. could not access a device\n", b.N)
}
api := benchItem.api
dev := benchItem.dev
var err error
i := int32(b.N)
b.ResetTimer()
api.Device_SetValue(dev, i)
encoded, err := api.GetDevice(dev, true)
if err != nil {
b.Fatalf("iteration: %d. could not get an encoded device state by the reason: %v\n", b.N, err)
}
var d device.Device
if err = d.UnmarshalJSON(encoded); err != nil {
b.Fatalf("iteration: %d. Could not parse an encoded device state by the reason: %v\n", b.N, err)
}
if i != d.Value() {
b.Errorf("iteration: %d. value should be [%d], but got [%d]", b.N, i, d.Value())
}
}
func BenchmarkReadingJSONCPPPlug(b *testing.B) {
benchItem := accessDevice(b, "./cppplug/libcppplug.so")
if benchItem == nil {
b.Fatalf("iteration: %d. could not access a device\n", b.N)
}
api := benchItem.api
dev := benchItem.dev
var err error
i := int32(b.N)
b.ResetTimer()
api.Device_SetValue(dev, i)
encoded, err := api.GetDevice(dev, true)
if err != nil {
b.Fatalf("iteration: %d. could not get an encoded device state by the reason: %v\n", b.N, err)
}
var d device.Device
if err = d.UnmarshalJSON(encoded); err != nil {
b.Fatalf("iteration: %d. Could not parse an encoded device state by the reason: %v\n", b.N, err)
}
if i != d.Value() {
b.Errorf("iteration: %d. value should be [%d], but got [%d]", b.N, i, d.Value())
}
}