Class: LogStash::Inputs::S3::SinceDB::File
- Inherits:
-
Object
- Object
- LogStash::Inputs::S3::SinceDB::File
- Defined in:
- lib/logstash/inputs/s3.rb
Instance Method Summary collapse
-
#initialize(file) ⇒ File
constructor
A new instance of File.
- #read ⇒ Time
- #write(since = nil) ⇒ Object
Constructor Details
#initialize(file) ⇒ File
Returns a new instance of File.
448 449 450 |
# File 'lib/logstash/inputs/s3.rb', line 448 def initialize(file) @sincedb_path = file end |
Instance Method Details
#read ⇒ Time
453 454 455 456 457 458 459 460 461 |
# File 'lib/logstash/inputs/s3.rb', line 453 def read if ::File.exists?(@sincedb_path) content = ::File.read(@sincedb_path).chomp.strip # If the file was created but we didn't have the time to write to it return content.empty? ? Time.new(0) : Time.parse(content) else return Time.new(0) end end |
#write(since = nil) ⇒ Object
463 464 465 466 |
# File 'lib/logstash/inputs/s3.rb', line 463 def write(since = nil) since = Time.now if since.nil? ::File.open(@sincedb_path, 'w') { |file| file.write(since.to_s) } end |