Class: Fluent::SpectrumInput::StateStore

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

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ StateStore

Returns a new instance of StateStore.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/fluent/plugin/in_spectrum.rb', line 31

def initialize(path)
  require 'yaml'
  @path = path
  if File.exists?(@path)
    @data = YAML.load_file(@path)
    if @data == false || @data == []
      # this happens if an users created an empty file accidentally
      @data = {}
    elsif !@data.is_a?(Hash)
      raise "state_file on #{@path.inspect} is invalid"
    end
  else
    @data = {}
  end
end

Instance Method Details

#last_recordsObject



47
48
49
# File 'lib/fluent/plugin/in_spectrum.rb', line 47

def last_records
  @data['last_records'] ||= {}
end

#update!Object



51
52
53
54
55
# File 'lib/fluent/plugin/in_spectrum.rb', line 51

def update!
  File.open(@path, 'w') {|f|
    f.write YAML.dump(@data)
  }
end