Class: Carnivore::Source Abstract
- Inherits:
-
Object
- Object
- Carnivore::Source
- Includes:
- Utils::Logging, Utils::Logging, Celluloid
- Defined in:
- lib/carnivore/source.rb,
lib/carnivore/source/test.rb,
lib/carnivore/spec_helper.rb,
lib/carnivore/source_container.rb
Overview
Message source
Defined Under Namespace
Classes: SourceContainer, Spec, Test
Instance Attribute Summary collapse
-
#auto_confirm ⇒ TrueClass, FalseClass
readonly
Auto confirm received messages.
-
#auto_process ⇒ TrueClass, FalseClass
readonly
Start source processing on initialization.
-
#callback_supervisor ⇒ Carnivore::Supervisor
readonly
Supervisor maintaining callback instances.
-
#callbacks ⇒ Array<Callback>
readonly
Registered callbacks.
-
#message_loop ⇒ Queue
readonly
Local loop message queue.
-
#message_registry ⇒ Hash
readonly
Registry of processed messages.
-
#message_remote ⇒ Queue
readonly
Remote message queue.
-
#name ⇒ String, Symbol
readonly
Name of source.
-
#processing ⇒ TrueClass, FalseClass
readonly
Currently processing a message.
-
#run_process ⇒ TrueClass, FalseClass
readonly
Message processing control switch.
Class Method Summary collapse
-
.build(args = {}) ⇒ SourceContainer
Builds a source container.
-
.provide(type, require_path) ⇒ TrueClass
Register a new source type.
-
.register(name, inst) ⇒ TrueClass
Register the container.
-
.require_path(type) ⇒ String, NilClass
Registered path for given source type.
-
.reset_comms! ⇒ Object
Reset communication methods within class.
-
.source(name) ⇒ SourceContainer
Source container with given name.
-
.sources ⇒ Array<SourceContainer>
Registered source containers.
Instance Method Summary collapse
-
#_transmit(*args) ⇒ TrueClass
Send to local loop if processing otherwise use regular transmit.
-
#add_callback(callback_name, block_or_class) ⇒ self
Adds the given callback to the source for message processing.
-
#auto_confirm? ⇒ TrueClass, FalseClass
Automatic message confirmation enabled.
-
#callback_name(name) ⇒ Carnivore::Callback, NilClass
Returns namespaced name (prefixed with source name and instance id).
-
#confirm(message) ⇒ Object
Confirm receipt of the message on source.
-
#connect ⇒ Object
Connection hook for sources requiring customized connect.
-
#format(msg) ⇒ Carnivore::Message
Create new Message from received payload.
-
#init_registry ⇒ MessageRegistry
Load and initialize the message registry.
-
#initialize(args = {}) ⇒ Source
constructor
Create new Source.
-
#inspect ⇒ String
Inspection formatted string.
-
#loop_enabled? ⇒ TrueClass, FalseClass
Local message loopback is enabled.
-
#loop_receive(*args) ⇒ Carnivore::Message, NilClass
Get received message on local loopback.
-
#loop_transmit(message, original_message = nil, args = {}) ⇒ TrueClass
Push message onto internal loop queue.
-
#process(*args) ⇒ TrueClass
Process incoming messages from this source.
-
#receive(n = 1) ⇒ Object+
abstract
Receive messages from source.
-
#receive_messages ⇒ TrueClass
Receive messages from source.
-
#remove_callback(name) ⇒ self
Remove the named callback from the source.
-
#setup(args = {}) ⇒ Object
Setup hook for source requiring customized setup.
-
#teardown_cleanup ⇒ Object
Ensure we cleanup our internal supervisor before bailing out.
-
#to_s ⇒ String
Stringified instance.
-
#transmit(message, original_message = nil, args = {}) ⇒ Object
Send payload to source.
-
#valid_message?(m) ⇒ TrueClass, FalseClass
Validate message is allowed before processing.
Methods included from Utils::Logging
Constructor Details
#initialize(args = {}) ⇒ Source
Create new Source
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'lib/carnivore/source.rb', line 135 def initialize(args={}) @args = Smash.new(args) @callbacks = [] @message_loop = Queue.new @message_remote = Queue.new @callback_names = {} @auto_process = !!args.fetch(:auto_process, true) @run_process = true @auto_confirm = !!args[:auto_confirm] @callback_supervisor = Carnivore::Supervisor.create!.last if(args[:orphan_callback]) unless(args[:orphan_callback].is_a?(Proc)) raise TypeError.new("Expected `Proc` type for `orphan_callback` but received `#{args[:orphan_callback].class}`") end define_singleton_method(:orphan_callback, &args[:orphan_callback]) end if(args[:prevent_duplicates]) init_registry end @processing = false @name = args[:name] || Celluloid.uuid if(args[:callbacks]) args[:callbacks].each do |name, block| add_callback(name, block) end end setup(args) connect if(auto_process && !callbacks.empty?) async.process end rescue => e debug "Failed to initialize: #{self} - #{e.class}: #{e}\n#{e.backtrace.join("\n")}" raise end |
Instance Attribute Details
#auto_confirm ⇒ TrueClass, FalseClass (readonly)
Returns auto confirm received messages.
110 111 112 |
# File 'lib/carnivore/source.rb', line 110 def auto_confirm @auto_confirm end |
#auto_process ⇒ TrueClass, FalseClass (readonly)
Returns start source processing on initialization.
112 113 114 |
# File 'lib/carnivore/source.rb', line 112 def auto_process @auto_process end |
#callback_supervisor ⇒ Carnivore::Supervisor (readonly)
Returns supervisor maintaining callback instances.
116 117 118 |
# File 'lib/carnivore/source.rb', line 116 def callback_supervisor @callback_supervisor end |
#callbacks ⇒ Array<Callback> (readonly)
Returns registered callbacks.
108 109 110 |
# File 'lib/carnivore/source.rb', line 108 def callbacks @callbacks end |
#message_loop ⇒ Queue (readonly)
Returns local loop message queue.
120 121 122 |
# File 'lib/carnivore/source.rb', line 120 def @message_loop end |
#message_registry ⇒ Hash (readonly)
Returns registry of processed messages.
118 119 120 |
# File 'lib/carnivore/source.rb', line 118 def @message_registry end |
#message_remote ⇒ Queue (readonly)
Returns remote message queue.
122 123 124 |
# File 'lib/carnivore/source.rb', line 122 def @message_remote end |
#name ⇒ String, Symbol (readonly)
Returns name of source.
106 107 108 |
# File 'lib/carnivore/source.rb', line 106 def name @name end |
#processing ⇒ TrueClass, FalseClass (readonly)
Returns currently processing a message.
124 125 126 |
# File 'lib/carnivore/source.rb', line 124 def processing @processing end |
#run_process ⇒ TrueClass, FalseClass (readonly)
Returns message processing control switch.
114 115 116 |
# File 'lib/carnivore/source.rb', line 114 def run_process @run_process end |
Class Method Details
.build(args = {}) ⇒ SourceContainer
Builds a source container
20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/carnivore/source.rb', line 20 def build(args={}) [:args, :type].each do |key| unless(args.has_key?(key)) abort ArgumentError.new "Missing required parameter `:#{key}`" end end require Source.require_path(args[:type]) || "carnivore/source/#{args[:type]}" klass = args[:type].to_s.split('_').map(&:capitalize).join klass = Source.const_get(klass) args[:args][:name] ||= Celluloid.uuid inst = SourceContainer.new(klass, args[:args]) register(args[:args][:name], inst) inst end |
.provide(type, require_path) ⇒ TrueClass
Register a new source type
40 41 42 43 44 |
# File 'lib/carnivore/source.rb', line 40 def provide(type, require_path) @source_klass ||= Smash.new @source_klass[type] = require_path true end |
.register(name, inst) ⇒ TrueClass
Register the container
60 61 62 63 64 |
# File 'lib/carnivore/source.rb', line 60 def register(name, inst) @sources ||= Smash.new @sources[name] = inst true end |
.require_path(type) ⇒ String, NilClass
Registered path for given source type
50 51 52 53 |
# File 'lib/carnivore/source.rb', line 50 def require_path(type) @source_klass ||= Smash.new @source_klass[type] end |
.reset_comms! ⇒ Object
Reset communication methods within class
85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/carnivore/source.rb', line 85 def reset_comms! self.class_eval do unless(method_defined?(:reset_communications?)) alias_method :custom_transmit, :transmit alias_method :transmit, :_transmit def reset_communications? true end end end end |
.source(name) ⇒ SourceContainer
Source container with given name
70 71 72 73 74 75 76 77 |
# File 'lib/carnivore/source.rb', line 70 def source(name) if(@sources && @sources[name.to_sym]) @sources[name.to_sym] else Celluloid.logger.error "Source lookup failed (name: #{name})" abort KeyError.new("Requested named source is not registered: #{name}") end end |
.sources ⇒ Array<SourceContainer>
Returns registered source containers.
80 81 82 |
# File 'lib/carnivore/source.rb', line 80 def sources @sources ? @sources.values : [] end |
Instance Method Details
#_transmit(*args) ⇒ TrueClass
Send to local loop if processing otherwise use regular transmit
395 396 397 398 399 400 401 402 |
# File 'lib/carnivore/source.rb', line 395 def _transmit(*args) if(loop_enabled? && processing) loop_transmit(*args) else custom_transmit(*args) end true end |
#add_callback(callback_name, block_or_class) ⇒ self
Adds the given callback to the source for message processing
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'lib/carnivore/source.rb', line 236 def add_callback(callback_name, block_or_class) name = "#{self.name}:#{callback_name}" if(block_or_class.is_a?(Class)) size = block_or_class.workers || 1 if(size < 1) warn "Callback class (#{block_or_class}) defined no workers. Skipping." return self elsif(size == 1) debug "Adding callback class (#{block_or_class}) under supervision. Name: #{callback_name(name)}" callback_supervisor.supervise_as callback_name(name), block_or_class, name, current_actor else debug "Adding callback class (#{block_or_class}) under supervision pool (#{size} workers). Name: #{callback_name(name)}" callback_supervisor.pool block_or_class, as: callback_name(name), size: size, args: [name, current_actor] end else debug "Adding custom callback class from block (#{block_or_class}) under supervision. Name: #{callback_name(name)}" callback_supervisor.supervise_as callback_name(name), Callback, name, current_actor, block_or_class end callbacks.push(name).uniq! self end |
#auto_confirm? ⇒ TrueClass, FalseClass
Returns automatic message confirmation enabled.
178 179 180 |
# File 'lib/carnivore/source.rb', line 178 def auto_confirm? @auto_confirm end |
#callback_name(name) ⇒ Carnivore::Callback, NilClass
Returns namespaced name (prefixed with source name and instance id)
275 276 277 278 279 280 |
# File 'lib/carnivore/source.rb', line 275 def callback_name(name) unless(@callback_names[name]) @callback_names[name] = [@name, self.object_id, name].join(':').to_sym end @callback_names[name] end |
#confirm(message) ⇒ Object
Confirm receipt of the message on source
227 228 229 |
# File 'lib/carnivore/source.rb', line 227 def confirm() debug 'No custom confirm declared' end |
#connect ⇒ Object
Connection hook for sources requiring customized connect
202 203 204 |
# File 'lib/carnivore/source.rb', line 202 def connect debug 'No custom connect declared' end |
#format(msg) ⇒ Carnivore::Message
Create new Message from received payload
286 287 288 289 290 291 292 293 294 295 296 |
# File 'lib/carnivore/source.rb', line 286 def format(msg) actor = Carnivore::Supervisor.supervisor[name] if(actor) Message.new( :message => msg, :source => actor.current_actor ) else abort "Failed to locate self in registry (#{name})" end end |
#init_registry ⇒ MessageRegistry
Load and initialize the message registry
415 416 417 418 |
# File 'lib/carnivore/source.rb', line 415 def init_registry require 'carnivore/message_registry' @message_registry = MessageRegistry.new end |
#inspect ⇒ String
Returns inspection formatted string.
183 184 185 |
# File 'lib/carnivore/source.rb', line 183 def inspect "<#{self.class.name}:#{object_id} @name=#{name} @callbacks=#{Hash[*callbacks.map{|k,v| [k,v.object_id]}.flatten]}>" end |
#loop_enabled? ⇒ TrueClass, FalseClass
Local message loopback is enabled. Custom sources should override this method to allow loopback delivery if desired
408 409 410 |
# File 'lib/carnivore/source.rb', line 408 def loop_enabled? false end |
#loop_receive(*args) ⇒ Carnivore::Message, NilClass
Get received message on local loopback
375 376 377 |
# File 'lib/carnivore/source.rb', line 375 def loop_receive(*args) .shift end |
#loop_transmit(message, original_message = nil, args = {}) ⇒ TrueClass
Push message onto internal loop queue
385 386 387 388 389 |
# File 'lib/carnivore/source.rb', line 385 def loop_transmit(, =nil, args={}) .push signal(:messages_available) true end |
#process(*args) ⇒ TrueClass
Process incoming messages from this source
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/carnivore/source.rb', line 321 def process(*args) begin while(run_process && !callbacks.empty?) @processing = true async. if(.empty? && .empty?) wait(:messages_available) end msgs = [] msgs.push .pop unless .empty? msgs.push .pop unless .empty? msgs = [msgs].flatten.compact.map do |m| if((m)) format(m) end end.compact msgs.each do |msg| if(respond_to?(:orphan_callback)) valid_callbacks = callbacks.find_all do |name| callback_supervisor[callback_name(name)].valid?(msg) end else valid_callbacks = callbacks end valid_callbacks.each do |name| debug "Dispatching message<#{msg[:message].object_id}> to callback<#{name} (#{callback_name(name)})>" callback_supervisor[callback_name(name)].async.call(msg) end if(valid_callbacks.empty?) warn "Received message was not processed through any callbacks on this source: #{msg}" orphan_callback(current_actor, msg) if respond_to?(:orphan_callback) end end end ensure @processing = false end true end |
#receive(n = 1) ⇒ Object+
Receive messages from source
211 212 213 |
# File 'lib/carnivore/source.rb', line 211 def receive(n=1) raise NotImplementedError.new('Abstract method not valid for runtime') end |
#receive_messages ⇒ TrueClass
Receive messages from source
363 364 365 366 367 368 369 |
# File 'lib/carnivore/source.rb', line 363 def loop do .push receive signal(:messages_available) end true end |
#remove_callback(name) ⇒ self
Remove the named callback from the source
262 263 264 265 266 267 268 269 |
# File 'lib/carnivore/source.rb', line 262 def remove_callback(name) unless(@callbacks.include?(callback_name(name))) abort NameError.new("Failed to locate callback named: #{name}") end actors[callback_name(name)].terminate @callbacks.delete(name) self end |
#setup(args = {}) ⇒ Object
Setup hook for source requiring customized setup
195 196 197 |
# File 'lib/carnivore/source.rb', line 195 def setup(args={}) debug 'No custom setup declared' end |
#teardown_cleanup ⇒ Object
Ensure we cleanup our internal supervisor before bailing out
172 173 174 175 |
# File 'lib/carnivore/source.rb', line 172 def teardown_cleanup warn 'Termination request received. Tearing down!' callback_supervisor.terminate end |
#to_s ⇒ String
Returns stringified instance.
188 189 190 |
# File 'lib/carnivore/source.rb', line 188 def to_s "<#{self.class.name}:#{object_id} @name=#{name}>" end |
#transmit(message, original_message = nil, args = {}) ⇒ Object
Send payload to source
220 221 222 |
# File 'lib/carnivore/source.rb', line 220 def transmit(, =nil, args={}) raise NotImplemented.new('Abstract method not valid for runtime') end |
#valid_message?(m) ⇒ TrueClass, FalseClass
Validate message is allowed before processing. This is currently only used when the message registry is enabled to prevent duplicate message processing.
304 305 306 307 308 309 310 311 312 313 314 315 |
# File 'lib/carnivore/source.rb', line 304 def (m) if() if(.valid?(m)) true else warn "Message was already received. Discarding: #{m.inspect}" false end else true end end |