update change log, gofmt and remove debug prints

This commit is contained in:
Sridhar Ratnakumar 2013-05-28 13:53:19 -07:00
parent 644891ebbc
commit 976fc15b81
4 changed files with 16 additions and 29 deletions

View File

@ -1,6 +1,8 @@
# May, 2013
* Recognize deletions/renames when using polling file watcher (PR #1)
* Detect file truncation
* Fix potential race condition when reopening the file (issue 5)
# Feb, 2013

View File

@ -13,8 +13,8 @@ import (
)
type Line struct {
Text string
Time time.Time
Text string
Time time.Time
}
// Tail configuration
@ -156,7 +156,7 @@ func (tail *Tail) tailFileSync() {
for _, line := range partitionString(string(line), tail.MaxLineSize) {
tail.Lines <- &Line{line, now}
}
}else{
} else {
tail.Lines <- &Line{string(line), now}
}
}
@ -186,7 +186,6 @@ func (tail *Tail) tailFileSync() {
if !ok {
changes = nil // XXX: how to kill changes' goroutine?
log.Println("Changes channel is closed.")
// File got deleted/renamed/truncated.
if tail.ReOpen {
// TODO: no logging in a library?
@ -208,7 +207,6 @@ func (tail *Tail) tailFileSync() {
}
}
case <-tail.Dying():
log.Println("Dying..")
tail.close()
return
}

View File

@ -85,7 +85,7 @@ func _TestReOpen(_t *testing.T, poll bool) {
var name string
if poll {
name = "reopen-polling"
}else {
} else {
name = "reopen-inotify"
}
t := NewTailTest(name, _t)
@ -138,12 +138,11 @@ func TestReOpenPolling(_t *testing.T) {
_TestReOpen(_t, true)
}
func _TestReSeek(_t *testing.T, poll bool) {
var name string
if poll {
name = "reseek-polling"
}else {
} else {
name = "reseek-inotify"
}
t := NewTailTest(name, _t)
@ -176,7 +175,7 @@ func _TestReSeek(_t *testing.T, poll bool) {
<-time.After(100 * time.Millisecond)
t.RemoveFile("test.txt")
println("Stopping...")
println("Stopping (RESEEK)...")
tail.Stop()
}
@ -191,7 +190,6 @@ func TestReSeekPolling(_t *testing.T) {
_TestReSeek(_t, true)
}
// Test library
type TailTest struct {
@ -275,7 +273,7 @@ func (t TailTest) VerifyTailOutput(tail *Tail, lines []string) {
err := tail.Wait()
if err != nil {
t.Fatal("tail ended early with error: %v", err)
}else{
} else {
t.Fatalf("tail ended early; expecting more: %v", lines[idx:])
}
}

View File

@ -6,9 +6,8 @@ import (
"github.com/howeyc/fsnotify"
"os"
"path/filepath"
"time"
"sync"
"fmt"
"time"
)
// FileWatcher monitors file-level events.
@ -34,7 +33,6 @@ func NewInotifyFileWatcher(filename string) *InotifyFileWatcher {
}
func (fw *InotifyFileWatcher) BlockUntilExists() error {
fmt.Println("BUE(inotify): creating watcher")
w, err := fsnotify.NewWatcher()
if err != nil {
return err
@ -50,7 +48,6 @@ func (fw *InotifyFileWatcher) BlockUntilExists() error {
}
defer w.RemoveWatch(filepath.Dir(fw.Filename))
fmt.Println("BUE(inotify): does file exist now?")
// 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) {
@ -58,10 +55,8 @@ func (fw *InotifyFileWatcher) BlockUntilExists() error {
return err
}
fmt.Printf("BUE(inotify): checking events (last: %v)\n", err)
for {
evt := <-w.Event
fmt.Printf("BUE(inotify): got event: %v\n", evt)
if evt.Name == fw.Filename {
break
}
@ -93,7 +88,6 @@ func (fw *InotifyFileWatcher) ChangeEvents(fi os.FileInfo) chan bool {
prevSize := fw.Size
evt := <-w.Event
fmt.Printf("inotify change evt: %v\n", evt)
switch {
case evt.IsDelete():
fallthrough
@ -109,7 +103,6 @@ func (fw *InotifyFileWatcher) ChangeEvents(fi os.FileInfo) chan bool {
}
fw.Size = fi.Size()
fmt.Printf("WATCH(inotify): prevSize=%d; fs.Size=%d\n", prevSize, fw.Size)
if prevSize > 0 && prevSize > fw.Size {
return
}
@ -143,11 +136,10 @@ func (fw *PollingFileWatcher) BlockUntilExists() error {
for {
if _, err := os.Stat(fw.Filename); err == nil {
return nil
}else if !os.IsNotExist(err) {
} else if !os.IsNotExist(err) {
return err
}
time.Sleep(POLL_DURATION)
println("blocking..")
}
panic("unreachable")
}
@ -198,7 +190,6 @@ func (fw *PollingFileWatcher) ChangeEvents(origFi os.FileInfo) chan bool {
// Was the file truncated?
fw.Size = fi.Size()
fmt.Printf("WATCH(poll): prevSize=%d; fs.Size=%d\n", prevSize, fw.Size)
if prevSize > 0 && prevSize > fw.Size {
once.Do(stopAndClose)
continue
@ -212,8 +203,6 @@ func (fw *PollingFileWatcher) ChangeEvents(origFi os.FileInfo) chan bool {
case ch <- true:
default:
}
}else{
fmt.Printf("polling; not modified: %v == %v\n", modTime, prevModTime)
}
}
}()