forked from tdewolff/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatch.go
More file actions
111 lines (103 loc) · 2.2 KB
/
Copy pathwatch.go
File metadata and controls
111 lines (103 loc) · 2.2 KB
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
package main
import (
"os"
"path/filepath"
"time"
"github.com/fsnotify/fsnotify"
)
type Watcher struct {
watcher *fsnotify.Watcher
paths map[string]bool
recursive bool
}
func NewWatcher(recursive bool) (*Watcher, error) {
watcher, err := fsnotify.NewWatcher()
if err != nil {
return nil, err
}
return &Watcher{watcher, make(map[string]bool), recursive}, nil
}
func (w *Watcher) Close() error {
return w.watcher.Close()
}
func (w *Watcher) AddPath(root string) error {
info, err := os.Stat(root)
if err != nil {
return err
}
if info.Mode().IsRegular() {
root = filepath.Dir(root)
if w.paths[root] {
return nil
}
if err := w.watcher.Add(root); err != nil {
return err
}
w.paths[root] = true
return nil
} else if !w.recursive {
if w.paths[root] {
return nil
}
if err := w.watcher.Add(root); err != nil {
return err
}
w.paths[root] = true
return nil
} else {
return filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.Mode().IsDir() {
if !validDir(info) || w.paths[path] {
return filepath.SkipDir
}
if err := w.watcher.Add(path); err != nil {
return err
}
w.paths[path] = true
}
return nil
})
}
}
func (w *Watcher) Run() chan string {
files := make(chan string, 10)
go func() {
changetimes := map[string]time.Time{}
for w.watcher.Events != nil && w.watcher.Errors != nil {
select {
case event, ok := <-w.watcher.Events:
if !ok {
w.watcher.Events = nil
break
}
if info, err := os.Stat(event.Name); err == nil {
if validDir(info) {
if event.Op&fsnotify.Create == fsnotify.Create {
if err := w.AddPath(event.Name); err != nil {
Error.Println(err)
}
}
} else if validFile(info) {
if event.Op&fsnotify.Write == fsnotify.Write {
if t, ok := changetimes[event.Name]; !ok || 100*time.Millisecond < time.Now().Sub(t) {
files <- event.Name
changetimes[event.Name] = time.Now()
}
}
}
}
case err, ok := <-w.watcher.Errors:
if !ok {
w.watcher.Errors = nil
break
}
Error.Println(err)
}
}
close(files)
}()
return files
}