Module: Deepstream::Helpers

Defined in:
lib/deepstream/helpers.rb

Constant Summary collapse

SCHEME =
'ws://'
DEFAULT_PORT =
6020
DEFAULT_PATH =
'deepstream-v3'

Class Method Summary collapse

Class Method Details

.default_optionsObject



34
35
36
37
38
39
40
41
42
43
44
# File 'lib/deepstream/helpers.rb', line 34

def self.default_options
  {
    ack_timeout: nil,
    credentials: {},
    heartbeat_interval: nil,
    in_thread: true,
    verbose: false,
    debug: false,
    reinitialize_master: false
  }
end

.message_data(*args, **kwargs) ⇒ Object



54
55
56
57
58
59
60
61
# File 'lib/deepstream/helpers.rb', line 54

def self.message_data(*args, **kwargs)
  kwargs = kwargs.empty? ? nil : kwargs
  if args.empty?
    kwargs
  else
    (args << kwargs).compact.instance_eval { one? ? first : self }
  end
end

.to_deepstream_type(value) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/deepstream/helpers.rb', line 9

def self.to_deepstream_type(value)
  case value
  when Array then "O#{value.to_json}"
  when Hash then "O#{value.to_json}"
  when String then "S#{value}"
  when Numeric then "N#{value}"
  when TrueClass then 'T'
  when FalseClass then 'F'
  when NilClass then 'L'
  end
end

.to_type(payload) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/deepstream/helpers.rb', line 21

def self.to_type(payload)
  case payload[0]
  when 'O' then JSON.parse(payload[1..-1])
  when '{' then JSON.parse(payload)
  when 'S' then payload[1..-1]
  when 'N' then payload[1..-1].to_f
  when 'T' then true
  when 'F' then false
  when 'L' then nil
  else JSON.parse(payload)
  end
end

.url(url) ⇒ Object



46
47
48
49
50
51
52
# File 'lib/deepstream/helpers.rb', line 46

def self.url(url)
  url.tap do |url|
    url.prepend(SCHEME) unless url.start_with?(/ws(s|)\:\/\//)
    url.concat(":#{DEFAULT_PORT}") unless url[/\:\d+/]
    url.concat("/#{DEFAULT_PATH}") unless url[/:\d+\/\S+$/]
  end
end