web-dev-qa-db-ja.com

SinatraがEventMachineWebSocketと連携して成功したことはありますか?

私はしばらくの間Sinatraを使用していますが、WebSocketを介してデータをプッシュすることにより、Webアプリにリアルタイム機能を追加したいと思います。

Gem'em-websocket 'を単独で使用することに成功しましたが、sinatraWebサーバーとWebソケットサーバーを含む1つのRubyファイルを書き込むことができませんでした。

ランを回してみました!または開始!メソッドは別々のスレッドでオフになり、成功しません。

誰かがこれを機能させましたか?

2つのサーバー間で変数を共有できるので、それらを同じファイルに入れたいと思います。

ありがとう!

37
Poul

それを試しませんでしたが、それほど難しくないはずです:

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 には、Thin/Rainbowsと直接連携するWebSocketの実装があります。抽出できる可能性があるため、サーバーを別のポートで実行する必要もありません。

27

Konstantinに感謝します...うまくいきました!コードを少し微調整する必要がありました。変更したところにコメントを追加しました。

-poul

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
20
Poul

私はこれに出くわしました 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

楽しんで!
コリン

17

私は 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>
11
simulacre

参考までに、EventMachineでPadrinoアプリを使用することもできます(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

乾杯、マイク

8
user546469