2015-04-03 16:58:56 -04:00
|
|
|
package events
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/pubsub"
|
2016-01-04 19:05:26 -05:00
|
|
|
eventtypes "github.com/docker/engine-api/types/events"
|
2015-04-03 16:58:56 -04:00
|
|
|
)
|
|
|
|
|
2015-11-25 21:03:10 -05:00
|
|
|
const (
|
|
|
|
eventsLimit = 64
|
|
|
|
bufferSize = 1024
|
|
|
|
)
|
2015-04-03 16:58:56 -04:00
|
|
|
|
2015-12-21 17:55:23 -05:00
|
|
|
// Events is pubsub channel for events generated by the engine.
|
2015-04-03 16:58:56 -04:00
|
|
|
type Events struct {
|
|
|
|
mu sync.Mutex
|
2015-12-21 17:55:23 -05:00
|
|
|
events []eventtypes.Message
|
2015-04-03 16:58:56 -04:00
|
|
|
pub *pubsub.Publisher
|
|
|
|
}
|
|
|
|
|
|
|
|
// New returns new *Events instance
|
|
|
|
func New() *Events {
|
|
|
|
return &Events{
|
2015-12-21 17:55:23 -05:00
|
|
|
events: make([]eventtypes.Message, 0, eventsLimit),
|
2015-11-25 21:03:10 -05:00
|
|
|
pub: pubsub.NewPublisher(100*time.Millisecond, bufferSize),
|
2015-04-03 16:58:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-12 14:54:46 -04:00
|
|
|
// Subscribe adds new listener to events, returns slice of 64 stored
|
|
|
|
// last events, a channel in which you can expect new events (in form
|
|
|
|
// of interface{}, so you need type assertion), and a function to call
|
|
|
|
// to stop the stream of events.
|
2015-12-21 17:55:23 -05:00
|
|
|
func (e *Events) Subscribe() ([]eventtypes.Message, chan interface{}, func()) {
|
2015-04-03 16:58:56 -04:00
|
|
|
e.mu.Lock()
|
2015-12-21 17:55:23 -05:00
|
|
|
current := make([]eventtypes.Message, len(e.events))
|
2015-04-03 16:58:56 -04:00
|
|
|
copy(current, e.events)
|
|
|
|
l := e.pub.Subscribe()
|
|
|
|
e.mu.Unlock()
|
2015-10-12 14:54:46 -04:00
|
|
|
|
|
|
|
cancel := func() {
|
|
|
|
e.Evict(l)
|
|
|
|
}
|
|
|
|
return current, l, cancel
|
2015-04-03 16:58:56 -04:00
|
|
|
}
|
|
|
|
|
2015-11-25 21:03:10 -05:00
|
|
|
// SubscribeTopic adds new listener to events, returns slice of 64 stored
|
|
|
|
// last events, a channel in which you can expect new events (in form
|
|
|
|
// of interface{}, so you need type assertion).
|
2015-12-21 17:55:23 -05:00
|
|
|
func (e *Events) SubscribeTopic(since, sinceNano int64, ef *Filter) ([]eventtypes.Message, chan interface{}) {
|
2015-11-25 21:03:10 -05:00
|
|
|
e.mu.Lock()
|
|
|
|
defer e.mu.Unlock()
|
|
|
|
|
2015-12-21 17:55:23 -05:00
|
|
|
var buffered []eventtypes.Message
|
2015-11-25 21:03:10 -05:00
|
|
|
topic := func(m interface{}) bool {
|
2015-12-21 17:55:23 -05:00
|
|
|
return ef.Include(m.(eventtypes.Message))
|
2015-11-25 21:03:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if since != -1 {
|
|
|
|
for i := len(e.events) - 1; i >= 0; i-- {
|
|
|
|
ev := e.events[i]
|
|
|
|
if ev.Time < since || ((ev.Time == since) && (ev.TimeNano < sinceNano)) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if ef.filter.Len() == 0 || topic(ev) {
|
2015-12-21 17:55:23 -05:00
|
|
|
buffered = append([]eventtypes.Message{ev}, buffered...)
|
2015-11-25 21:03:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var ch chan interface{}
|
|
|
|
if ef.filter.Len() > 0 {
|
|
|
|
ch = e.pub.SubscribeTopic(topic)
|
|
|
|
} else {
|
|
|
|
// Subscribe to all events if there are no filters
|
|
|
|
ch = e.pub.Subscribe()
|
|
|
|
}
|
|
|
|
|
|
|
|
return buffered, ch
|
|
|
|
}
|
|
|
|
|
2015-04-03 16:58:56 -04:00
|
|
|
// Evict evicts listener from pubsub
|
|
|
|
func (e *Events) Evict(l chan interface{}) {
|
|
|
|
e.pub.Evict(l)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Log broadcasts event to listeners. Each listener has 100 millisecond for
|
|
|
|
// receiving event or it will be skipped.
|
2015-12-21 17:55:23 -05:00
|
|
|
func (e *Events) Log(action, eventType string, actor eventtypes.Actor) {
|
2015-09-15 15:33:11 -04:00
|
|
|
now := time.Now().UTC()
|
2015-12-21 17:55:23 -05:00
|
|
|
jm := eventtypes.Message{
|
|
|
|
Action: action,
|
|
|
|
Type: eventType,
|
|
|
|
Actor: actor,
|
|
|
|
Time: now.Unix(),
|
|
|
|
TimeNano: now.UnixNano(),
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill deprecated fields for container and images
|
|
|
|
switch eventType {
|
|
|
|
case eventtypes.ContainerEventType:
|
|
|
|
jm.ID = actor.ID
|
|
|
|
jm.Status = action
|
|
|
|
jm.From = actor.Attributes["image"]
|
|
|
|
case eventtypes.ImageEventType:
|
|
|
|
jm.ID = actor.ID
|
|
|
|
jm.Status = action
|
|
|
|
}
|
|
|
|
|
2015-09-15 14:28:22 -04:00
|
|
|
e.mu.Lock()
|
|
|
|
if len(e.events) == cap(e.events) {
|
|
|
|
// discard oldest event
|
|
|
|
copy(e.events, e.events[1:])
|
|
|
|
e.events[len(e.events)-1] = jm
|
|
|
|
} else {
|
|
|
|
e.events = append(e.events, jm)
|
|
|
|
}
|
|
|
|
e.mu.Unlock()
|
|
|
|
e.pub.Publish(jm)
|
2015-04-03 16:58:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// SubscribersCount returns number of event listeners
|
|
|
|
func (e *Events) SubscribersCount() int {
|
|
|
|
return e.pub.Len()
|
|
|
|
}
|