Class: Slack::RealTime::Socket

Inherits:
Object
  • Object
show all
Defined in:
lib/slack/real_time/socket.rb

Direct Known Subclasses

Concurrency::Async::Socket

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url, options = {}) ⇒ Socket

Returns a new instance of Socket.



8
9
10
11
12
13
14
# File 'lib/slack/real_time/socket.rb', line 8

def initialize(url, options = {})
  @url = url
  @options = options.dup
  @driver = nil
  @logger = @options.delete(:logger) || Slack::RealTime::Config.logger || Slack::Config.logger
  @last_message_at = nil
end

Instance Attribute Details

#driverObject (readonly)

Returns the value of attribute driver.



6
7
8
# File 'lib/slack/real_time/socket.rb', line 6

def driver
  @driver
end

#optionsObject

Returns the value of attribute options.



5
6
7
# File 'lib/slack/real_time/socket.rb', line 5

def options
  @options
end

#urlObject

Returns the value of attribute url.



5
6
7
# File 'lib/slack/real_time/socket.rb', line 5

def url
  @url
end

Instance Method Details

#closeObject



76
77
78
79
80
81
82
83
84
# File 'lib/slack/real_time/socket.rb', line 76

def close
  # When you call `driver.emit(:close)`, it will typically end up calling `client.close`
  # which will call `@socket.close` and end up back here. In order to break this infinite
  # recursion, we check and set `@driver = nil` before invoking `client.close`.
  return unless (driver = @driver)

  @driver = nil
  driver.emit(:close)
end

#connect! {|@driver| ... } ⇒ Object

Yields:



26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/slack/real_time/socket.rb', line 26

def connect!
  return if connected?

  connect
  logger.debug("#{self.class}##{__method__}") { @driver.class }

  @driver.on :message do
    @last_message_at = current_time
  end

  yield @driver if block_given?
end

#connected?Boolean

Returns:

  • (Boolean)


46
47
48
# File 'lib/slack/real_time/socket.rb', line 46

def connected?
  !@driver.nil?
end

#current_timeObject



72
73
74
# File 'lib/slack/real_time/socket.rb', line 72

def current_time
  Process.clock_gettime(Process::CLOCK_MONOTONIC)
end

#disconnect!Object

Gracefully shut down the connection.



40
41
42
43
44
# File 'lib/slack/real_time/socket.rb', line 40

def disconnect!
  @driver.close
ensure
  close
end

#restart_async(_client, _url) ⇒ Object

Raises:

  • (NotImplementedError)


62
63
64
# File 'lib/slack/real_time/socket.rb', line 62

def restart_async(_client, _url)
  raise NotImplementedError, "Expected #{self.class} to implement #{__method__}."
end

#send_data(message) ⇒ Object



16
17
18
19
20
21
22
23
24
# File 'lib/slack/real_time/socket.rb', line 16

def send_data(message)
  logger.debug("#{self.class}##{__method__}") { message }
  case message
  when Numeric then @driver.text(message.to_s)
  when String  then @driver.text(message)
  when Array   then @driver.binary(message)
  else false
  end
end

#start_async(_client) ⇒ #join

Returns:

  • (#join)

Raises:

  • (NotImplementedError)


58
59
60
# File 'lib/slack/real_time/socket.rb', line 58

def start_async(_client)
  raise NotImplementedError, "Expected #{self.class} to implement #{__method__}."
end

#start_sync(client) ⇒ Object



50
51
52
53
54
55
# File 'lib/slack/real_time/socket.rb', line 50

def start_sync(client)
  thread = start_async(client)
  thread&.join
rescue Interrupt
  thread&.exit
end

#time_since_last_messageObject



66
67
68
69
70
# File 'lib/slack/real_time/socket.rb', line 66

def time_since_last_message
  return 0 unless @last_message_at

  current_time - @last_message_at
end