Sha256: f3da5b3c0384dd9af61337e1d9ac88e2233bad7fd1d19ed55a8cfaad9ea00d01

Contents?: true

Size: 1.52 KB

Versions: 25

Compression:

Stored size: 1.52 KB

Contents

require 'gorgon/originator_protocol'
require 'gorgon/configuration'
require 'gorgon/originator_logger'
require 'gorgon/colors'

require 'colorize'

class PingService
  include Configuration

  TIMEOUT=4

  def initialize
    @configuration = load_configuration_from_file("gorgon.json")
    @logger = OriginatorLogger.new @configuration[:originator_log_file]
    @protocol = OriginatorProtocol.new @logger
    @listeners = []
  end

  def ping_listeners
    Signal.trap("INT") { disconnect }
    Signal.trap("TERM") { disconnect }

    EventMachine.run do
      @logger.log "Connecting..."
      @protocol.connect @configuration[:connection],  :on_closed => proc {EM.stop}

      @logger.log "Pinging Listeners..."
      @protocol.send_message_to_listeners :ping

      EM.add_timer(TIMEOUT) { disconnect }

      @protocol.receive_payloads do |payload|
        @logger.log "Received #{payload}"

        handle_reply(Yajl::Parser.new(:symbolize_keys => true).parse(payload))
      end
    end
  end

  private

  def disconnect
    @protocol.disconnect
    print_summary
  end

  def handle_reply payload
    if payload[:type] != "ping_response"
      puts "Unexpected message received: #{payload}"
      return
    end

    @listeners << payload
    hostname = payload[:hostname].colorize(Colors::HOST)
    puts "#{hostname} is running Listener version #{payload[:version]} and uses #{payload[:worker_slots]} workers"
  end

  def print_summary
    puts "\n#{@listeners.size} host(s) responded."
  end

  def on_disconnect
    EventMachine.stop
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
gorgon-0.7.0.rc3 lib/gorgon/ping_service.rb
gorgon-0.7.0.rc2 lib/gorgon/ping_service.rb
gorgon-0.7.0.rc1 lib/gorgon/ping_service.rb
gorgon-0.6.5 lib/gorgon/ping_service.rb
gorgon-0.6.4 lib/gorgon/ping_service.rb
gorgon-0.6.3 lib/gorgon/ping_service.rb
gorgon-0.6.2 lib/gorgon/ping_service.rb
gorgon-0.6.1 lib/gorgon/ping_service.rb
gorgon-0.6.0 lib/gorgon/ping_service.rb
gorgon-0.6.0.rc2 lib/gorgon/ping_service.rb
gorgon-0.6.0.rc1 lib/gorgon/ping_service.rb
gorgon-0.5.0.rc1 lib/gorgon/ping_service.rb
gorgon-0.4.5 lib/gorgon/ping_service.rb
gorgon-0.4.5.rc1 lib/gorgon/ping_service.rb
gorgon-0.4.4 lib/gorgon/ping_service.rb
gorgon-0.4.3 lib/gorgon/ping_service.rb
gorgon-0.4.2 lib/gorgon/ping_service.rb
gorgon-0.4.1 lib/gorgon/ping_service.rb
gorgon-0.4.1.rc1 lib/gorgon/ping_service.rb
gorgon-0.4.0 lib/gorgon/ping_service.rb