-
Notifications
You must be signed in to change notification settings - Fork 0
/
file_watcher.go
56 lines (50 loc) · 873 Bytes
/
file_watcher.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
package file_watcher
import (
"github.com/fsnotify/fsnotify"
)
type FileWatcher struct {
watcher *fsnotify.Watcher
update chan struct{}
}
func NewFileWatcher(filepaths []string) (*FileWatcher, error) {
w, err := fsnotify.NewWatcher()
if err != nil {
return nil, err
}
for _, p := range filepaths {
err = w.Add(p)
if err != nil {
return nil, err
}
}
c := make(chan struct{})
watcher := &FileWatcher{
watcher: w,
update: c,
}
go watcher.watch()
return watcher, nil
}
func (w *FileWatcher) GetUpdateWatcher() <-chan struct{} {
return w.update
}
func (w *FileWatcher) Close() {
close(w.update)
w.watcher.Close()
}
func (w *FileWatcher) watch() {
for {
select {
case _, ok := <-w.watcher.Events:
if !ok {
return
}
// TODO
w.update <- struct{}{}
case _, ok := <-w.watcher.Errors:
if !ok {
return
}
}
}
}