Sha256: d5b925148caed81a3f09f1d4e2e56a7dd7650b0a98b961b7ddd1f1acf4cf4e4c

Contents?: true

Size: 1007 Bytes

Versions: 3

Compression:

Stored size: 1007 Bytes

Contents

class FnordMetric::TCPAcceptor < EventMachine::Connection
  @@opts = nil

  def self.start(opts)
    @@opts = opts
    EM.start_server(*(opts[:listen] + [self]))
  end

  def self.options(opts)
    @@opts = opts
  end

  def receive_data(chunk)
    @buffer << chunk
    next_event
  end

  def next_event
    read_next_event
    push_next_event
  end

  def read_next_event
    while (event = @buffer.slice!(/^(.*)\n/))
      @events_buffered += 1
      @events << event
    end
  end

  def push_next_event
    return true if @events.empty?
    @events_buffered -= 1
    api.event(@events.pop)
    close_connection?
    EM.next_tick(&method(:push_next_event))
  end

  def close_connection?
    #@backend.hangup unless @streaming || (@events_buffered!=0)
  end

  def post_init
    @events_buffered = 0
    @streaming = true
    @buffer = ""
    @events = []
  end

  def unbind
    @streaming = false
    close_connection?
  end

  def api
    @api ||= FnordMetric::API.new(FnordMetric.options)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fnordmetric-1.0.1 lib/fnordmetric/acceptors/tcp_acceptor.rb
fnordmetric-1.0.0 lib/fnordmetric/acceptors/tcp_acceptor.rb
fnordmetric-0.9.7 lib/fnordmetric/acceptors/tcp_acceptor.rb