Class: Dalli::Elasticache::AutoDiscovery::BaseCommand

Inherits:
Object
  • Object
show all
Defined in:
lib/dalli/elasticache/auto_discovery/base_command.rb

Overview

Base command class for configuration endpoint command. Contains the network logic.

Direct Known Subclasses

ConfigCommand, StatsCommand

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(host, port, timeout = nil, ssl_context: nil) ⇒ BaseCommand

Returns a new instance of BaseCommand.



15
16
17
18
19
20
# File 'lib/dalli/elasticache/auto_discovery/base_command.rb', line 15

def initialize(host, port, timeout = nil, ssl_context: nil)
  @host = host
  @port = port
  @timeout = timeout
  @ssl_context = ssl_context
end

Instance Attribute Details

#hostObject (readonly)

Returns the value of attribute host.



13
14
15
# File 'lib/dalli/elasticache/auto_discovery/base_command.rb', line 13

def host
  @host
end

#portObject (readonly)

Returns the value of attribute port.



13
14
15
# File 'lib/dalli/elasticache/auto_discovery/base_command.rb', line 13

def port
  @port
end

#ssl_contextObject (readonly)

Returns the value of attribute ssl_context.



13
14
15
# File 'lib/dalli/elasticache/auto_discovery/base_command.rb', line 13

def ssl_context
  @ssl_context
end

#timeoutObject (readonly)

Returns the value of attribute timeout.



13
14
15
# File 'lib/dalli/elasticache/auto_discovery/base_command.rb', line 13

def timeout
  @timeout
end

Instance Method Details

#response_from_socket(socket) ⇒ Object



36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/dalli/elasticache/auto_discovery/base_command.rb', line 36

def response_from_socket(socket)
  data = +''
  loop do
    wait_for_data(socket)
    line = socket.readline
    break if line.include?('END')

    data << line
  end

  data
end

#send_commandObject

Send an ASCII command to the endpoint

Returns the raw response as a String



25
26
27
28
29
30
31
32
33
34
# File 'lib/dalli/elasticache/auto_discovery/base_command.rb', line 25

def send_command
  tcp_socket = ::Socket.tcp(@host, @port, connect_timeout: timeout)
  begin
    socket = ssl_context ? wrap_with_ssl(tcp_socket) : tcp_socket
    socket.puts command
    response_from_socket(socket)
  ensure
    (socket || tcp_socket).close
  end
end