我已经使用 Sinatra 有一段时间了,我想通过 websockets 推送数据来为我的 web 应用程序添加一些实时功能。
我已经成功地单独使用了 gem 'em-websocket',但无法编写一个具有 sinatra web 服务器和 web-socket 服务器的 ruby 文件。
我试过旋转跑步!或开始!方法在单独的线程中关闭,但没有成功。
有没有人让这个工作?
我想将它们放在同一个文件中,然后我可以在两台服务器之间共享变量。
谢谢!
我已经使用 Sinatra 有一段时间了,我想通过 websockets 推送数据来为我的 web 应用程序添加一些实时功能。
我已经成功地单独使用了 gem 'em-websocket',但无法编写一个具有 sinatra web 服务器和 web-socket 服务器的 ruby 文件。
我试过旋转跑步!或开始!方法在单独的线程中关闭,但没有成功。
有没有人让这个工作?
我想将它们放在同一个文件中,然后我可以在两台服务器之间共享变量。
谢谢!
没试过,但应该不会太难:
require 'em-websocket'
require 'sinatra/base'
require 'thin'
EM.run do
class App < Sinatra::Base
# Sinatra code here
end
EM::WebSocket.start(:host => '0.0.0.0', :port => 3001) do
# Websocket code here
end
# You could also use Rainbows! instead of Thin.
# Any EM based Rack handler should do.
Thin::Server.start App, '0.0.0.0', 3000
end
此外,Cramp有一个 websocket 实现,可以直接与 Thin/Rainbows 一起使用!您也许可以提取,因此您甚至不需要在另一个端口上运行服务器。
谢谢康斯坦丁……那行得通!我不得不稍微调整你的代码。我在更改的地方添加了评论。
-波尔
require 'rubygems' # <-- Added this require
require 'em-websocket'
require 'sinatra/base'
require 'thin'
EventMachine.run do # <-- Changed EM to EventMachine
class App < Sinatra::Base
get '/' do
return "foo"
end
end
EventMachine::WebSocket.start(:host => '0.0.0.0', :port => 8080) do |ws| # <-- Added |ws|
# Websocket code here
ws.onopen {
ws.send "connected!!!!"
}
ws.onmessage { |msg|
puts "got message #{msg}"
}
ws.onclose {
ws.send "WebSocket closed"
}
end
# You could also use Rainbows! instead of Thin.
# Any EM based Rack handler should do.
App.run!({:port => 3000}) # <-- Changed this line from Thin.start to App.run!
end
我偶然发现了这个websocket-rack github 项目,它基本上是一个机架化的em-websocket,实际上它可以与 Sinatra 应用程序很好地并排工作。这是我的 config.ru:
require 'rubygems'
require 'rack/websocket'
require 'sinatra/base'
class WebSocketApp < Rack::WebSocket::Application
# ...
end
class SinatraApp < Sinatra::Base
# ...
end
map '/ws' do
run WebSocketApp.new
end
map '/' do
run SinatraApp
end
玩得开心!
科林
我一直在使用sinatra-websocket。它让您可以在与 Sinatra 相同的进程和相同的端口上运行 websocket 服务器。
免责声明:我是维护者。
require 'sinatra'
require 'sinatra-websocket'
set :server, 'thin'
set :sockets, []
get '/' do
if !request.websocket?
erb :index
else
request.websocket do |ws|
ws.onopen do
ws.send("Hello World!")
settings.sockets << ws
end
ws.onmessage do |msg|
EM.next_tick { settings.sockets.each{|s| s.send(msg) } }
end
ws.onclose do
warn("websocket closed")
settings.sockets.delete(ws)
end
end
end
end
__END__
@@ index
<html>
<body>
<h1>Simple Echo & Chat Server</h1>
<form id="form">
<input type="text" id="input" value="send a message"></input>
</form>
<div id="msgs"></div>
</body>
<script type="text/javascript">
window.onload = function(){
(function(){
var show = function(el){
return function(msg){ el.innerHTML = msg + '<br />' + el.innerHTML; }
}(document.getElementById('msgs'));
var ws = new WebSocket('ws://' + window.location.host + window.location.pathname);
ws.onopen = function() { show('websocket opened'); };
ws.onclose = function() { show('websocket closed'); }
ws.onmessage = function(m) { show('websocket message: ' + m.data); };
var sender = function(f){
var input = document.getElementById('input');
input.onclick = function(){ input.value = "" };
f.onsubmit = function(){
ws.send(input.value);
input.value = "send a message";
return false;
}
}(document.getElementById('form'));
})();
}
</script>
</html>
仅供参考,您还可以将 Padrino 应用程序与 EventMachine 一起使用(因为它们是 Sinatra 应用程序的子集):
require 'rubygems'
require 'eventmachine'
require 'padrino-core'
require 'thin'
require ::File.dirname(__FILE__) + '/config/boot.rb'
EM.run do
Thin::Server.start Padrino.application, '0.0.0.0', 3000
end
干杯,迈克