Last active
December 18, 2015 12:09
-
-
Save Asmod4n/5780975 to your computer and use it in GitHub Desktop.
Server Sent Events implemented in Ruby with Celluloid-io Eventend Server Reel using asynchronous Features from Celluloid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Run with: ruby server_sent_events.rb | |
# Test with: curl -vNH 'Accept: text/event-stream' -H 'Last-Event-ID: 1' -H 'Cache-Control: no-cache' http://localhost:63310 | |
require 'time' | |
require 'reel' | |
class ServerSentEvents < Reel::Server | |
include Celluloid::Logger | |
def initialize(ip = '127.0.0.1', port = 63310) | |
@connections = [] | |
@history = [] | |
@lastMessageId = 0 | |
async.ping | |
async.ring | |
super(ip, port, &method(:on_connection)) | |
end | |
def broadcast(event, data) | |
#only keep the last 5000 Events | |
if @history.size >= 6000 | |
@history.slice!(0, @history.size - 1000) | |
end | |
@lastMessageId += 1 | |
@history << {id: @lastMessageId, event: event, data: data} | |
info "Sending Event: #{event} Data: #{data} to #{@connections.count} Clients" | |
@connections.each do |socket| | |
async.send_sse(socket, data, event, @lastMessageId) | |
end | |
true | |
end | |
private | |
#event and id are optional | |
def send_sse(socket, data, event = nil, id = nil) | |
begin | |
socket.id id if id | |
socket.event event if event | |
socket.data data | |
true | |
rescue IOError, Errno::ECONNRESET, Errno::EPIPE | |
@connections.delete(socket) | |
false | |
end | |
end | |
def send_ping | |
@connections.each do |socket| | |
begin | |
#Lines that start with a Colon are Comments and will be ignored | |
socket << ":\n" | |
true | |
rescue IOError, Errno::ECONNRESET, Errno::EPIPE | |
@connections.delete(socket) | |
false | |
end | |
end | |
end | |
def ping | |
#apache 2.2 closes connections after five seconds when nothing is send | |
every(5) do | |
send_ping | |
end | |
end | |
def ring | |
every(2) do | |
broadcast(:time, Time.now.httpdate) | |
end | |
end | |
def handle_request(request) | |
query = {} | |
(request.query_string || '').split('&').each do |kv| | |
key, value = kv.split('=') | |
if key && value | |
key, value = CGI.unescape(key), CGI.unescape(value) | |
query[key] = value | |
end | |
end | |
body = Reel::EventStream.new do |socket| | |
@connections << socket | |
socket.retry 5000 | |
#after a Connection reset resend newer Messages to the Client | |
if @history.count > 0 && id = (request.headers['Last-Event-ID'] || query['lastEventId']) | |
begin | |
if history = @history.select {|h| h[:id] >= Integer(id)}.map {|a| "id: %d\nevent: %s\ndata: %s" % [a[:id], a[:event], a[:data]]}.join("\n\n") | |
socket << "%s\n\n" % [history] | |
else | |
socket << "id\n\n" | |
end | |
rescue ArgumentError, IOError, Errno::ECONNRESET, Errno::EPIPE | |
@connections.delete(socket) | |
request.close | |
false | |
end | |
else | |
socket << "id\n\n" | |
end | |
end | |
#X-Accel-Buffering is nginx(?) specific. Setting this to "no" will allow unbuffered responses suitable for Comet and HTTP streaming applications | |
request.respond Reel::StreamResponse.new(:ok, { | |
'Content-Type' => 'text/event-stream; charset=utf-8', | |
'Cache-Control' => 'no-cache', | |
'X-Accel-Buffering' => 'no', | |
'Access-Control-Allow-Origin' => '*'}, body) | |
true | |
end | |
def on_connection(connection) | |
connection.each_request do |request| | |
handle_request(request) | |
end | |
end | |
end | |
ServerSentEvents.run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment