-
Notifications
You must be signed in to change notification settings - Fork 31
/
watcher.go
201 lines (183 loc) · 5.5 KB
/
watcher.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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
package main
import (
"fmt"
"io/ioutil"
_ "log"
"os"
"path"
"sync"
"time"
"github.com/fsnotify/fsnotify"
)
// WatcherConfig is for configuring Watcher
type WatcherConfig struct {
FileExtensions []string
IgnoredNames []string
RefreshRate time.Duration
LogLevel LogLevel
}
// InitWatcher returns a workable Watcher instance
func InitWatcher(config *WatcherConfig) *Watcher {
watcher, err := fsnotify.NewWatcher()
if err != nil {
panic(err)
}
fw := &Watcher{
config: config,
logger: InitLogger(&LoggerConfig{Name: "watcher", Format: "production", Level: config.LogLevel}),
watcher: watcher,
}
return fw
}
// Watcher is a component for handling file system changes
type Watcher struct {
config *WatcherConfig
logger *Logger
watcher *fsnotify.Watcher
events []WatcherEvent
watchMutex chan bool
intervalTicker <-chan time.Time
}
// Close closes the watcher, use for graceful shutdowns
func (fw *Watcher) Close() {
if fw.watcher == nil {
panic("watcher was not initialised")
}
fw.watcher.Close()
}
// WatcherEventHandler defines the callback for BeginWatch() to use
type WatcherEventHandler func(*[]WatcherEvent) bool
// BeginWatch starts the file system watching in blocking mode
func (fw *Watcher) BeginWatch(waitGroup *sync.WaitGroup, handler WatcherEventHandler) {
fw.logger.Trace("initialising file system watch")
fw.watchMutex = make(chan bool)
fw.intervalTicker = time.After(fw.config.RefreshRate)
waitGroup.Add(1)
go fw.watchRoutine(
fw.intervalTicker,
fw.watchMutex,
handler,
waitGroup.Done,
)
}
// EndWatch sends the signal to main goroutine to end itself
func (fw *Watcher) EndWatch() {
fw.logger.Trace("received signal to terminate file system watch")
fw.watchMutex <- true
}
func (fw *Watcher) watchRoutine(tick <-chan time.Time, stop chan bool, handler WatcherEventHandler, onDone func()) {
for {
select {
case <-tick:
if len(fw.events) > 0 {
fw.logger.Tracef("processing %v raw events...", len(fw.events))
dedupedEvents := fw.getDedupedEvents()
handler(&dedupedEvents)
fw.logger.Tracef("processed %v event(s)", len(dedupedEvents))
fw.events = make([]WatcherEvent, 0)
}
case event := <-fw.watcher.Events:
eventToAdd := WatcherEvent(event)
if eventToAdd.IsAnyOf(fw.config.FileExtensions) {
fw.events = append(fw.events, eventToAdd)
tick = time.After(2 * time.Second)
} else if eventToAdd.FileType() == WatcherFileTypeDir {
fw.Watch(eventToAdd.FilePath())
}
case shouldWeStop := <-stop:
fw.logger.Tracef("received signal to terminate watch routine: %v", shouldWeStop)
fw.watchMutex = make(chan bool)
onDone()
if shouldWeStop {
break
}
default:
}
}
}
// RecursivelyWatch is so we can watch all sub directories of a directory
func (fw *Watcher) RecursivelyWatch(directoryPath string) {
fw.assertDirectoryIntegrity(directoryPath)
allSubDirectories := fw.recursivelyGetDirectories(directoryPath)
fw.Watch(directoryPath)
for _, directory := range allSubDirectories {
fw.Watch(directory)
}
}
// Watch is here for watching a single directory
func (fw *Watcher) Watch(directoryPath string) {
fw.assertDirectoryIntegrity(directoryPath)
fw.watcher.Add(directoryPath)
fw.logger.Tracef("registered '%s'", directoryPath)
}
// assertDirectoryIntegrity panicks if the :directoryPath does not exist/is not a directory
func (fw *Watcher) assertDirectoryIntegrity(directoryPath string) {
if !fw.pathExists(directoryPath) {
panic(fmt.Sprintf("provided path '%s' does not exist", directoryPath))
} else if !fw.pathIsDirectory(directoryPath) {
panic(fmt.Sprintf("provided path '%s' is not a directory", directoryPath))
}
}
// getDedupedEvents processes the events so that we don't respond to duplicate items
func (fw *Watcher) getDedupedEvents() []WatcherEvent {
var eventsProcessed []string
var eventsToProcess []WatcherEvent
for _, event := range fw.events {
proceed := true
for _, processedEvent := range eventsProcessed {
if processedEvent == event.String() {
proceed = false
}
}
if proceed {
eventsProcessed = append(eventsProcessed, event.String())
eventsToProcess = append(eventsToProcess, event)
}
}
return eventsToProcess
}
// isIgnoredName checks whether the name was faulty
func (fw *Watcher) isIgnoredName(name string) bool {
ignore := false
if fw.config == nil {
return ignore
}
for _, ignoredName := range fw.config.IgnoredNames {
if ignoredName == name {
ignore = true
}
}
return ignore
}
// pathIsDirectory is for argument verification
func (fw *Watcher) pathExists(absolutePath string) bool {
if _, err := os.Lstat(absolutePath); os.IsNotExist(err) {
return false
}
return true
}
// pathIsDirectory is for argument verification
func (fw *Watcher) pathIsDirectory(absolutePath string) bool {
if fileInfo, err := os.Lstat(absolutePath); err != nil {
panic(err)
} else {
return fileInfo.IsDir()
}
}
// recursivelyGetDirectories is here to retrieve a list of all sub-directories from :directoryPath
func (fw *Watcher) recursivelyGetDirectories(directoryPath string) []string {
fw.assertDirectoryIntegrity(directoryPath)
directoryListing, err := ioutil.ReadDir(directoryPath)
if err != nil {
panic(err)
}
var listings []string
for _, listing := range directoryListing {
listingFullPath := path.Join(directoryPath, listing.Name())
if !fw.isIgnoredName(listing.Name()) && listing.IsDir() {
listings = append(listings, listingFullPath)
listings = append(listings, fw.recursivelyGetDirectories(listingFullPath)...)
}
}
return listings
}