Class: ActionCable::SubscriptionAdapter::Redis::Listener

Inherits:
SubscriberMap
  • Object
show all
Defined in:
lib/action_cable/subscription_adapter/redis.rb

Instance Method Summary collapse

Methods inherited from SubscriberMap

#add_subscriber, #broadcast, #remove_subscriber

Constructor Details

#initialize(adapter, event_loop) ⇒ Listener

Returns a new instance of Listener.



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/action_cable/subscription_adapter/redis.rb', line 57

def initialize(adapter, event_loop)
  super()

  @adapter = adapter
  @event_loop = event_loop

  @subscribe_callbacks = Hash.new { |h, k| h[k] = [] }
  @subscription_lock = Mutex.new

  @raw_client = nil

  @when_connected = []

  @thread = nil
end

Instance Method Details

#add_channel(channel, on_success) ⇒ Object



124
125
126
127
128
129
130
# File 'lib/action_cable/subscription_adapter/redis.rb', line 124

def add_channel(channel, on_success)
  @subscription_lock.synchronize do
    ensure_listener_running
    @subscribe_callbacks[channel] << on_success
    when_connected { send_command("subscribe", channel) }
  end
end

#invoke_callbackObject



138
139
140
# File 'lib/action_cable/subscription_adapter/redis.rb', line 138

def invoke_callback(*)
  @event_loop.post { super }
end

#listen(conn) ⇒ Object



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
# File 'lib/action_cable/subscription_adapter/redis.rb', line 73

def listen(conn)
  conn.without_reconnect do
    original_client = conn.client

    conn.subscribe("_action_cable_internal") do |on|
      on.subscribe do |chan, count|
        @subscription_lock.synchronize do
          if count == 1
            @raw_client = original_client

            until @when_connected.empty?
              @when_connected.shift.call
            end
          end

          if callbacks = @subscribe_callbacks[chan]
            next_callback = callbacks.shift
            @event_loop.post(&next_callback) if next_callback
            @subscribe_callbacks.delete(chan) if callbacks.empty?
          end
        end
      end

      on.message do |chan, message|
        broadcast(chan, message)
      end

      on.unsubscribe do |chan, count|
        if count == 0
          @subscription_lock.synchronize do
            @raw_client = nil
          end
        end
      end
    end
  end
end

#remove_channel(channel) ⇒ Object



132
133
134
135
136
# File 'lib/action_cable/subscription_adapter/redis.rb', line 132

def remove_channel(channel)
  @subscription_lock.synchronize do
    when_connected { send_command("unsubscribe", channel) }
  end
end

#shutdownObject



111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/action_cable/subscription_adapter/redis.rb', line 111

def shutdown
  @subscription_lock.synchronize do
    return if @thread.nil?

    when_connected do
      send_command("unsubscribe")
      @raw_client = nil
    end
  end

  Thread.pass while @thread.alive?
end