watcher.go: Automatically watch added subdirectories
This commit is contained in:
parent
61d5532e33
commit
5d3cd40195
29
watcher.go
29
watcher.go
@ -2,6 +2,8 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/howeyc/fsnotify"
|
"github.com/howeyc/fsnotify"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
)
|
)
|
||||||
|
|
||||||
func StartWatching(watchDir string, fileUpdates chan *Event) {
|
func StartWatching(watchDir string, fileUpdates chan *Event) {
|
||||||
@ -10,14 +12,30 @@ func StartWatching(watchDir string, fileUpdates chan *Event) {
|
|||||||
panic("Failed to create fsnotify watcher")
|
panic("Failed to create fsnotify watcher")
|
||||||
}
|
}
|
||||||
|
|
||||||
err = watcher.Watch(watchDir)
|
//function called by filepath.Walk to start watching a directory and all subdirectories
|
||||||
|
watchDirFn := func(path string, info os.FileInfo, err error) error {
|
||||||
|
if info.IsDir() {
|
||||||
|
err = watcher.Watch(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic("Failed to watch " + watchDir)
|
panic("Failed to watch " + path)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//processes all the fsnotify events into asink events
|
||||||
|
go func() {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case ev := <-watcher.Event:
|
case ev := <-watcher.Event:
|
||||||
|
//if a directory was created, begin recursively watching all its subdirectories
|
||||||
|
if fi, err := os.Stat(ev.Name); err == nil && fi.IsDir() {
|
||||||
|
if ev.IsCreate() {
|
||||||
|
filepath.Walk(ev.Name, watchDirFn)
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
event := new(Event)
|
event := new(Event)
|
||||||
if ev.IsCreate() || ev.IsModify() {
|
if ev.IsCreate() || ev.IsModify() {
|
||||||
event.Type = UPDATE
|
event.Type = UPDATE
|
||||||
@ -31,6 +49,7 @@ func StartWatching(watchDir string, fileUpdates chan *Event) {
|
|||||||
if event.IsUpdate() {
|
if event.IsUpdate() {
|
||||||
event.Hash, err = HashFile(ev.Name)
|
event.Hash, err = HashFile(ev.Name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
panic("file deleted already?")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -39,10 +58,12 @@ func StartWatching(watchDir string, fileUpdates chan *Event) {
|
|||||||
|
|
||||||
fileUpdates <- event
|
fileUpdates <- event
|
||||||
|
|
||||||
//TODO if creating a directory, start watching it (and then initiate a full scan of it so we're sure nothing slipped through the cracks)
|
|
||||||
|
|
||||||
case err := <-watcher.Error:
|
case err := <-watcher.Error:
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
//start watching the directory passed in
|
||||||
|
filepath.Walk(watchDir, watchDirFn)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user