1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-18 22:17:44 +02:00

Added hack support for logs streaming cruft

This commit is contained in:
Milos Gajdos
2019-11-30 12:39:29 +00:00
parent 7f1dea72f2
commit ecdadef633
5 changed files with 112 additions and 24 deletions

View File

@ -4,13 +4,22 @@ package buffer
import (
"sync"
"time"
"github.com/google/uuid"
)
type stream struct {
id string
entries chan *Entry
stop chan bool
}
// Buffer is ring buffer
type Buffer struct {
size int
sync.RWMutex
vals []*Entry
vals []*Entry
streams map[string]stream
}
// Entry is ring buffer data entry
@ -22,7 +31,8 @@ type Entry struct {
// New returns a new buffer of the given size
func New(i int) *Buffer {
return &Buffer{
size: i,
size: i,
streams: make(map[string]stream),
}
}
@ -32,15 +42,26 @@ func (b *Buffer) Put(v interface{}) {
defer b.Unlock()
// append to values
b.vals = append(b.vals, &Entry{
entry := &Entry{
Value: v,
Timestamp: time.Now(),
})
}
b.vals = append(b.vals, entry)
// trim if bigger than size required
if len(b.vals) > b.size {
b.vals = b.vals[1:]
}
// TODO: this is fucking ugly
for _, stream := range b.streams {
select {
case <-stream.stop:
delete(b.streams, stream.id)
close(stream.entries)
case stream.entries <- entry:
}
}
}
// Get returns the last n entries
@ -93,6 +114,22 @@ func (b *Buffer) Since(t time.Time) []*Entry {
return nil
}
// Stream logs from the buffer
func (b *Buffer) Stream(stop chan bool) <-chan *Entry {
b.Lock()
defer b.Unlock()
entries := make(chan *Entry, 128)
id := uuid.New().String()
b.streams[id] = stream{
id: id,
entries: entries,
stop: stop,
}
return entries
}
// Size returns the size of the ring buffer
func (b *Buffer) Size() int {
return b.size