2013-05-29 07:34:36 +08:00
|
|
|
// Copyright (c) 2013 ActiveState Software Inc. All rights reserved.
|
|
|
|
|
|
|
|
package watch
|
|
|
|
|
|
|
|
import (
|
2013-11-14 09:38:23 +08:00
|
|
|
"fmt"
|
2015-07-01 23:15:15 +08:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
2015-09-30 22:48:17 +08:00
|
|
|
"github.com/hpcloud/tail/util"
|
2015-06-29 11:23:06 +08:00
|
|
|
"gopkg.in/fsnotify.v0"
|
2014-06-15 14:39:34 +08:00
|
|
|
"gopkg.in/tomb.v1"
|
2013-05-29 07:34:36 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// InotifyFileWatcher uses inotify to monitor file changes.
|
|
|
|
type InotifyFileWatcher struct {
|
|
|
|
Filename string
|
|
|
|
Size int64
|
2015-07-01 23:15:15 +08:00
|
|
|
w *fsnotify.Watcher
|
2013-05-29 07:34:36 +08:00
|
|
|
}
|
|
|
|
|
2015-07-01 23:15:15 +08:00
|
|
|
func NewInotifyFileWatcher(filename string, w *fsnotify.Watcher) *InotifyFileWatcher {
|
|
|
|
fw := &InotifyFileWatcher{filename, 0, w}
|
2013-05-29 07:34:36 +08:00
|
|
|
return fw
|
|
|
|
}
|
|
|
|
|
2013-09-23 15:03:51 +08:00
|
|
|
func (fw *InotifyFileWatcher) BlockUntilExists(t *tomb.Tomb) error {
|
2013-05-29 07:34:36 +08:00
|
|
|
dirname := filepath.Dir(fw.Filename)
|
|
|
|
|
|
|
|
// Watch for new files to be created in the parent directory.
|
2015-07-01 23:15:15 +08:00
|
|
|
err := fw.w.WatchFlags(dirname, fsnotify.FSN_CREATE)
|
2013-05-29 07:34:36 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-07-01 23:15:15 +08:00
|
|
|
defer fw.w.RemoveWatch(dirname)
|
2013-05-29 07:34:36 +08:00
|
|
|
|
|
|
|
// Do a real check now as the file might have been created before
|
|
|
|
// calling `WatchFlags` above.
|
|
|
|
if _, err = os.Stat(fw.Filename); !os.IsNotExist(err) {
|
|
|
|
// file exists, or stat returned an error.
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
2013-05-29 10:33:52 +08:00
|
|
|
select {
|
2015-07-01 23:15:15 +08:00
|
|
|
case evt, ok := <-fw.w.Event:
|
2013-11-13 12:15:27 +08:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("inotify watcher has been closed")
|
2013-11-14 09:38:23 +08:00
|
|
|
} else if evt.Name == fw.Filename {
|
2013-05-29 10:33:52 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
case <-t.Dying():
|
2013-05-30 02:35:27 +08:00
|
|
|
return tomb.ErrDying
|
2013-05-29 07:34:36 +08:00
|
|
|
}
|
|
|
|
}
|
2013-05-29 10:33:52 +08:00
|
|
|
panic("unreachable")
|
2013-05-29 07:34:36 +08:00
|
|
|
}
|
|
|
|
|
2013-09-23 15:03:51 +08:00
|
|
|
func (fw *InotifyFileWatcher) ChangeEvents(t *tomb.Tomb, fi os.FileInfo) *FileChanges {
|
2013-05-30 05:32:59 +08:00
|
|
|
changes := NewFileChanges()
|
2013-09-23 15:03:51 +08:00
|
|
|
|
2015-07-01 23:15:15 +08:00
|
|
|
err := fw.w.Watch(fw.Filename)
|
2013-05-29 07:34:36 +08:00
|
|
|
if err != nil {
|
2013-10-12 09:19:43 +08:00
|
|
|
util.Fatal("Error watching %v: %v", fw.Filename, err)
|
2013-05-29 07:34:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fw.Size = fi.Size()
|
|
|
|
|
|
|
|
go func() {
|
2015-07-01 23:15:15 +08:00
|
|
|
defer fw.w.RemoveWatch(fw.Filename)
|
2013-05-30 05:32:59 +08:00
|
|
|
defer changes.Close()
|
2013-05-29 07:34:36 +08:00
|
|
|
|
|
|
|
for {
|
|
|
|
prevSize := fw.Size
|
|
|
|
|
2013-05-30 02:35:27 +08:00
|
|
|
var evt *fsnotify.FileEvent
|
2013-11-13 12:15:27 +08:00
|
|
|
var ok bool
|
2013-05-30 02:35:27 +08:00
|
|
|
|
|
|
|
select {
|
2015-07-01 23:15:15 +08:00
|
|
|
case evt, ok = <-fw.w.Event:
|
2013-11-13 12:15:27 +08:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2013-05-30 02:35:27 +08:00
|
|
|
case <-t.Dying():
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-05-29 07:34:36 +08:00
|
|
|
switch {
|
|
|
|
case evt.IsDelete():
|
|
|
|
fallthrough
|
|
|
|
|
|
|
|
case evt.IsRename():
|
2013-05-30 05:32:59 +08:00
|
|
|
changes.NotifyDeleted()
|
2013-05-29 07:34:36 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
case evt.IsModify():
|
|
|
|
fi, err := os.Stat(fw.Filename)
|
|
|
|
if err != nil {
|
2013-09-21 00:47:55 +08:00
|
|
|
if os.IsNotExist(err) {
|
|
|
|
changes.NotifyDeleted()
|
|
|
|
return
|
|
|
|
}
|
2013-10-12 09:19:43 +08:00
|
|
|
// XXX: report this error back to the user
|
|
|
|
util.Fatal("Failed to stat file %v: %v", fw.Filename, err)
|
2013-05-29 07:34:36 +08:00
|
|
|
}
|
|
|
|
fw.Size = fi.Size()
|
|
|
|
|
|
|
|
if prevSize > 0 && prevSize > fw.Size {
|
2013-05-30 05:32:59 +08:00
|
|
|
changes.NotifyTruncated()
|
2013-09-23 15:03:51 +08:00
|
|
|
} else {
|
2013-05-30 05:32:59 +08:00
|
|
|
changes.NotifyModified()
|
2013-05-29 07:34:36 +08:00
|
|
|
}
|
2013-05-30 06:08:24 +08:00
|
|
|
prevSize = fw.Size
|
2013-05-29 07:34:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2013-05-30 05:32:59 +08:00
|
|
|
return changes
|
2013-05-29 07:34:36 +08:00
|
|
|
}
|