2020-03-07 16:02:27 -07:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package event
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"sync/atomic"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
2020-03-18 21:28:57 -06:00
|
|
|
// Exporter is a function that handles events.
|
|
|
|
// It may return a modified context and event.
|
2020-03-20 06:29:48 -06:00
|
|
|
type Exporter func(context.Context, Event, TagMap) context.Context
|
2020-03-07 16:02:27 -07:00
|
|
|
|
|
|
|
var (
|
|
|
|
exporter unsafe.Pointer
|
|
|
|
)
|
|
|
|
|
2020-03-18 21:28:57 -06:00
|
|
|
// SetExporter sets the global exporter function that handles all events.
|
|
|
|
// The exporter is called synchronously from the event call site, so it should
|
|
|
|
// return quickly so as not to hold up user code.
|
2020-03-07 16:02:27 -07:00
|
|
|
func SetExporter(e Exporter) {
|
|
|
|
p := unsafe.Pointer(&e)
|
|
|
|
if e == nil {
|
|
|
|
// &e is always valid, and so p is always valid, but for the early abort
|
|
|
|
// of ProcessEvent to be efficient it needs to make the nil check on the
|
2020-03-18 21:28:57 -06:00
|
|
|
// pointer without having to dereference it, so we make the nil function
|
2020-03-07 16:02:27 -07:00
|
|
|
// also a nil pointer
|
|
|
|
p = nil
|
|
|
|
}
|
|
|
|
atomic.StorePointer(&exporter, p)
|
|
|
|
}
|
|
|
|
|
2020-03-18 21:28:57 -06:00
|
|
|
// ProcessEvent is called to deliver an event to the global exporter.
|
2020-03-20 06:29:48 -06:00
|
|
|
func ProcessEvent(ctx context.Context, ev Event) context.Context {
|
2020-03-07 16:02:27 -07:00
|
|
|
exporterPtr := (*Exporter)(atomic.LoadPointer(&exporter))
|
|
|
|
if exporterPtr == nil {
|
2020-03-20 06:29:48 -06:00
|
|
|
return ctx
|
2020-03-07 16:02:27 -07:00
|
|
|
}
|
|
|
|
// and now also hand the event of to the current exporter
|
2020-03-20 06:29:48 -06:00
|
|
|
return (*exporterPtr)(ctx, ev, ev.Map())
|
2020-03-07 16:02:27 -07:00
|
|
|
}
|