Sha256: a4d0300fdaef5ba89b94312d6ac2f16a0a28ce84df33c7e6b9007403689ae09a

Contents?: true

Size: 1.32 KB

Versions: 1

Compression:

Stored size: 1.32 KB

Contents

require 'socket'

module Bluepill
  module Socket
    TIMEOUT = 10
    RETRY = 5
    @@timeout = 0

    extend self

    def client(base_dir, name, &b)
      UNIXSocket.open(socket_path(base_dir, name), &b)
    end

    def client_command(base_dir, name, command)
      client(base_dir, name) do |socket|
        Timeout.timeout(TIMEOUT) do
          socket.puts command
          Marshal.load(socket)
        end
      end
    rescue EOFError, Timeout::Error
      @@timeout += 1
      puts "Retry #{@@timeout} of #{RETRY}"
      if @@timeout <= RETRY
        client_command(base_dir, name, command)
      else
        abort("Socket Timeout: Server may not be responding")
      end
    ensure
      @@timeout = 0
    end

    def server(base_dir, name)
      socket_path = self.socket_path(base_dir, name)
      begin
        UNIXServer.open(socket_path)
      rescue Errno::EADDRINUSE
        # if sock file has been created.  test to see if there is a server
        begin
          UNIXSocket.open(socket_path)
        rescue Errno::ECONNREFUSED
          File.delete(socket_path)
          return UNIXServer.open(socket_path)
        else
          logger.err("Server is already running!")
          exit(7)
        end
      end
    end

    def socket_path(base_dir, name)
      File.join(base_dir, 'socks', name + ".sock")
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ra-bluepill-0.0.44 lib/bluepill/socket.rb