-
Notifications
You must be signed in to change notification settings - Fork 3
/
watch.go
75 lines (60 loc) · 1.54 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
package main
import (
"context"
"fmt"
"log/slog"
"time"
"github.com/fsnotify/fsevents"
)
const fseventsLatency = 500 * time.Millisecond
func watchDirectory(
ctx context.Context,
logger *slog.Logger,
conf configSync,
filesCh chan<- string,
) error {
defer close(filesCh)
source := endsWithSlash(conf.Source)
logger = logger.With(slog.String("source", source))
logger.Debug("start watching directory")
deviceID, err := fsevents.DeviceForPath(source)
if err != nil {
return fmt.Errorf("failed to retrieve device for path: %s: %w", source, err)
}
stream := &fsevents.EventStream{
Paths: []string{source},
Latency: fseventsLatency,
Device: deviceID,
Flags: fsevents.FileEvents | fsevents.WatchRoot,
}
if err = stream.Start(); err != nil {
return fmt.Errorf("failed to start event stream for path: %s: %w", source, err)
}
defer stream.Stop()
excludes := newFileMatchers(source, conf.Exclude)
for {
select {
case <-ctx.Done():
return ctx.Err()
case events := <-stream.Events:
for _, event := range events {
path := "/" + event.Path
logger := logger.With(slog.String("path", path))
if isTemporaryEvent(event) {
logger.Debug("skipping temporary file")
continue
}
if excludes.match("/" + event.Path) {
logger.Debug("skipping excluded file")
continue
}
logger.Debug("detected changed file")
filesCh <- path[len(source):]
}
}
}
}
func isTemporaryEvent(event fsevents.Event) bool {
bits := fsevents.ItemCreated + fsevents.ItemRemoved
return event.Flags&bits == bits
}