-
Notifications
You must be signed in to change notification settings - Fork 0
/
stopwatch.go
137 lines (104 loc) · 2.51 KB
/
stopwatch.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
// Copyright 2019 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package walk
import (
"bytes"
"fmt"
"sort"
"sync"
"text/tabwriter"
"time"
)
type stopwatchItem struct {
stopwatchStats
subject string
startedTime time.Time
}
type stopwatchStats struct {
count int64
min time.Duration
max time.Duration
total time.Duration
}
func (sws *stopwatchStats) Average() time.Duration {
if sws.count == 0 {
return 0
}
return time.Nanosecond * time.Duration(sws.total.Nanoseconds()/sws.count)
}
type stopwatch struct {
mutex sync.Mutex
subject2item map[string]*stopwatchItem
}
func newStopwatch() *stopwatch {
return &stopwatch{
subject2item: make(map[string]*stopwatchItem),
}
}
func (sw *stopwatch) Start(subject string) time.Time {
sw.mutex.Lock()
defer sw.mutex.Unlock()
item, ok := sw.subject2item[subject]
if !ok {
item = &stopwatchItem{subject: subject}
sw.subject2item[subject] = item
}
item.startedTime = time.Now()
return item.startedTime
}
func (sw *stopwatch) Stop(subject string) time.Duration {
sw.mutex.Lock()
defer sw.mutex.Unlock()
item, ok := sw.subject2item[subject]
if !ok || item.startedTime.IsZero() {
return 0
}
duration := time.Now().Sub(item.startedTime)
item.count++
if duration < item.min || item.min == 0 {
item.min = duration
}
if duration > item.max {
item.max = duration
}
item.total += duration
item.startedTime = time.Time{}
return duration
}
func (sw *stopwatch) Cancel(subject string) {
sw.mutex.Lock()
defer sw.mutex.Unlock()
item, ok := sw.subject2item[subject]
if !ok {
return
}
item.startedTime = time.Time{}
}
func (sw *stopwatch) Clear() {
sw.mutex.Lock()
defer sw.mutex.Unlock()
for key := range sw.subject2item {
delete(sw.subject2item, key)
}
}
func (sw *stopwatch) Print() {
sw.mutex.Lock()
items := make([]*stopwatchItem, 0, len(sw.subject2item))
for _, item := range sw.subject2item {
items = append(items, item)
}
sw.mutex.Unlock()
sort.Slice(items, func(i, j int) bool {
return items[i].total > items[j].total
})
var buf bytes.Buffer
writer := tabwriter.NewWriter(&buf, 0, 8, 2, ' ', tabwriter.AlignRight)
fmt.Fprintln(writer, "#\tSubject\tAverage\tTotal\tMin\tMax\t\tCount")
for i, item := range items {
fmt.Fprintf(writer, "%d\t%s\t%s\t%s\t%s\t%s\t\t%d\n", i+1, item.subject, item.Average(), item.total, item.min, item.max, item.count)
}
writer.Flush()
fmt.Print(buf.String())
}