Class: Fluent::Plugin::TailInput::TailWatcher::IOHandler
- Inherits:
-
Object
- Object
- Fluent::Plugin::TailInput::TailWatcher::IOHandler
- Defined in:
- lib/fluent/plugin/in_tail.rb
Constant Summary collapse
- BYTES_TO_READ =
8192- SHUTDOWN_TIMEOUT =
5
Instance Attribute Summary collapse
-
#shutdown_timeout ⇒ Object
Returns the value of attribute shutdown_timeout.
Instance Method Summary collapse
- #close ⇒ Object
- #eof? ⇒ Boolean
-
#initialize(watcher, path:, read_lines_limit:, read_bytes_limit_per_second:, log:, open_on_every_update:, from_encoding: nil, encoding: nil, metrics:, &receive_lines) ⇒ IOHandler
constructor
A new instance of IOHandler.
- #on_notify ⇒ Object
- #opened? ⇒ Boolean
- #ready_to_shutdown(shutdown_start_time = nil) ⇒ Object
Constructor Details
#initialize(watcher, path:, read_lines_limit:, read_bytes_limit_per_second:, log:, open_on_every_update:, from_encoding: nil, encoding: nil, metrics:, &receive_lines) ⇒ IOHandler
Returns a new instance of IOHandler.
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 |
# File 'lib/fluent/plugin/in_tail.rb', line 976 def initialize(watcher, path:, read_lines_limit:, read_bytes_limit_per_second:, log:, open_on_every_update:, from_encoding: nil, encoding: nil, metrics:, &receive_lines) @watcher = watcher @path = path @read_lines_limit = read_lines_limit @read_bytes_limit_per_second = read_bytes_limit_per_second @receive_lines = receive_lines @open_on_every_update = open_on_every_update @fifo = FIFO.new(from_encoding || Encoding::ASCII_8BIT, encoding || Encoding::ASCII_8BIT) @iobuf = ''.force_encoding('ASCII-8BIT') @lines = [] @io = nil @notify_mutex = Mutex.new @log = log @start_reading_time = nil @number_bytes_read = 0 @shutdown_start_time = nil @shutdown_timeout = SHUTDOWN_TIMEOUT @shutdown_mutex = Mutex.new @eof = false @metrics = metrics @log.info "following tail of #{@path}" end |
Instance Attribute Details
#shutdown_timeout ⇒ Object
Returns the value of attribute shutdown_timeout.
974 975 976 |
# File 'lib/fluent/plugin/in_tail.rb', line 974 def shutdown_timeout @shutdown_timeout end |
Instance Method Details
#close ⇒ Object
1011 1012 1013 1014 1015 1016 1017 |
# File 'lib/fluent/plugin/in_tail.rb', line 1011 def close if @io && !@io.closed? @io.close @io = nil @metrics.closed.inc end end |
#eof? ⇒ Boolean
1023 1024 1025 |
# File 'lib/fluent/plugin/in_tail.rb', line 1023 def eof? @eof end |
#on_notify ⇒ Object
1000 1001 1002 |
# File 'lib/fluent/plugin/in_tail.rb', line 1000 def on_notify @notify_mutex.synchronize { handle_notify } end |
#opened? ⇒ Boolean
1019 1020 1021 |
# File 'lib/fluent/plugin/in_tail.rb', line 1019 def opened? !!@io end |
#ready_to_shutdown(shutdown_start_time = nil) ⇒ Object
1004 1005 1006 1007 1008 1009 |
# File 'lib/fluent/plugin/in_tail.rb', line 1004 def ready_to_shutdown(shutdown_start_time = nil) @shutdown_mutex.synchronize { @shutdown_start_time = shutdown_start_time || Fluent::Clock.now } end |