aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/connection/message_buffer.rb
blob: 615266e0cb0b9fed11aec9915b2c5f2d02f329c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
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
39
40
41
42
43
44
45
46
47
48
49
50
51
module ActionCable
  module Connection
    class MessageBuffer
      def initialize(connection)
        @connection = connection
        @buffered_messages = []
      end

      def append(message)
        if valid? message
          if processing?
            receive message
          else
            buffer message
          end
        else
          connection.logger.error "Couldn't handle non-string message: #{message.class}"
        end
      end

      def processing?
        @processing
      end

      def process!
        @processing = true
        receive_buffered_messages
      end

      private
        attr_reader :connection
        attr_accessor :buffered_messages

        def valid?(message)
          message.is_a?(String)
        end

        def receive(message)
          connection.send_async :receive, message
        end

        def buffer(message)
          buffered_messages << message
        end

        def receive_buffered_messages
          receive buffered_messages.shift until buffered_messages.empty?
        end
    end
  end
end