-
Notifications
You must be signed in to change notification settings - Fork 0
/
notifier.go
105 lines (92 loc) · 1.71 KB
/
notifier.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Package notifier is a file server notifer
package notifier
import (
"errors"
"path/filepath"
"sync"
"time"
"github.com/fsnotify/fsnotify"
"github.com/micro/go-micro/runtime"
"github.com/micro/go-micro/util/log"
)
type notifier struct {
service string
version string
path string
once sync.Once
sync.Mutex
fsnotify *fsnotify.Watcher
notify chan runtime.Event
update chan fsnotify.Event
exit chan bool
}
func (n *notifier) run() {
for {
select {
case <-n.exit:
return
case <-n.update:
select {
case n.notify <- runtime.Event{
Type: runtime.Update,
Timestamp: time.Now(),
Service: n.service,
}:
default:
// bail out
}
case ev := <-n.fsnotify.Events:
select {
case n.update <- ev:
default:
// bail out
}
case <-n.fsnotify.Errors:
// replace the watcher
n.fsnotify, _ = fsnotify.NewWatcher()
n.fsnotify.Add(n.path)
}
}
}
func (n *notifier) Notify() (<-chan runtime.Event, error) {
select {
case <-n.exit:
return nil, errors.New("closed")
default:
}
n.once.Do(func() {
go n.run()
})
return n.notify, nil
}
func (n *notifier) Close() error {
n.Lock()
defer n.Unlock()
select {
case <-n.exit:
return nil
default:
close(n.exit)
n.fsnotify.Close()
return nil
}
}
// New returns a new notifier which watches the source
func New(service, version, source string) runtime.Notifier {
n := ¬ifier{
path: filepath.Dir(source),
exit: make(chan bool),
notify: make(chan runtime.Event, 32),
update: make(chan fsnotify.Event, 32),
service: service,
version: version,
}
w, err := fsnotify.NewWatcher()
if err != nil {
log.Fatal(err)
}
w.Add(n.path)
// set the watcher
n.fsnotify = w
return n
}