-
Notifications
You must be signed in to change notification settings - Fork 332
/
watch.go
141 lines (122 loc) · 2.68 KB
/
watch.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package main
import (
"log"
"os"
"path/filepath"
"time"
"github.com/fsnotify/fsnotify"
)
type watch struct {
watcher *fsnotify.Watcher
events <-chan fsnotify.Event
quit chan struct{}
loads map[string]bool
loadTimer *time.Timer
updates map[string]bool
updateTimer *time.Timer
dirChan chan<- *dir
fileChan chan<- *file
delChan chan<- string
}
func newWatch(dirChan chan<- *dir, fileChan chan<- *file, delChan chan<- string) *watch {
return &watch{
quit: make(chan struct{}),
loads: make(map[string]bool),
loadTimer: time.NewTimer(0),
updates: make(map[string]bool),
updateTimer: time.NewTimer(0),
dirChan: dirChan,
fileChan: fileChan,
delChan: delChan,
}
}
func (watch *watch) start() {
if watch.watcher != nil {
return
}
watcher, err := fsnotify.NewWatcher()
if err != nil {
log.Printf("start watcher: %s", err)
return
}
watch.watcher = watcher
watch.events = watcher.Events
go watch.loop()
}
func (watch *watch) stop() {
if watch.watcher == nil {
return
}
watch.quit <- struct{}{}
watch.watcher.Close()
watch.watcher = nil
watch.events = nil
}
func (watch *watch) set(paths map[string]bool) {
if watch.watcher == nil {
return
}
for _, path := range watch.watcher.WatchList() {
if !paths[path] {
watch.watcher.Remove(path)
}
}
for path := range paths {
watch.watcher.Add(path)
}
}
func (watch *watch) loop() {
for {
select {
case ev := <-watch.events:
if ev.Has(fsnotify.Create) {
dir := filepath.Dir(ev.Name)
watch.addLoad(dir)
watch.addUpdate(dir)
}
if ev.Has(fsnotify.Remove) || ev.Has(fsnotify.Rename) {
watch.delChan <- ev.Name
dir := filepath.Dir(ev.Name)
watch.addLoad(dir)
watch.addUpdate(dir)
}
if ev.Has(fsnotify.Write) || ev.Has(fsnotify.Chmod) {
watch.addUpdate(ev.Name)
}
case <-watch.loadTimer.C:
for path := range watch.loads {
if _, err := os.Lstat(path); err != nil {
continue
}
dir := newDir(path)
dir.sort()
watch.dirChan <- dir
}
watch.loads = make(map[string]bool)
case <-watch.updateTimer.C:
for path := range watch.updates {
if _, err := os.Lstat(path); err != nil {
continue
}
watch.fileChan <- newFile(path)
}
watch.updates = make(map[string]bool)
case <-watch.quit:
return
}
}
}
func (watch *watch) addLoad(path string) {
if len(watch.loads) == 0 {
watch.loadTimer.Stop()
watch.loadTimer.Reset(10 * time.Millisecond)
}
watch.loads[path] = true
}
func (watch *watch) addUpdate(path string) {
if len(watch.updates) == 0 {
watch.updateTimer.Stop()
watch.updateTimer.Reset(10 * time.Millisecond)
}
watch.updates[path] = true
}