1
0
mirror of https://github.com/golang/go synced 2024-10-01 20:38:32 -06:00
go/internal/lsp/protocol/context.go

36 lines
693 B
Go
Raw Normal View History

package protocol
import (
"context"
"fmt"
"golang.org/x/tools/internal/telemetry"
"golang.org/x/tools/internal/xcontext"
)
type contextKey int
const (
clientKey = contextKey(iota)
)
func WithClient(ctx context.Context, client Client) context.Context {
return context.WithValue(ctx, clientKey, client)
}
func LogEvent(ctx context.Context, event telemetry.Event) context.Context {
if event.Type != telemetry.EventLog {
return ctx
}
client, ok := ctx.Value(clientKey).(Client)
if !ok {
return ctx
}
msg := &LogMessageParams{Type: Info, Message: fmt.Sprint(event)}
if event.Error != nil {
msg.Type = Error
}
go client.LogMessage(xcontext.Detach(ctx), msg)
return ctx
}