Created
March 16, 2013 21:36
-
-
Save realmyst/5178433 to your computer and use it in GitHub Desktop.
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
require 'em-websocket' | |
class MainServer | |
attr_accessor :data, :connect | |
def initialize(host, port) | |
@connect = TCPSocket.new host, port | |
end | |
end | |
EventMachine::WebSocket.start(:host => "0.0.0.0", :port => 5555) do |ws| | |
server = MainServer.new("192.168.30.188", 4444) | |
puts "connected" | |
server.connect.write "{\"role\":\"observer\"}\n" | |
timer = EM.add_periodic_timer(0.01) do | |
data = server.connect.gets | |
puts "data from server #{data}" | |
ws.send data | |
end | |
ws.onopen do |h| | |
puts "Connected #{h.headers['Host']}" | |
ws.send "Hello Client! #{h.path}" | |
end | |
ws.onmessage do |msg| | |
puts "msg from client: #{msg}" | |
msg = "#{msg}\n" | |
server.connect.write(msg) | |
end | |
ws.onclose do | |
puts "WebSocket closed" | |
EM.cancel_timer timer | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment