-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotify.go
61 lines (49 loc) · 1.15 KB
/
notify.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
package config
import (
"context"
"path/filepath"
"github.com/fsnotify/fsnotify"
)
// Watch starts watching the given file for changes, and returns a channel to get notified on.
// Errors are also passed through this channel: Receiving a nil from the channel indicates the file is updated.
func Watch(ctx context.Context, pathtofile string) (<-chan error, error) {
watcher, err := fsnotify.NewWatcher()
if err != nil {
return nil, err
}
absfile, err := filepath.Abs(pathtofile)
if err != nil {
return nil, err
}
basedir := filepath.Dir(absfile)
if err = watcher.Add(basedir); err != nil {
return nil, err
}
writech := make(chan error, 100)
go func() {
for {
select {
case <-ctx.Done():
watcher.Close()
return
case err := <-watcher.Errors:
handleNotify(ctx, writech, err)
case e := <-watcher.Events:
if e.Op&(fsnotify.Create|fsnotify.Write) > 0 {
if e.Name == absfile {
handleNotify(ctx, writech, nil)
}
}
}
}
}()
return writech, nil
}
func handleNotify(ctx context.Context, ch chan<- error, val error) {
// Something happened...
select {
case ch <- val:
case <-ctx.Done():
return
}
}