-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport_test.go
53 lines (46 loc) · 1002 Bytes
/
export_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
// Copyright (c) 2020 Hirotsuna Mizuno. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
// Bridge package to expose speedio internals to tests in the speedio_test
// package.
package speedio
import (
"fmt"
)
//
type ExportMeter = meter
//
var (
ExportNewMeter = newMeter
ExportMeterStart = (*meter).start
ExportMeterClose = (*meter).close
ExportMeterRecord = (*meter).record
ExportMeterBitRate = (*meter).bitRate
ExportMeterTotal = (*meter).total
)
//
func (r *MeterReader) DebugDump() {
r.met.DebugDump()
}
//
func (m *meter) DebugDump() {
m.mu.RLock()
defer m.mu.RUnlock()
fmt.Printf("METER:\n")
for i := m.cur; ; i = i.prev {
tag := ""
if i == m.cur {
tag += " [cur]"
}
if i == m.last {
tag += " [last]"
}
if i == m.first {
tag += " [first]"
}
fmt.Printf("%p: s=%s, e=%s, vol=%v%s\n", i, i.start, i.end, i.vol, tag)
if i == m.first || m.last == nil {
break
}
}
}