Class: DeepTest::Distributed::DispatchController

Inherits:
Object
  • Object
show all
Defined in:
lib/deep_test/distributed/dispatch_controller.rb

Instance Method Summary collapse

Constructor Details

#initialize(options, receivers) ⇒ DispatchController

Returns a new instance of DispatchController.



4
5
6
7
# File 'lib/deep_test/distributed/dispatch_controller.rb', line 4

def initialize(options, receivers)
  @options = options
  @receivers = receivers
end

Instance Method Details

#dispatch(method_name, *args) ⇒ Object



9
10
11
# File 'lib/deep_test/distributed/dispatch_controller.rb', line 9

def dispatch(method_name, *args)
  dispatch_with_options(method_name, {}, *args)
end

#dispatch_with_options(method_name, options, *args) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/deep_test/distributed/dispatch_controller.rb', line 13

def dispatch_with_options(method_name, options, *args)
  raise NoDispatchReceiversError if @receivers.empty?

  @options.ui_instance.dispatch_starting(method_name)

  threads = @receivers.map do |r|
    Thread.new do
      Thread.current[:receiver] = r
      Timeout.timeout(@options.timeout_in_seconds) do
        r.send method_name, *args
      end
    end
  end

  results = []
  threads.each do |t|
    begin
      results << t.value
    rescue Timeout::Error
      @receivers.delete t[:receiver]
      DeepTest.logger.error "Timeout dispatching #{method_name} to #{t[:receiver].__drburi}"
    rescue DRb::DRbConnError
      @receivers.delete t[:receiver]
      unless options[:ignore_connection_error]
        DeepTest.logger.error "Connection Refused dispatching #{method_name} to #{t[:receiver].__drburi}"
      end
    rescue Exception => e
      @receivers.delete t[:receiver]
      DeepTest.logger.error "Exception while dispatching #{method_name} to #{t[:receiver].__drburi} #{e.message}"
    end
  end

  results
ensure
  @options.ui_instance.dispatch_finished(method_name)
end