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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
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) add(path string) {
if watch.watcher == nil {
return
}
// ignore /dev since write updates to /dev/tty causes high cpu usage
if path != "/dev" {
watch.watcher.Add(path)
}
}
func (watch *watch) loop() {
for {
select {
case ev := <-watch.events:
if ev.Has(fsnotify.Create) {
for _, path := range watch.getSameDirs(filepath.Dir(ev.Name)) {
watch.addLoad(path)
watch.addUpdate(path)
}
}
if ev.Has(fsnotify.Remove) || ev.Has(fsnotify.Rename) {
dir, file := filepath.Split(ev.Name)
for _, path := range watch.getSameDirs(dir) {
watch.delChan <- filepath.Join(path, file)
watch.addLoad(path)
watch.addUpdate(path)
}
}
if ev.Has(fsnotify.Write) || ev.Has(fsnotify.Chmod) {
dir, file := filepath.Split(ev.Name)
for _, path := range watch.getSameDirs(dir) {
watch.addUpdate(filepath.Join(path, file))
}
}
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
}
// Hacky workaround since fsnotify reports changes for only one path if a
// directory is located at more than one path (e.g. bind mounts).
func (watch *watch) getSameDirs(dir string) []string {
var paths []string
dirStat, err := os.Stat(dir)
if err != nil {
return nil
}
for _, path := range watch.watcher.WatchList() {
if path == dir {
paths = append(paths, path)
continue
}
stat, err := os.Stat(path)
if err != nil {
continue
}
if os.SameFile(stat, dirStat) {
paths = append(paths, path)
}
}
return paths
}
|