Class: Vash

Inherits:
Hash
  • Object
show all
Defined in:
lib/logstash/codecs/netflow/util.rb

Overview

Instance Method Summary collapse

Constructor Details

#initialize(constructor = {}) ⇒ Vash



287
288
289
290
291
292
293
294
295
# File 'lib/logstash/codecs/netflow/util.rb', line 287

def initialize(constructor = {})
  @register ||= {}
  if constructor.is_a?(Hash)
    super()
    merge(constructor)
  else
    super(constructor)
  end
end

Instance Method Details

#[](key) ⇒ Object



300
301
302
303
304
# File 'lib/logstash/codecs/netflow/util.rb', line 300

def [](key)
  sterilize(key)
  clear(key) if expired?(key)
  regular_reader(key)
end

#[]=(key, *args) ⇒ Object



306
307
308
309
310
311
312
313
314
315
316
317
318
# File 'lib/logstash/codecs/netflow/util.rb', line 306

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



325
326
327
328
# File 'lib/logstash/codecs/netflow/util.rb', line 325

def cleanup!
  now = Time.now.to_i
  @register.map {|k,v| clear(k) if v < now}
end

#clear(key) ⇒ Object



330
331
332
333
334
# File 'lib/logstash/codecs/netflow/util.rb', line 330

def clear(key)
  sterilize(key)
  @register.delete key
  self.delete key
end

#merge(hsh) ⇒ Object



320
321
322
323
# File 'lib/logstash/codecs/netflow/util.rb', line 320

def merge(hsh)
  hsh.map {|key,value| self[sterile(key)] = hsh[key]}
  self
end

#regular_readerObject



298
# File 'lib/logstash/codecs/netflow/util.rb', line 298

alias_method :regular_reader, :[]

#regular_writerObject



297
# File 'lib/logstash/codecs/netflow/util.rb', line 297

alias_method :regular_writer, :[]=