etcd/store/watcher.go

75 lines
2.5 KiB
Go
Raw Normal View History

2013-10-07 20:44:51 +04:00
/*
Copyright 2013 CoreOS 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.
*/
2013-09-29 03:26:19 +04:00
package store
2013-09-03 22:30:42 +04:00
2013-12-26 18:06:15 +04:00
type Watcher struct {
EventChan chan *Event
stream bool
2013-09-16 17:16:22 +04:00
recursive bool
sinceIndex uint64
removed bool
remove func()
2013-09-07 06:05:11 +04:00
}
2013-10-08 09:17:58 +04:00
// notify function notifies the watcher. If the watcher interests in the given path,
// the function will return true.
2013-12-26 18:06:15 +04:00
func (w *Watcher) notify(e *Event, originalPath bool, deleted bool) bool {
2013-10-08 09:17:58 +04:00
// watcher is interested the path in three cases and under one condition
// the condition is that the event happens after the watcher's sinceIndex
2013-09-07 06:05:11 +04:00
2013-10-08 09:17:58 +04:00
// 1. the path at which the event happens is the path the watcher is watching at.
// For example if the watcher is watching at "/foo" and the event happens at "/foo",
// the watcher must be interested in that event.
2013-09-07 06:05:11 +04:00
2013-10-08 09:17:58 +04:00
// 2. the watcher is a recursive watcher, it interests in the event happens after
// its watching path. For example if watcher A watches at "/foo" and it is a recursive
// one, it will interest in the event happens at "/foo/bar".
2013-10-08 09:17:58 +04:00
// 3. when we delete a directory, we need to force notify all the watchers who watches
// at the file we need to delete.
// For example a watcher is watching at "/foo/bar". And we deletes "/foo". The watcher
// should get notified even if "/foo" is not the path it is watching.
2013-11-10 08:49:19 +04:00
if (w.recursive || originalPath || deleted) && e.Index() >= w.sinceIndex {
select {
case w.EventChan <- e:
// the stream watcher might be slow
// but we cannot block here. blocking will lead the whole etcd system to hang.
// create a go-routine to handle the blocking case
default:
go func() {
// TODO add a warning here should be helpful
w.EventChan <- e
}()
}
2013-10-08 09:17:58 +04:00
return true
2013-09-29 04:41:02 +04:00
}
2013-10-08 09:17:58 +04:00
return false
2013-09-29 03:58:57 +04:00
}
// Remove removes the watcher from watcherHub
// The actual remove function is guaranteed to only be executed once
func (w *Watcher) Remove() {
if w.remove != nil {
w.remove()
} else {
// We attached a remove function to watcher
// Other pkg cannot change it, so this should not happen
panic("missing Watcher remove function")
}
}