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
|
package server
import (
"fmt"
"io/fs"
"os"
"path/filepath"
"time"
"github.com/fsnotify/fsnotify"
"github.com/pkg/errors"
"go.alanpearce.eu/x/log"
)
type FileWatcher struct {
watcher *fsnotify.Watcher
log *log.Logger
}
func NewFileWatcher(log *log.Logger) (*FileWatcher, error) {
watcher, err := fsnotify.NewWatcher()
if err != nil {
return nil, errors.WithMessage(err, "could not create watcher")
}
return &FileWatcher{
watcher,
log,
}, nil
}
func (i FileWatcher) AddRecursive(from string) error {
i.log.Debug(fmt.Sprintf("watching files under %s", from))
err := filepath.WalkDir(from, func(path string, entry fs.DirEntry, err error) error {
if err != nil {
return errors.WithMessagef(err, "could not walk directory %s", path)
}
if entry.IsDir() {
i.log.Debug(fmt.Sprintf("adding directory %s to watcher", path))
if err = i.watcher.Add(path); err != nil {
return errors.WithMessagef(err, "could not add directory %s to watcher", path)
}
}
return nil
})
return errors.WithMessage(err, "error walking directory tree")
}
func (i FileWatcher) Start(callback func(string)) {
for {
select {
case event := <-i.watcher.Events:
if event.Has(fsnotify.Create) || event.Has(fsnotify.Rename) {
f, err := os.Stat(event.Name)
if err != nil {
i.log.Error(fmt.Sprintf("error handling %s event: %v", event.Op.String(), err))
} else if f.IsDir() {
err = i.watcher.Add(event.Name)
if err != nil {
i.log.Error(fmt.Sprintf("error adding new folder to watcher: %v", err))
}
}
}
if event.Has(fsnotify.Rename) || event.Has(fsnotify.Write) {
callback(event.Name)
time.Sleep(500 * time.Millisecond)
}
case err := <-i.watcher.Errors:
i.log.Error(fmt.Sprintf("error in watcher: %v", err))
}
}
}
|