Class: Cache
- Inherits:
-
Object
- Object
- Cache
- Defined in:
- lib/logstash/filters/ip2proxy.rb
Constant Summary collapse
- ONE_DAY_IN_SECONDS =
86_400
Class Attribute Summary collapse
-
.cache ⇒ Object
readonly
Returns the value of attribute cache.
-
.times_queried ⇒ Object
readonly
Returns the value of attribute times_queried.
-
.timestamps ⇒ Object
readonly
Returns the value of attribute timestamps.
Class Method Summary collapse
- .cache_event(event, ip, filter) ⇒ Object (also: refresh_event)
- .cache_full?(cache_size) ⇒ Boolean
- .find(event, ip, filter, cache_size) ⇒ Object
- .make_room ⇒ Object
- .synchronize(&block) ⇒ Object
- .too_old?(ip) ⇒ Boolean
Class Attribute Details
permalink .cache ⇒ Object (readonly)
Returns the value of attribute cache.
109 110 111 |
# File 'lib/logstash/filters/ip2proxy.rb', line 109 def cache @cache end |
permalink .times_queried ⇒ Object (readonly)
Returns the value of attribute times_queried.
111 112 113 |
# File 'lib/logstash/filters/ip2proxy.rb', line 111 def times_queried @times_queried end |
permalink .timestamps ⇒ Object (readonly)
Returns the value of attribute timestamps.
110 111 112 |
# File 'lib/logstash/filters/ip2proxy.rb', line 110 def @timestamps end |
Class Method Details
permalink .cache_event(event, ip, filter) ⇒ Object Also known as: refresh_event
[View source]
142 143 144 145 146 |
# File 'lib/logstash/filters/ip2proxy.rb', line 142 def cache_event(event, ip, filter) filter.handleEvent(event) cache[ip] = event [ip] = Time.now end |
permalink .cache_full?(cache_size) ⇒ Boolean
138 139 140 |
# File 'lib/logstash/filters/ip2proxy.rb', line 138 def cache_full?(cache_size) cache.size >= cache_size end |
permalink .find(event, ip, filter, cache_size) ⇒ Object
[View source]
113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'lib/logstash/filters/ip2proxy.rb', line 113 def find(event, ip, filter, cache_size) synchronize do if cache.has_key?(ip) refresh_event(event, ip, filter) if too_old?(ip) else if cache_full?(cache_size) make_room end cache_event(event, ip, filter) end times_queried.increment(ip) cache[ip] end end |
permalink .make_room ⇒ Object
[View source]
132 133 134 135 136 |
# File 'lib/logstash/filters/ip2proxy.rb', line 132 def make_room key = times_queried.delete_least_used cache.delete(key) .delete(key) end |
permalink .synchronize(&block) ⇒ Object
[View source]
148 149 150 |
# File 'lib/logstash/filters/ip2proxy.rb', line 148 def synchronize(&block) @mutex.synchronize(&block) end |
permalink .too_old?(ip) ⇒ Boolean
128 129 130 |
# File 'lib/logstash/filters/ip2proxy.rb', line 128 def too_old?(ip) [ip] < Time.now - ONE_DAY_IN_SECONDS end |