Skip to content

Commit

Permalink
Merge pull request #542 from fluent/support-64bit-inode
Browse files Browse the repository at this point in the history
Support 64bit inode environment in in_tail
  • Loading branch information
repeatedly committed Jan 23, 2015
2 parents 2ebce8f + 79a9113 commit 5aed99e
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions lib/fluent/plugin/in_tail.rb
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def [](path)
@file.write path
@file.write "\t"
seek = @file.pos
@file.write "0000000000000000\t00000000\n"
@file.write "0000000000000000\t0000000000000000\n"
@last_pos = @file.pos

@map[path] = FilePositionEntry.new(@file, seek)
Expand All @@ -623,12 +623,15 @@ def self.parse(file)
# Clean up unwatched file entries
def self.compact(file)
file.pos = 0
existent_entries = file.each_line.select { |line|
existent_entries = file.each_line.map { |line|
m = /^([^\t]+)\t([0-9a-fA-F]+)\t([0-9a-fA-F]+)/.match(line)
next unless m
path = m[1]
pos = m[2].to_i(16)
pos == UNWATCHED_POSITION ? nil : line
}
ino = m[3].to_i(16)
# 32bit inode converted to 64bit at this phase
pos == UNWATCHED_POSITION ? nil : ("%s\t%016x\t%016x\n" % [path, pos, ino])
}.compact

file.pos = 0
file.truncate(0)
Expand All @@ -637,13 +640,13 @@ def self.compact(file)
end

# pos inode
# ffffffffffffffff\tffffffff\n
# ffffffffffffffff\tffffffffffffffff\n
class FilePositionEntry
POS_SIZE = 16
INO_OFFSET = 17
INO_SIZE = 8
LN_OFFSET = 25
SIZE = 26
INO_SIZE = 16
LN_OFFSET = 33
SIZE = 34

def initialize(file, seek)
@file = file
Expand All @@ -652,7 +655,7 @@ def initialize(file, seek)

def update(ino, pos)
@file.pos = @seek
@file.write "%016x\t%08x" % [pos, ino]
@file.write "%016x\t%016x" % [pos, ino]
end

def update_pos(pos)
Expand All @@ -662,7 +665,7 @@ def update_pos(pos)

def read_inode
@file.pos = @seek + INO_OFFSET
raw = @file.read(8)
raw = @file.read(16)
raw ? raw.to_i(16) : 0
end

Expand Down

0 comments on commit 5aed99e

Please sign in to comment.