trabajo-afectivo/script/websocket-server.rb

113 lines
2.9 KiB
Ruby
Raw Normal View History

2012-07-23 22:22:23 +00:00
$LOAD_PATH << './lib'
require 'rubygems'
require 'eventmachine'
require 'em-websocket'
require 'json'
require 'fileutils'
require 'web_socket'
require 'optparse'
# Look for -o with argument, and -I and -D boolean arguments
options = {
:p => 6042,
:b => '0.0.0.0',
2012-08-02 09:17:22 +00:00
:s => false,
:k => '/path/to/server.key',
:c => '/path/to/server.crt',
2012-07-23 22:22:23 +00:00
}
2012-08-02 09:30:30 +00:00
tls_options = {}
2012-07-23 22:22:23 +00:00
OptionParser.new do |opts|
opts.banner = "Usage: websocket-server.rb [options]"
opts.on("-p", "--port [OPT]", "port of websocket server") do |p|
options[:p] = p
end
opts.on("-b", "--bind [OPT]", "bind address") do |b|
options[:b] = b
end
2012-08-02 09:17:22 +00:00
opts.on("-s", "--secure", "enable secure connections") do |s|
options[:s] = s
end
opts.on("-k", "--private-key [OPT]", "/path/to/server.key for secure connections") do |k|
2012-08-02 09:30:30 +00:00
tls_options[:private_key_file] = k
2012-08-02 09:17:22 +00:00
end
opts.on("-c", "--certificate [OPT]", "/path/to/server.crt for secure connections") do |c|
2012-08-02 09:30:30 +00:00
tls_options[:cert_chain_file] = c
2012-08-02 09:17:22 +00:00
end
2012-07-23 22:22:23 +00:00
end.parse!
2012-08-02 09:17:22 +00:00
puts "Starting websocket server on #{ options[:b] }:#{ options[:p] } (secure:#{ options[:s].to_s })"
#puts options.inspect
2012-07-23 22:22:23 +00:00
@clients = {}
EventMachine.run {
2012-08-02 09:30:30 +00:00
EventMachine::WebSocket.start( :host => options[:b], :port => options[:p], :secure => options[:s], :tls_options => tls_options ) do |ws|
2012-07-23 22:22:23 +00:00
# register client connection
ws.onopen {
client_id = ws.object_id
puts 'Client ' + client_id.to_s + ' connected'
if !@clients.include? client_id
@clients[client_id] = {
:websocket => ws,
}
end
}
# unregister client connection
ws.onclose {
client_id = ws.object_id
puts 'Client ' + client_id.to_s + ' disconnected'
2012-08-04 13:35:55 +00:00
# removed from current client list
2012-07-23 22:22:23 +00:00
if @clients.include? client_id
@clients.delete client_id
end
2012-08-04 13:35:55 +00:00
2012-07-23 22:22:23 +00:00
Session.destory( client_id )
}
# manage messages
ws.onmessage { |msg|
client_id = ws.object_id
puts 'From Client ' + client_id.to_s + ' received message: ' + msg
data = JSON.parse(msg)
# get session
if data['action'] == 'login'
@clients[client_id][:session] = data['session']
Session.create( client_id, data['session'] )
2012-08-04 13:35:55 +00:00
# ping
elsif data['action'] == 'ping'
@clients[client_id][:last_ping] = Time.now
ws.send( '[{"action":"pong"}]' )
end
2012-07-23 22:22:23 +00:00
}
end
2012-08-03 22:46:05 +00:00
EventMachine.add_periodic_timer(0.2) {
2012-08-02 12:42:50 +00:00
puts "loop"
2012-07-23 22:22:23 +00:00
@clients.each { |client_id, client|
2012-08-03 22:46:05 +00:00
log 'checking waiting data...', client_id
2012-07-23 22:22:23 +00:00
begin
queue = Session.queue( client_id )
if queue && queue[0]
2012-08-03 22:46:05 +00:00
# log "send " + queue.inspect, client_id
log "send data to client", client_id
2012-07-23 22:22:23 +00:00
client[:websocket].send( queue.to_json )
end
2012-08-03 22:46:05 +00:00
rescue => e
log 'problem:' + e.inspect, client_id
2012-07-23 22:22:23 +00:00
end
}
}
2012-08-03 22:46:05 +00:00
def log( data, client_id )
puts "#{Time.now}:client(#{ client_id }) #{ data }"
end
2012-07-23 22:22:23 +00:00
}