Class: Fluent::Plugin::TailInput::TailWatcher::IOHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/fluent/plugin/in_tail.rb

Constant Summary collapse

BYTES_TO_READ =
8192
SHUTDOWN_TIMEOUT =
5

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
# File 'lib/fluent/plugin/in_tail.rb', line 1045

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_timeoutObject

Returns the value of attribute shutdown_timeout.



1043
1044
1045
# File 'lib/fluent/plugin/in_tail.rb', line 1043

def shutdown_timeout
  @shutdown_timeout
end

Instance Method Details

#closeObject



1084
1085
1086
1087
1088
1089
1090
# File 'lib/fluent/plugin/in_tail.rb', line 1084

def close
  if @io && !@io.closed?
    @io.close
    @io = nil
    @metrics.closed.inc
  end
end

#eof?Boolean

Returns:

  • (Boolean)


1096
1097
1098
# File 'lib/fluent/plugin/in_tail.rb', line 1096

def eof?
  @eof
end

#group_watcherObject



1069
1070
1071
# File 'lib/fluent/plugin/in_tail.rb', line 1069

def group_watcher
  @watcher.group_watcher
end

#on_notifyObject



1073
1074
1075
# File 'lib/fluent/plugin/in_tail.rb', line 1073

def on_notify
  @notify_mutex.synchronize { handle_notify }
end

#opened?Boolean

Returns:

  • (Boolean)


1092
1093
1094
# File 'lib/fluent/plugin/in_tail.rb', line 1092

def opened?
  !!@io
end

#ready_to_shutdown(shutdown_start_time = nil) ⇒ Object



1077
1078
1079
1080
1081
1082
# File 'lib/fluent/plugin/in_tail.rb', line 1077

def ready_to_shutdown(shutdown_start_time = nil)
  @shutdown_mutex.synchronize {
    @shutdown_start_time =
      shutdown_start_time || Fluent::Clock.now
  }
end