2022-05-31 21:53:01 +02:00
|
|
|
package tracex
|
2021-02-02 12:05:47 +01:00
|
|
|
|
|
|
|
import "sync"
|
|
|
|
|
|
|
|
// The Saver saves a trace
|
|
|
|
type Saver struct {
|
|
|
|
ops []Event
|
|
|
|
mu sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read reads and returns events inside the trace. It advances
|
|
|
|
// the read pointer so you won't see such events again.
|
|
|
|
func (s *Saver) Read() []Event {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
v := s.ops
|
|
|
|
s.ops = nil
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write adds the given event to the trace. A subsequent call
|
|
|
|
// to Read will read this event.
|
|
|
|
func (s *Saver) Write(ev Event) {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
s.ops = append(s.ops, ev)
|
|
|
|
}
|