Class: EventMachine::EvmaUNIXServer

Inherits:
Selectable show all
Defined in:
lib/em/pure_ruby.rb

Instance Attribute Summary

Attributes inherited from Selectable

#io, #is_server, #uuid

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Selectable

#close_scheduled?, #get_peername, #heartbeat, #select_for_writing?, #set_inactivity_timeout

Constructor Details

#initialize(io) ⇒ EvmaUNIXServer

Returns a new instance of EvmaUNIXServer.



1093
1094
1095
# File 'lib/em/pure_ruby.rb', line 1093

def initialize io
  super io
end

Class Method Details

.start_server(chain) ⇒ Object

Versions of ruby 1.8.4 later than May 26 2006 will work properly with an object of type TCPServer. Prior versions won’t so we play it safe and just build a socket.



1084
1085
1086
1087
1088
1089
1090
# File 'lib/em/pure_ruby.rb', line 1084

def start_server chain
  sd = Socket.new( Socket::AF_LOCAL, Socket::SOCK_STREAM, 0 )
  sd.setsockopt( Socket::SOL_SOCKET, Socket::SO_REUSEADDR, true )
  sd.bind( Socket.pack_sockaddr_un( chain ))
  sd.listen( 50 ) # 5 is what you see in all the books. Ain't enough.
  EvmaUNIXServer.new sd
end

Instance Method Details

#eventable_readObject

– accept_nonblock returns an array consisting of the accepted socket and a sockaddr_in which names the peer. Don’t accept more than 10 at a time.



1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
# File 'lib/em/pure_ruby.rb', line 1106

def eventable_read
  begin
    10.times {
      descriptor,peername = io.accept_nonblock
      sd = StreamObject.new descriptor
      EventMachine::event_callback uuid, ConnectionAccepted, sd.uuid
    }
  rescue Errno::EWOULDBLOCK, Errno::EAGAIN
  end
end

#schedule_closeObject



1119
1120
1121
# File 'lib/em/pure_ruby.rb', line 1119

def schedule_close
  @close_scheduled = true
end

#select_for_reading?Boolean

Returns:

  • (Boolean)


1098
1099
1100
# File 'lib/em/pure_ruby.rb', line 1098

def select_for_reading?
  true
end