mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-23 13:48:42 -05:00
97 lines
2.5 KiB
Go
97 lines
2.5 KiB
Go
// Copyright 2019 Dolthub, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package events
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"google.golang.org/protobuf/types/known/timestamppb"
|
|
|
|
eventsapi "github.com/dolthub/dolt/go/gen/proto/dolt/services/eventsapi/v1alpha1"
|
|
)
|
|
|
|
// EventNowFunc function is used to get the current time and can be overridden for testing.
|
|
var EventNowFunc = time.Now
|
|
|
|
func nowTimestamp() *timestamppb.Timestamp {
|
|
now := EventNowFunc()
|
|
ts := timestamppb.New(now)
|
|
err := ts.CheckValid()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
return ts
|
|
}
|
|
|
|
// Event is an event to be added to a collector and logged
|
|
type Event struct {
|
|
ce *eventsapi.ClientEvent
|
|
m *sync.Mutex
|
|
attributes map[eventsapi.AttributeID]string
|
|
}
|
|
|
|
// NewEvent creates an Event of a given type. The event creation time is recorded as the start time for the event.
|
|
// When the event is passed to a collector's CloseEventAndAdd method the end time of the event is recorded
|
|
func NewEvent(ceType eventsapi.ClientEventType) *Event {
|
|
return &Event{
|
|
ce: &eventsapi.ClientEvent{
|
|
Id: uuid.New().String(),
|
|
StartTime: nowTimestamp(),
|
|
Type: ceType,
|
|
},
|
|
m: &sync.Mutex{},
|
|
attributes: make(map[eventsapi.AttributeID]string),
|
|
}
|
|
}
|
|
|
|
// AddMetric adds a metric to the event. This method is thread safe.
|
|
func (evt *Event) AddMetric(em EventMetric) {
|
|
evt.m.Lock()
|
|
defer evt.m.Unlock()
|
|
|
|
evt.ce.Metrics = append(evt.ce.Metrics, em.AsClientEventMetric())
|
|
}
|
|
|
|
// SetAttribute adds an attribute to the event. This method is thread safe
|
|
func (evt *Event) SetAttribute(attID eventsapi.AttributeID, attVal string) {
|
|
evt.m.Lock()
|
|
defer evt.m.Unlock()
|
|
|
|
evt.attributes[attID] = attVal
|
|
}
|
|
|
|
func (evt *Event) close() *eventsapi.ClientEvent {
|
|
if evt.ce == nil {
|
|
panic("multiple close calls for the same event.")
|
|
}
|
|
|
|
evt.m.Lock()
|
|
defer evt.m.Unlock()
|
|
|
|
evt.ce.EndTime = nowTimestamp()
|
|
|
|
for k, v := range evt.attributes {
|
|
evt.ce.Attributes = append(evt.ce.Attributes, &eventsapi.ClientEventAttribute{Id: k, Value: v})
|
|
}
|
|
|
|
ce := evt.ce
|
|
evt.ce = nil
|
|
|
|
return ce
|
|
}
|