Class: ActiveMessaging::Gateway

Inherits:
Object
  • Object
show all
Defined in:
lib/activemessaging/gateway.rb,
lib/activemessaging/test_helper.rb

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.adaptersObject

Returns the value of attribute adapters.



25
26
27
# File 'lib/activemessaging/gateway.rb', line 25

def adapters
  @adapters
end

.connectionsObject

Returns the value of attribute connections.



25
26
27
# File 'lib/activemessaging/gateway.rb', line 25

def connections
  @connections
end

.filtersObject

Returns the value of attribute filters.



25
26
27
# File 'lib/activemessaging/gateway.rb', line 25

def filters
  @filters
end

.named_destinationsObject

Returns the value of attribute named_destinations.



25
26
27
# File 'lib/activemessaging/gateway.rb', line 25

def named_destinations
  @named_destinations
end

.processor_groupsObject

Returns the value of attribute processor_groups.



25
26
27
# File 'lib/activemessaging/gateway.rb', line 25

def processor_groups
  @processor_groups
end

.subscriptionsObject

Returns the value of attribute subscriptions.



25
26
27
# File 'lib/activemessaging/gateway.rb', line 25

def subscriptions
  @subscriptions
end

Class Method Details

._dispatch(message) ⇒ Object



224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
# File 'lib/activemessaging/gateway.rb', line 224

def _dispatch(message)
  abort = false
  processed = false

  subscriptions.each do |key, subscription| 
    if message.matches_subscription?(subscription) then
      processed = true
      routing = {
        :receiver    => subscription.processor_class, 
        :destination => subscription.destination,
        :direction   => :incoming
      }
      begin
        execute_filter_chain(:incoming, message, routing) do |m|
          result = subscription.processor_class.new.process!(m)
        end
      rescue ActiveMessaging::AbortMessageException
        abort_message subscription, message
        abort = true
        return
      ensure
        acknowledge_message subscription, message unless abort
      end
    end
  end

  ActiveMessaging.logger.error("No-one responded to #{message}") unless processed

end

.abort_message(subscription, message) ⇒ Object

abort_message is called when procesing the message raises a ActiveMessaging::AbortMessageException indicating the message should be returned to the destination so it can be tried again, later



261
262
263
# File 'lib/activemessaging/gateway.rb', line 261

def abort_message subscription, message
  connection(subscription.destination.broker_name).unreceive message, subscription.subscribe_headers
end

.acknowledge_message(subscription, message) ⇒ Object

acknowledge_message is called when the message has been processed w/o error by at least one processor



255
256
257
# File 'lib/activemessaging/gateway.rb', line 255

def acknowledge_message subscription, message
  connection(subscription.destination.broker_name).received message, subscription.subscribe_headers
end

.apply_filter?(direction, details, options) ⇒ Boolean

Returns:

  • (Boolean)


167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/activemessaging/gateway.rb', line 167

def apply_filter?(direction, details, options)
  # check that it is the correct direction
  result = if direction.to_sym == options[:direction] || options[:direction] == :bidirectional
    if options.has_key?(:only) && [options[:only]].flatten.include?(details[:destination].name)
      true
    elsif options.has_key?(:except) && ![options[:except]].flatten.include?(details[:destination].name)
      true
    elsif !options.has_key?(:only) && !options.has_key?(:except)
      true
    end
  end
  result
end

.connection(broker_name = 'default') ⇒ Object



122
123
124
125
126
127
128
# File 'lib/activemessaging/gateway.rb', line 122

def connection broker_name='default'
  return @connections[broker_name] if @connections.has_key?(broker_name)
  config = load_connection_configuration(broker_name)
  adapter_class = Gateway.adapters[config[:adapter]]
  raise "Unknown messaging adapter #{config[:adapter].inspect}!" if adapter_class.nil?
  @connections[broker_name] = adapter_class.new(config)
end

.create_filter(filter, options) ⇒ Object



181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/activemessaging/gateway.rb', line 181

def create_filter(filter, options)
  filter_class = if filter.is_a?(String) or filter.is_a?(Symbol)
    filter.to_s.camelize.constantize
  elsif filter.is_a?(Class)
    filter
  end

  if filter_class
    if filter_class.respond_to?(:process) && (filter_class.method(:process).arity.abs > 0)
      filter_class
    elsif filter_class.instance_method(:initialize).arity.abs == 1
      filter_class.new(options)
    elsif filter_class.instance_method(:initialize).arity == 0
      filter_class.new
    else
      raise "Filter #{filter} could not be created, no 'initialize' matched."
    end
  else
    raise "Filter #{filter} could not be loaded, created, or used!"
  end
end

.current_processor_groupObject



344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
# File 'lib/activemessaging/gateway.rb', line 344

def current_processor_group
  if ARGV.length > 0 && !@current_processor_group
    ARGV.each {|arg|
      pair = arg.split('=')
      if pair[0] == 'process-group'
        group_sym = pair[1].to_sym
        if processor_groups.has_key? group_sym
          @current_processor_group = group_sym
        else
          ActiveMessaging.logger.error "Unrecognized process-group."
          ActiveMessaging.logger.error "You specified process-group #{pair[1]}, make sure this is specified in config/messaging.rb"
          ActiveMessaging.logger.error "  ActiveMessaging::Gateway.define do |s|"
          ActiveMessaging.logger.error "    s.processor_groups = { :group1 => [:foo_bar1_processor], :group2 => [:foo_bar2_processor] }"
          ActiveMessaging.logger.error "  end"
          exit
        end
      end
    }
  end
  @current_processor_group
end

.define {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:



265
266
267
268
# File 'lib/activemessaging/gateway.rb', line 265

def define
  #run the rest of messaging.rb
  yield self
end

.destination(destination_name, destination, publish_headers = {}, broker = 'default') ⇒ Object Also known as: queue



270
271
272
273
# File 'lib/activemessaging/gateway.rb', line 270

def destination destination_name, destination, publish_headers={}, broker='default'
  raise "You already defined #{destination_name} to #{named_destinations[destination_name].value}" if named_destinations.has_key?(destination_name)
  named_destinations[destination_name] = Destination.new(destination_name, destination, publish_headers, broker)
end

.disconnectObject



147
148
149
150
# File 'lib/activemessaging/gateway.rb', line 147

def disconnect
  @connections.each { |key,connection| connection.disconnect }
  @connections = {}
end

.dispatch(message) ⇒ Object



212
213
214
215
216
217
218
219
220
221
222
# File 'lib/activemessaging/gateway.rb', line 212

def dispatch(message)
  prepare_application
  _dispatch(message)
rescue Object => exc
  ActiveMessaging.logger.error "Dispatch exception: #{exc}"
  ActiveMessaging.logger.error exc.backtrace.join("\n\t")
  raise exc
ensure
  ActiveMessaging.logger.flush rescue nil
  reset_application
end

.execute_filter_chain(direction, message, details = {}) {|message| ... } ⇒ Object

Yields:

  • (message)


152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'lib/activemessaging/gateway.rb', line 152

def execute_filter_chain(direction, message, details={})
  filters.each do |filter, options|
    if apply_filter?(direction, details, options)
      begin
        filter_obj = create_filter(filter, options)
        filter_obj.process(message, details)
      rescue ActiveMessaging::StopFilterException => sfe
        ActiveMessaging.logger.error "Filter: #{filter_obj.inspect} threw StopFilterException: #{sfe.message}"
        return
      end
    end
  end
  yield(message)
end

.filter(filter, options = {}) ⇒ Object



134
135
136
137
# File 'lib/activemessaging/gateway.rb', line 134

def filter filter, options = {}
  options[:direction] = :bidirectional if options[:direction].nil?
  filters << [filter, options]
end

.find_destination(destination_name) ⇒ Object Also known as: find_queue



277
278
279
280
281
# File 'lib/activemessaging/gateway.rb', line 277

def find_destination destination_name
  real_destination = named_destinations[destination_name]
  raise "You have not yet defined a destination named #{destination_name}. Destinations currently defined are [#{named_destinations.keys.join(',')}]" if real_destination.nil?
  real_destination
end

.load_connection_configuration(label = 'default') ⇒ Object



366
367
368
369
370
371
372
373
374
375
376
# File 'lib/activemessaging/gateway.rb', line 366

def load_connection_configuration(label='default')
  @broker_yml = YAML::load(ERB.new(IO.read(File.join(ActiveMessaging.app_root, 'config', 'broker.yml'))).result) if @broker_yml.nil?
  if label == 'default'
    config = @broker_yml[ActiveMessaging.app_env].symbolize_keys
  else
    config = @broker_yml[ActiveMessaging.app_env][label].symbolize_keys
  end
  config[:adapter] = config[:adapter].to_sym if config[:adapter]
  config[:adapter] ||= :stomp
  return config
end

.prepare_applicationObject



203
204
205
206
207
# File 'lib/activemessaging/gateway.rb', line 203

def prepare_application
  if defined? ActiveRecord
    ActiveRecord::Base.verify_active_connections!
  end
end

.processor_group(group_name, *processors) ⇒ Object



336
337
338
339
340
341
342
# File 'lib/activemessaging/gateway.rb', line 336

def processor_group group_name, *processors
  if processor_groups.has_key? group_name
    processor_groups[group_name] =  processor_groups[group_name] + processors
  else
    processor_groups[group_name] = processors
  end
end

.publish(destination_name, body, publisher = nil, headers = {}, timeout = 10) ⇒ Object



293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
# File 'lib/activemessaging/gateway.rb', line 293

def publish destination_name, body, publisher=nil, headers={}, timeout=10
  raise "You cannot have a nil or empty destination name." if destination_name.nil?
  raise "You cannot have a nil or empty message body." if (body.nil? || body.empty?)
  
  real_destination = find_destination(destination_name)
  details = {
    :publisher => publisher, 
    :destination => real_destination,
    :direction => :outgoing
  }
  message = OpenStruct.new(:body => body, :headers => headers.reverse_merge(real_destination.publish_headers))
  begin
    Timeout.timeout timeout do
      execute_filter_chain(:outgoing, message, details) do |message|
        connection(real_destination.broker_name).send real_destination.value, message.body, message.headers
      end
    end
  rescue Timeout::Error=>toe
    ActiveMessaging.logger.error("Timed out trying to send the message #{message} to destination #{destination_name} via broker #{real_destination.broker_name}")
    raise toe
  end
end

.receive(destination_name, receiver = nil, subscribe_headers = {}, timeout = 10) ⇒ Object



316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
# File 'lib/activemessaging/gateway.rb', line 316

def receive destination_name, receiver=nil, subscribe_headers={}, timeout=10
  raise "You cannot have a nil or empty destination name." if destination_name.nil?
  conn = nil
  dest = find_destination destination_name
  config = load_connection_configuration(dest.broker_name)
  subscribe_headers['id'] = receiver.name.underscore unless (receiver.nil? or subscribe_headers.key? 'id') 
  Timeout.timeout timeout do
    conn = Gateway.adapters[config[:adapter]].new(config)
    conn.subscribe(dest.value, subscribe_headers)
    message = conn.receive
    conn.received message, subscribe_headers
    return message
  end
rescue Timeout::Error=>toe
  ActiveMessaging.logger.error("Timed out trying to receive a message on destination #{destination_name}")
  raise toe
ensure
  conn.disconnect unless conn.nil?
end

.register_adapter(adapter_name, adapter_class) ⇒ Object



130
131
132
# File 'lib/activemessaging/gateway.rb', line 130

def register_adapter adapter_name, adapter_class
  Gateway.adapters[adapter_name] = adapter_class
end

.resetObject



24
25
26
27
28
29
30
31
32
33
# File 'lib/activemessaging/test_helper.rb', line 24

def self.reset
  unsubscribe
  disconnect
  @@filters = []
  @@subscriptions = {}
  @@named_destinations = {}
  @@processor_groups = {}
  @@current_processor_group = nil
  @@connections = {}
end

.reset_applicationObject



209
210
# File 'lib/activemessaging/gateway.rb', line 209

def reset_application
end

.startObject

Starts up an message listener to start polling for messages on each configured connection, and dispatching processing



28
29
30
31
32
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/activemessaging/gateway.rb', line 28

def start

  # subscribe - creating connections along the way
  subscribe

  # for each connection, start a thread
  @connections.each do |name, conn|
    @connection_threads[name] = Thread.start do
      while @running
        begin
          Thread.current[:message] = nil
          Thread.current[:message] = conn.receive
        #catch these but then stop looping
        rescue StopProcessingException=>spe
          ActiveMessaging.logger.error "ActiveMessaging: thread[#{name}]: Processing Stopped - receive interrupted, will process last message if already received"
          # break
        #catch all others, but go back and try and recieve again
        rescue Object=>exception
          ActiveMessaging.logger.error "ActiveMessaging: thread[#{name}]: Exception from connection.receive: #{exception.message}\n" + exception.backtrace.join("\n\t")
        ensure
          if Thread.current[:message]
            @guard.synchronize {
              dispatch Thread.current[:message]
            }
            Thread.current[:message] = nil
          else
            # if there is no message at all, sleep
            # maybe this should be configurable
            sleep(1)
          end
        end
        Thread.pass
      end
      ActiveMessaging.logger.error "ActiveMessaging: thread[#{name}]: receive loop terminated"
    end
  end
  
  while @running
    trap("TERM", "EXIT")
    living = false
    @connection_threads.each { |name, thread| living ||=  thread.alive? }
    @running = living
    sleep(1)
  end
  ActiveMessaging.logger.error "All connection threads have died..."
rescue Interrupt
  ActiveMessaging.logger.error "\n<<Interrupt received>>\n"  
rescue Object=>exception
  ActiveMessaging.logger.error "#{exception.class.name}: #{exception.message}\n\t#{exception.backtrace.join("\n\t")}"
  raise exception
ensure
  ActiveMessaging.logger.error "Cleaning up..."
  stop
  ActiveMessaging.logger.error "=> END"
end

.stopObject



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/activemessaging/gateway.rb', line 84

def stop
  # first tell the threads to stop their looping, so they'll stop when next complete a receive/dispatch cycle
  @running = false
  
  # if they are dispatching (i.e. !thread[:message].nil?), wait for them to finish
  # if they are receiving (i.e. thread[:message].nil?), stop them by raising exception
  dispatching = true
  while dispatching
    dispatching = false
    @connection_threads.each do |name, thread|
      if thread[:message]
        dispatching = true
        # if thread got killed, but dispatch not done, try it again
        if thread.alive?
          ActiveMessaging.logger.error "Waiting on thread #{name} to finish processing last message..."
        else
          ActiveMessaging.logger.error "Starting thread #{name} to finish processing last message..."
          msg = thread[:message]
          thread.exit
          thread = Thread.start do
            begin
              Thread.current[:message] = msg
              dispatch Thread.current[:message]
            ensure
              Thread.current[:message] = nil
            end
          end
        end
      else
        thread.raise StopProcessingException, "Time to stop." if thread.alive?
      end
    end
    sleep(1)
  end
  unsubscribe
  disconnect
end

.subscribeObject



139
140
141
# File 'lib/activemessaging/gateway.rb', line 139

def subscribe
  subscriptions.each { |key, subscription| subscription.subscribe }
end

.subscribe_to(destination_name, processor, headers = {}) ⇒ Object



285
286
287
288
289
290
291
# File 'lib/activemessaging/gateway.rb', line 285

def subscribe_to destination_name, processor, headers={}
  proc_name = processor.name.underscore
  proc_sym = processor.name.underscore.to_sym
  if (!current_processor_group || processor_groups[current_processor_group].include?(proc_sym))
    @subscriptions["#{proc_name}:#{destination_name}"]= Subscription.new(find_destination(destination_name), processor, headers)
  end
end

.unsubscribeObject



143
144
145
# File 'lib/activemessaging/gateway.rb', line 143

def unsubscribe
  subscriptions.each { |key, subscription| subscription.unsubscribe }
end