Class: Msgr::Dispatcher

Inherits:
Object
  • Object
show all
Includes:
Logging
Defined in:
lib/msgr/dispatcher.rb

Overview

The Dispatcher receives incoming messages, process them through a middleware stack and delegate them to a new and fresh consumer instance.

Defined Under Namespace

Classes: NullPool

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Logging

#log, #log_name

Constructor Details

#initialize(config) ⇒ Dispatcher

Returns a new instance of Dispatcher.



13
14
15
16
17
18
19
20
21
22
# File 'lib/msgr/dispatcher.rb', line 13

def initialize(config)
  config[:pool_class] ||= 'Msgr::Dispatcher::NullPool'

  log(:debug) do
    "Initialize new dispatcher (#{config[:pool_class]}: #{config})..."
  end

  @config = config
  @pool = config[:pool_class].constantize.new config
end

Instance Attribute Details

#configObject (readonly)

Returns the value of attribute config.



11
12
13
# File 'lib/msgr/dispatcher.rb', line 11

def config
  @config
end

#poolObject (readonly)

Returns the value of attribute pool.



11
12
13
# File 'lib/msgr/dispatcher.rb', line 11

def pool
  @pool
end

Instance Method Details

#call(message) ⇒ Object



24
25
26
27
28
# File 'lib/msgr/dispatcher.rb', line 24

def call(message)
  pool.post(message) do |msg|
    dispatch msg
  end
end

#dispatch(message) ⇒ Object

rubocop:disable Metrics/AbcSize rubocop:disable Metrics/MethodLength rubocop:disable Metrics/CyclomaticComplexity



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/msgr/dispatcher.rb', line 33

def dispatch(message)
  consumer_class = Object.const_get message.route.consumer

  log(:debug) { "Dispatch message to #{consumer_class.name}" }

  consumer_class.new.dispatch message

  # Acknowledge message unless it is already acknowledged or auto_ack is disabled.
  message.ack unless message.acked? or not consumer_class.auto_ack?
rescue => error
  message.nack unless message.acked?

  log(:error) do
    "Dispatcher error: #{error.class.name}: #{error}\n" +
      error.backtrace.join("\n")
  end

  raise error if config[:raise_exceptions]
ensure
  if defined?(ActiveRecord) &&
     ActiveRecord::Base.connection_pool.active_connection?
    log(:debug) { 'Release used AR connection for dispatcher thread.' }
    ActiveRecord::Base.connection_pool.release_connection
  end
end

#shutdownObject



59
# File 'lib/msgr/dispatcher.rb', line 59

def shutdown; end

#to_sObject



61
62
63
# File 'lib/msgr/dispatcher.rb', line 61

def to_s
  self.class.name
end