-
-
Notifications
You must be signed in to change notification settings - Fork 4k
/
profiler.go
63 lines (48 loc) · 1.23 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
package prof
import "github.com/zeromicro/go-zero/core/utils"
type (
// A ProfilePoint is a profile time point.
ProfilePoint struct {
*utils.ElapsedTimer
}
// A Profiler interface represents a profiler that used to report profile points.
Profiler interface {
Start() ProfilePoint
Report(name string, point ProfilePoint)
}
realProfiler struct{}
nullProfiler struct{}
)
var profiler = newNullProfiler()
// EnableProfiling enables profiling.
func EnableProfiling() {
profiler = newRealProfiler()
}
// Start starts a Profiler, and returns a start profiling point.
func Start() ProfilePoint {
return profiler.Start()
}
// Report reports a ProfilePoint with given name.
func Report(name string, point ProfilePoint) {
profiler.Report(name, point)
}
func newRealProfiler() Profiler {
return &realProfiler{}
}
func (rp *realProfiler) Start() ProfilePoint {
return ProfilePoint{
ElapsedTimer: utils.NewElapsedTimer(),
}
}
func (rp *realProfiler) Report(name string, point ProfilePoint) {
duration := point.Duration()
report(name, duration)
}
func newNullProfiler() Profiler {
return &nullProfiler{}
}
func (np *nullProfiler) Start() ProfilePoint {
return ProfilePoint{}
}
func (np *nullProfiler) Report(string, ProfilePoint) {
}