mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-24 03:16:12 -05:00
92 lines
2.3 KiB
Go
92 lines
2.3 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"
|
|
"sync/atomic"
|
|
|
|
"github.com/denisbrodbeck/machineid"
|
|
|
|
eventsapi "github.com/dolthub/dolt/go/gen/proto/dolt/services/eventsapi/v1alpha1"
|
|
)
|
|
|
|
var machineID = "invalid"
|
|
var machineIDOnce = &sync.Once{}
|
|
|
|
// getMachineID returns a unique machine identifier hash specific to dolt
|
|
func getMachineID() string {
|
|
machineIDOnce.Do(func() {
|
|
id, err := machineid.ProtectedID("dolt")
|
|
|
|
if err == nil {
|
|
machineID = id
|
|
}
|
|
})
|
|
|
|
return machineID
|
|
}
|
|
|
|
// GlobalCollector is an instance of a collector where all events should be sent via the CloseEventAndAdd function
|
|
var GlobalCollector = NewCollector()
|
|
|
|
const collChanBufferSize = 32
|
|
|
|
// Collector collects and stores Events later to be sent to an Emitter.
|
|
type Collector struct {
|
|
val *atomic.Value
|
|
wg *sync.WaitGroup
|
|
evtCh chan *eventsapi.ClientEvent
|
|
}
|
|
|
|
// NewCollector creates a new instance of a collector
|
|
func NewCollector() *Collector {
|
|
wg := &sync.WaitGroup{}
|
|
evtCh := make(chan *eventsapi.ClientEvent, collChanBufferSize)
|
|
|
|
c := &Collector{&atomic.Value{}, wg, evtCh}
|
|
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
|
|
var events []*eventsapi.ClientEvent
|
|
for evt := range evtCh {
|
|
events = append(events, evt)
|
|
}
|
|
|
|
c.val.Store(events)
|
|
}()
|
|
|
|
return c
|
|
}
|
|
|
|
// CloseEventAndAdd closes the supplied event and adds it to the collection of events. This method is thread safe.
|
|
func (c *Collector) CloseEventAndAdd(evt *Event) {
|
|
c.evtCh <- evt.close()
|
|
}
|
|
|
|
// Close waits for any remaining events to finish collection and then returns a slice of ClientEvents to be passed to an
|
|
// emitter.
|
|
func (c *Collector) Close() []*eventsapi.ClientEvent {
|
|
close(c.evtCh)
|
|
|
|
c.wg.Wait()
|
|
|
|
interf := c.val.Load()
|
|
|
|
return interf.([]*eventsapi.ClientEvent)
|
|
}
|