Class: SPSSub

Inherits:
Object
  • Object
show all
Defined in:
lib/sps-sub.rb

Instance Method Summary collapse

Constructor Details

#initialize(hosts: [], port: '59000', host: nil, address: nil, callback: nil) ⇒ SPSSub

Returns a new instance of SPSSub.



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/sps-sub.rb', line 10

def initialize(hosts: [], port: '59000', host: nil, address: nil, callback: nil )

  if host.nil? and address.nil? and hosts.any? then
    hostx, portx = hosts.first.split(':',2)
    portx ||= port
    @host, @port = hostx, portx
  else
    @host = host || address || 'localhost'
    @port = port.to_s
  end
  
  @callback = callback
  @retry_interval = 1
  @hosts = hosts
  
  # Trap ^C 
  Signal.trap("INT") { 
    puts ' ... Bye'
    @status = :quit
    exit
  }
  
  # Trap `Kill `
  Signal.trap("TERM") {
    @status = :quit
    exit
  }    
  
end

Instance Method Details

#em_connect(topic, &blk) ⇒ Object



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/sps-sub.rb', line 55

def em_connect(topic, &blk)
  
  client = self
  host, port = @host, @port 
  
  EM.run do

    address = host + ':' + port

    @ws = ws = WebSocket::EventMachine::Client.connect(:uri => 'ws://' + address)

    ws.onopen do
      puts "Connected"
    end

    ws.onmessage do |fqm, type|
      
      topic, msg = fqm.split(/:\s/,2)
      
      EM.defer do
        
        if block_given? then
          blk.call(msg, topic)
        elsif @callback
          @callback.ontopic(topic, msg)
        else
          onmessage msg
          ontopic topic, msg
        end
        
      end
              
    end

    ws.onclose do
      puts "Disconnected"

      return if @status == :quit
      
      if @hosts.any? then
        
        hostx, portx = @hosts.rotate!.first.split(':',2)
        portx ||= @port
        @host, @port = hostx, portx
        client.em_connect topic
        
      else
        @retry_interval *= 2        
        sleep @retry_interval        
        @retry_interval = 1 if @retry_interval > 30
  
        puts "retrying to connect to #{@host}:#{@port}... "
        client.em_connect topic
      end
    end
    
    ws.onerror do |error|
      puts "Error occured: #{error}"
    end

    EventMachine.next_tick do
      ws.send 'subscribe to topic: ' + topic
    end

  end    
end

#notice(s) ⇒ Object



40
41
42
43
44
45
46
# File 'lib/sps-sub.rb', line 40

def notice(s)
  
  EventMachine.next_tick do
    @ws.send s
  end    
  
end

#onmessage(msg) ⇒ Object

This method is called when a new message is received



124
125
126
# File 'lib/sps-sub.rb', line 124

def onmessage(msg)
  puts "Received message: #{msg}"
end

#ontopic(topic, msg) ⇒ Object

Same as onmessage but includes the topic as well as the msg



130
131
132
# File 'lib/sps-sub.rb', line 130

def ontopic(topic, msg)

end

#subscribe(topic: '#', &blk) ⇒ Object



48
49
50
51
52
53
# File 'lib/sps-sub.rb', line 48

def subscribe(topic: '#', &blk)
  
  @t = Time.now

  em_connect(topic, &blk)
end