-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathprofiler.go
74 lines (60 loc) · 1.19 KB
/
profiler.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
package gotaskflow
import (
"fmt"
"io"
"sync"
"time"
"github.com/noneback/go-taskflow/utils"
)
type profiler struct {
spans map[attr]*span
mu *sync.Mutex
}
func newProfiler() *profiler {
return &profiler{
spans: make(map[attr]*span),
mu: &sync.Mutex{},
}
}
func (t *profiler) AddSpan(s *span) {
t.mu.Lock()
defer t.mu.Unlock()
if span, ok := t.spans[s.extra]; ok {
s.cost += span.cost
}
t.spans[s.extra] = s
}
type attr struct {
typ nodeType
name string
}
type span struct {
extra attr
begin time.Time
cost time.Duration
parent *span
}
func (s *span) String() string {
return fmt.Sprintf("%s,%s,cost %v", s.extra.typ, s.extra.name, utils.NormalizeDuration(s.cost))
}
func (t *profiler) draw(w io.Writer) error {
// compact spans base on name
t.mu.Lock()
defer t.mu.Unlock()
for _, s := range t.spans {
path := ""
if s.extra.typ != nodeSubflow {
path = s.String()
cur := s
for cur.parent != nil {
path = cur.parent.String() + ";" + path
cur = cur.parent
}
msg := fmt.Sprintf("%s %v\n", path, s.cost.Microseconds())
if _, err := w.Write([]byte(msg)); err != nil {
return fmt.Errorf("write profile -> %w", err)
}
}
}
return nil
}