2020-04-17 07:32:56 -06:00
|
|
|
|
package event_test
|
2019-12-19 09:57:21 -07:00
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2020-03-30 05:55:16 -06:00
|
|
|
|
"io/ioutil"
|
2020-03-07 16:02:27 -07:00
|
|
|
|
"log"
|
2019-12-19 09:57:21 -07:00
|
|
|
|
"testing"
|
|
|
|
|
|
2020-04-17 07:32:56 -06:00
|
|
|
|
"golang.org/x/tools/internal/event"
|
|
|
|
|
"golang.org/x/tools/internal/event/core"
|
|
|
|
|
"golang.org/x/tools/internal/event/export"
|
2020-04-20 19:50:02 -06:00
|
|
|
|
"golang.org/x/tools/internal/event/keys"
|
2020-04-20 13:44:34 -06:00
|
|
|
|
"golang.org/x/tools/internal/event/label"
|
2019-12-19 09:57:21 -07:00
|
|
|
|
)
|
|
|
|
|
|
2020-03-03 15:15:30 -07:00
|
|
|
|
type Hooks struct {
|
2020-03-24 18:44:37 -06:00
|
|
|
|
A func(ctx context.Context, a int) (context.Context, func())
|
|
|
|
|
B func(ctx context.Context, b string) (context.Context, func())
|
2020-03-03 15:15:30 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var (
|
2020-04-20 19:50:02 -06:00
|
|
|
|
aValue = keys.NewInt("a", "")
|
|
|
|
|
bValue = keys.NewString("b", "")
|
|
|
|
|
aCount = keys.NewInt64("aCount", "Count of time A is called.")
|
|
|
|
|
aStat = keys.NewInt("aValue", "A value.")
|
|
|
|
|
bCount = keys.NewInt64("B", "Count of time B is called.")
|
|
|
|
|
bLength = keys.NewInt("BLen", "B length.")
|
2020-03-06 11:40:47 -07:00
|
|
|
|
|
2020-03-03 15:15:30 -07:00
|
|
|
|
Baseline = Hooks{
|
2020-03-24 18:44:37 -06:00
|
|
|
|
A: func(ctx context.Context, a int) (context.Context, func()) {
|
2020-03-03 15:15:30 -07:00
|
|
|
|
return ctx, func() {}
|
|
|
|
|
},
|
2020-03-24 18:44:37 -06:00
|
|
|
|
B: func(ctx context.Context, b string) (context.Context, func()) {
|
2020-03-03 15:15:30 -07:00
|
|
|
|
return ctx, func() {}
|
|
|
|
|
},
|
2019-12-19 09:57:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-03 15:15:30 -07:00
|
|
|
|
StdLog = Hooks{
|
2020-03-24 18:44:37 -06:00
|
|
|
|
A: func(ctx context.Context, a int) (context.Context, func()) {
|
|
|
|
|
log.Printf("A where a=%d", a)
|
|
|
|
|
return ctx, func() {}
|
2020-03-03 15:15:30 -07:00
|
|
|
|
},
|
2020-03-24 18:44:37 -06:00
|
|
|
|
B: func(ctx context.Context, b string) (context.Context, func()) {
|
|
|
|
|
log.Printf("B where b=%q", b)
|
|
|
|
|
return ctx, func() {}
|
2020-03-03 15:15:30 -07:00
|
|
|
|
},
|
2019-12-19 09:57:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-03 15:15:30 -07:00
|
|
|
|
Log = Hooks{
|
2020-03-24 18:44:37 -06:00
|
|
|
|
A: func(ctx context.Context, a int) (context.Context, func()) {
|
2020-04-20 10:14:12 -06:00
|
|
|
|
core.Log1(ctx, "A", aValue.Of(a))
|
2020-03-24 18:44:37 -06:00
|
|
|
|
return ctx, func() {}
|
2020-03-03 15:15:30 -07:00
|
|
|
|
},
|
2020-03-24 18:44:37 -06:00
|
|
|
|
B: func(ctx context.Context, b string) (context.Context, func()) {
|
2020-04-20 10:14:12 -06:00
|
|
|
|
core.Log1(ctx, "B", bValue.Of(b))
|
2020-03-24 18:44:37 -06:00
|
|
|
|
return ctx, func() {}
|
2020-03-03 15:15:30 -07:00
|
|
|
|
},
|
2019-12-19 09:57:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-03 15:15:30 -07:00
|
|
|
|
Trace = Hooks{
|
2020-03-24 18:44:37 -06:00
|
|
|
|
A: func(ctx context.Context, a int) (context.Context, func()) {
|
2020-04-20 10:14:12 -06:00
|
|
|
|
return core.Start1(ctx, "A", aValue.Of(a))
|
2020-03-03 15:15:30 -07:00
|
|
|
|
},
|
2020-03-24 18:44:37 -06:00
|
|
|
|
B: func(ctx context.Context, b string) (context.Context, func()) {
|
2020-04-20 10:14:12 -06:00
|
|
|
|
return core.Start1(ctx, "B", bValue.Of(b))
|
2020-03-03 15:15:30 -07:00
|
|
|
|
},
|
2019-12-19 09:57:21 -07:00
|
|
|
|
}
|
2020-03-06 11:40:47 -07:00
|
|
|
|
|
|
|
|
|
Stats = Hooks{
|
2020-03-24 18:44:37 -06:00
|
|
|
|
A: func(ctx context.Context, a int) (context.Context, func()) {
|
2020-04-20 10:14:12 -06:00
|
|
|
|
core.Metric1(ctx, aStat.Of(a))
|
|
|
|
|
core.Metric1(ctx, aCount.Of(1))
|
2020-03-24 18:44:37 -06:00
|
|
|
|
return ctx, func() {}
|
2020-03-06 11:40:47 -07:00
|
|
|
|
},
|
2020-03-24 18:44:37 -06:00
|
|
|
|
B: func(ctx context.Context, b string) (context.Context, func()) {
|
2020-04-20 10:14:12 -06:00
|
|
|
|
core.Metric1(ctx, bLength.Of(len(b)))
|
|
|
|
|
core.Metric1(ctx, bCount.Of(1))
|
2020-03-24 18:44:37 -06:00
|
|
|
|
return ctx, func() {}
|
2020-03-06 11:40:47 -07:00
|
|
|
|
},
|
|
|
|
|
}
|
2020-03-24 18:44:37 -06:00
|
|
|
|
|
|
|
|
|
initialList = []int{0, 1, 22, 333, 4444, 55555, 666666, 7777777}
|
|
|
|
|
stringList = []string{
|
|
|
|
|
"A value",
|
|
|
|
|
"Some other value",
|
|
|
|
|
"A nice longer value but not too long",
|
|
|
|
|
"V",
|
|
|
|
|
"",
|
|
|
|
|
"ı",
|
|
|
|
|
"prime count of values",
|
|
|
|
|
}
|
2020-03-03 15:15:30 -07:00
|
|
|
|
)
|
|
|
|
|
|
2020-03-24 18:44:37 -06:00
|
|
|
|
type namedBenchmark struct {
|
|
|
|
|
name string
|
|
|
|
|
test func(*testing.B)
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-03 15:15:30 -07:00
|
|
|
|
func Benchmark(b *testing.B) {
|
|
|
|
|
b.Run("Baseline", Baseline.runBenchmark)
|
|
|
|
|
b.Run("StdLog", StdLog.runBenchmark)
|
2020-03-24 18:44:37 -06:00
|
|
|
|
benchmarks := []namedBenchmark{
|
|
|
|
|
{"Log", Log.runBenchmark},
|
|
|
|
|
{"Trace", Trace.runBenchmark},
|
|
|
|
|
{"Stats", Stats.runBenchmark},
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-07 16:02:27 -07:00
|
|
|
|
event.SetExporter(nil)
|
2020-03-24 18:44:37 -06:00
|
|
|
|
for _, t := range benchmarks {
|
|
|
|
|
b.Run(t.name+"NoExporter", t.test)
|
|
|
|
|
}
|
2020-03-03 15:15:30 -07:00
|
|
|
|
|
2020-03-18 21:28:57 -06:00
|
|
|
|
event.SetExporter(noopExporter)
|
2020-03-30 05:55:16 -06:00
|
|
|
|
for _, t := range benchmarks {
|
|
|
|
|
b.Run(t.name+"Noop", t.test)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
event.SetExporter(export.Spans(export.LogWriter(ioutil.Discard, false)))
|
2020-03-24 18:44:37 -06:00
|
|
|
|
for _, t := range benchmarks {
|
|
|
|
|
b.Run(t.name, t.test)
|
|
|
|
|
}
|
2019-12-19 09:57:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-03 15:15:30 -07:00
|
|
|
|
func A(ctx context.Context, hooks Hooks, a int) int {
|
2020-03-24 18:44:37 -06:00
|
|
|
|
ctx, done := hooks.A(ctx, a)
|
2020-03-01 16:39:15 -07:00
|
|
|
|
defer done()
|
2020-03-24 18:44:37 -06:00
|
|
|
|
return B(ctx, hooks, a, stringList[a%len(stringList)])
|
2020-03-01 16:39:15 -07:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-03 15:15:30 -07:00
|
|
|
|
func B(ctx context.Context, hooks Hooks, a int, b string) int {
|
2020-03-24 18:44:37 -06:00
|
|
|
|
_, done := hooks.B(ctx, b)
|
2020-03-01 16:39:15 -07:00
|
|
|
|
defer done()
|
2020-03-03 15:15:30 -07:00
|
|
|
|
return a + len(b)
|
2020-03-01 16:39:15 -07:00
|
|
|
|
}
|
2020-03-03 15:15:30 -07:00
|
|
|
|
|
|
|
|
|
func (hooks Hooks) runBenchmark(b *testing.B) {
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
b.ReportAllocs()
|
|
|
|
|
b.ResetTimer()
|
|
|
|
|
var acc int
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
2020-03-24 18:44:37 -06:00
|
|
|
|
for _, value := range initialList {
|
2020-03-03 15:15:30 -07:00
|
|
|
|
acc += A(ctx, hooks, value)
|
|
|
|
|
}
|
2019-12-19 09:57:21 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-03 15:15:30 -07:00
|
|
|
|
func init() {
|
2020-03-30 05:55:16 -06:00
|
|
|
|
log.SetOutput(ioutil.Discard)
|
2019-12-19 09:57:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-20 13:44:34 -06:00
|
|
|
|
func noopExporter(ctx context.Context, ev core.Event, lm label.Map) context.Context {
|
2020-03-30 05:55:16 -06:00
|
|
|
|
return ctx
|
2020-03-03 15:15:30 -07:00
|
|
|
|
}
|