Do not seek in named pipe

This commit is contained in:
Wim 2015-09-24 21:40:43 +02:00
parent 4b368d1590
commit 52a42ed990
1 changed files with 11 additions and 5 deletions

16
tail.go
View File

@ -46,6 +46,7 @@ type Config struct {
ReOpen bool // Reopen recreated files (tail -F) ReOpen bool // Reopen recreated files (tail -F)
MustExist bool // Fail early if the file does not exist MustExist bool // Fail early if the file does not exist
Poll bool // Poll for file changes instead of using inotify Poll bool // Poll for file changes instead of using inotify
Pipe bool // Is a named pipe (mkfifo)
RateLimiter *ratelimiter.LeakyBucket RateLimiter *ratelimiter.LeakyBucket
// Generic IO // Generic IO
@ -217,13 +218,18 @@ func (tail *Tail) tailFileSync() {
tail.openReader() tail.openReader()
var offset int64 = 0
var err error
// Read line by line. // Read line by line.
for { for {
// grab the position in case we need to back up in the event of a half-line // do not seek in named pipes
offset, err := tail.Tell() if !tail.Pipe {
if err != nil { // grab the position in case we need to back up in the event of a half-line
tail.Kill(err) offset, err = tail.Tell()
return if err != nil {
tail.Kill(err)
return
}
} }
line, err := tail.readLine() line, err := tail.readLine()