Class: Fluent::Plugin::NetflowParser::Vash
- Inherits:
-
Hash
- Object
- Hash
- Fluent::Plugin::NetflowParser::Vash
- Defined in:
- lib/fluent/plugin/vash.rb
Overview
Instance Method Summary collapse
- #[](key) ⇒ Object
- #[]=(key, *args) ⇒ Object
- #cleanup! ⇒ Object
- #clear(key) ⇒ Object
-
#initialize(constructor = {}) ⇒ Vash
constructor
A new instance of Vash.
- #merge(hsh) ⇒ Object
- #regular_reader ⇒ Object
- #regular_writer ⇒ Object
Constructor Details
#initialize(constructor = {}) ⇒ Vash
Returns a new instance of Vash.
6 7 8 9 10 11 12 13 14 |
# File 'lib/fluent/plugin/vash.rb', line 6 def initialize(constructor = {}) @register ||= {} if constructor.is_a?(Hash) super() merge(constructor) else super(constructor) end end |
Instance Method Details
#[](key) ⇒ Object
19 20 21 22 23 |
# File 'lib/fluent/plugin/vash.rb', line 19 def [](key) sterilize(key) clear(key) if expired?(key) regular_reader(key) end |
#[]=(key, *args) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/fluent/plugin/vash.rb', line 25 def []=(key, *args) if args.length == 2 value, ttl = args[1], args[0] elsif args.length == 1 value, ttl = args[0], 60 else raise ArgumentError, "Wrong number of arguments, expected 2 or 3, received: #{args.length+1}\n"+ "Example Usage: volatile_hash[:key]=value OR volatile_hash[:key, ttl]=value" end sterilize(key) ttl(key, ttl) regular_writer(key, value) end |
#cleanup! ⇒ Object
44 45 46 47 |
# File 'lib/fluent/plugin/vash.rb', line 44 def cleanup! now = Time.now.to_i @register.map {|k,v| clear(k) if v < now} end |
#clear(key) ⇒ Object
49 50 51 52 53 |
# File 'lib/fluent/plugin/vash.rb', line 49 def clear(key) sterilize(key) @register.delete key self.delete key end |
#merge(hsh) ⇒ Object
39 40 41 42 |
# File 'lib/fluent/plugin/vash.rb', line 39 def merge(hsh) hsh.map {|key,value| self[sterile(key)] = hsh[key]} self end |
#regular_reader ⇒ Object
17 |
# File 'lib/fluent/plugin/vash.rb', line 17 alias_method :regular_reader, :[] |
#regular_writer ⇒ Object
16 |
# File 'lib/fluent/plugin/vash.rb', line 16 alias_method :regular_writer, :[]= |