Class: Flammarion::Server

Inherits:
Object
  • Object
show all
Defined in:
lib/flammarion/server.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeServer

Returns a new instance of Server.



5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/flammarion/server.rb', line 5

def initialize
  @windows = {}
  @socket_paths = {}
  @started = false
  @launch_thread = Thread.current
  @server_thread = Thread.new do
    begin
      start_server_internal
    rescue StandardError => e
      handle_exception(e)
    end
  end
  sleep 0.5 until @started
end

Instance Attribute Details

#portObject

Returns the value of attribute port.



3
4
5
# File 'lib/flammarion/server.rb', line 3

def port
  @port
end

Instance Method Details

#handle_exception(e) ⇒ Object



77
78
79
# File 'lib/flammarion/server.rb', line 77

def handle_exception(e)
  @launch_thread.raise(e)
end

#log(str) ⇒ Object



73
74
75
# File 'lib/flammarion/server.rb', line 73

def log(str)
  Rails.logger.debug str
end

#register_window(window) ⇒ Object



81
82
83
84
85
86
# File 'lib/flammarion/server.rb', line 81

def register_window(window)
  @new_path ||= 0
  @new_path += 1
  @windows["/w#{@new_path}"] = window
  "w#{@new_path}"
end

#start_server_internalObject



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/flammarion/server.rb', line 20

def start_server_internal
  self.port =
    if Gem.win_platform?
      rand(65000 - 1024) + 1024
    else
      7870
    end
  begin
    @server = Rubame::Server.new("0.0.0.0", port)
    loop do
      @started = true
      @server.run do |ws|
        ws.onopen {
          log "Connection open"
          if @windows.include?(ws.handshake.path)
            @windows[ws.handshake.path].sockets << ws
            @windows[ws.handshake.path].on_connect.call if @windows[ws.handshake.path].on_connect
            @socket_paths[ws] = ws.handshake.path
          else
            log "No such window: #{handshake.path}"
          end
        }

        ws.onclose do
          log "Connection closed"
          @windows[@socket_paths[ws]].disconnect(ws) if @windows[@socket_paths[ws]]
        end

        ws.onmessage { |msg|
          Thread.new do
            begin
              @windows[@socket_paths[ws]].process_message(msg)
            rescue StandardError => e
              handle_exception(e)
            end
          end
        }
      end
    end
  rescue RuntimeError, Errno::EADDRINUSE => e
    if e.message == "no acceptor (port is in use or requires root privileges)" || e.is_a?(Errno::EADDRINUSE)
      self.port = rand(65000 - 1024) + 1024
      retry
    else
      raise
    end
  end
  @started = true
end

#stopObject



70
71
# File 'lib/flammarion/server.rb', line 70

def stop
end