watch branch

This commit is contained in:
Asim Aslam 2018-02-19 20:27:36 +00:00 committed by Vasiliy Tolstov
parent 42ab4ca7b5
commit 1d69bd4a16
2 changed files with 23 additions and 10 deletions

View File

@ -418,9 +418,9 @@ func (m *gossipRegistry) ListServices() ([]*registry.Service, error) {
return services, nil
}
func (m *gossipRegistry) Watch() (registry.Watcher, error) {
func (m *gossipRegistry) Watch(opts ...registry.WatchOption) (registry.Watcher, error) {
n, e := m.subscribe()
return newGossipWatcher(n, e)
return newGossipWatcher(n, e, opts...)
}
func (m *gossipRegistry) String() string {

View File

@ -7,11 +7,17 @@ import (
)
type gossipWatcher struct {
wo registry.WatchOptions
next chan *registry.Result
stop chan bool
}
func newGossipWatcher(ch chan *registry.Result, exit chan bool) (registry.Watcher, error) {
func newGossipWatcher(ch chan *registry.Result, exit chan bool, opts ...registry.WatchOption) (registry.Watcher, error) {
var wo registry.WatchOptions
for _, o := range opts {
o(&wo)
}
stop := make(chan bool)
go func() {
@ -20,20 +26,27 @@ func newGossipWatcher(ch chan *registry.Result, exit chan bool) (registry.Watche
}()
return &gossipWatcher{
wo: wo,
next: ch,
stop: stop,
}, nil
}
func (m *gossipWatcher) Next() (*registry.Result, error) {
select {
case r, ok := <-m.next:
if !ok {
return nil, errors.New("result chan closed")
for {
select {
case r, ok := <-m.next:
if !ok {
return nil, errors.New("result chan closed")
}
// check watch options
if len(m.wo.Service) > 0 && r.Service.Name != m.wo.Service {
continue
}
return r, nil
case <-m.stop:
return nil, errors.New("watcher stopped")
}
return r, nil
case <-m.stop:
return nil, errors.New("watcher stopped")
}
}