| // +build darwin freebsd linux netbsd openbsd windows |
| "github.com/howeyc/fsnotify" |
| // newFSNotifyWatch returns a function that listens on fsnotify and sends |
| // corresponding modification events. |
| // For each fsnotify modification event, a single nil value is sent on the |
| // events channel. Further fsnotify events are not received until the nil |
| // value is received from the events channel. |
| // The function sends any errors on the events channel. |
| func newFSNotifyWatch(filename string) func(chan<- error, chan<- struct{}, <-chan struct{}, chan<- struct{}) { |
| return func(events chan<- error, initialized chan<- struct{}, stop <-chan struct{}, done chan<- struct{}) { |
| source, err := fsnotify.NewWatcher() |
| if err := source.Watch(filename); err != nil { |
| // (A) An fsnotify modification event. Send nil. |
| // (B) An fsnotify error. Send the error. |
| // (C) A stop command. Stop listening and clean up. |
| case event := <-source.Event: |
| if !sendEvent(events, nil, stop) { |
| case err := <-source.Error: |
| if !sendEvent(events, err, stop) { |