2015-11-14 08:15:33 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2009-01-17 08:04:03 -05:00
|
|
|
require 'socket.so'
|
2015-05-06 16:30:43 -04:00
|
|
|
require 'io/wait'
|
2009-01-17 08:04:03 -05:00
|
|
|
|
2009-02-05 06:01:43 -05:00
|
|
|
class Addrinfo
|
|
|
|
# creates an Addrinfo object from the arguments.
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
|
|
|
# The arguments are interpreted as similar to self.
|
|
|
|
#
|
2009-02-05 06:01:43 -05:00
|
|
|
# Addrinfo.tcp("0.0.0.0", 4649).family_addrinfo("www.ruby-lang.org", 80)
|
|
|
|
# #=> #<Addrinfo: 221.186.184.68:80 TCP (www.ruby-lang.org:80)>
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
2009-02-05 06:01:43 -05:00
|
|
|
# Addrinfo.unix("/tmp/sock").family_addrinfo("/tmp/sock2")
|
|
|
|
# #=> #<Addrinfo: /tmp/sock2 SOCK_STREAM>
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
|
|
|
def family_addrinfo(*args)
|
|
|
|
if args.empty?
|
|
|
|
raise ArgumentError, "no address specified"
|
2009-02-05 06:01:43 -05:00
|
|
|
elsif Addrinfo === args.first
|
2009-07-19 21:57:32 -04:00
|
|
|
raise ArgumentError, "too many arguments" if args.length != 1
|
2012-01-09 06:11:24 -05:00
|
|
|
addrinfo = args.first
|
2012-01-09 06:18:00 -05:00
|
|
|
if (self.pfamily != addrinfo.pfamily) ||
|
|
|
|
(self.socktype != addrinfo.socktype)
|
|
|
|
raise ArgumentError, "Addrinfo type mismatch"
|
|
|
|
end
|
2012-01-09 06:11:24 -05:00
|
|
|
addrinfo
|
2009-01-17 08:04:03 -05:00
|
|
|
elsif self.ip?
|
|
|
|
raise ArgumentError, "IP address needs host and port but #{args.length} arguments given" if args.length != 2
|
|
|
|
host, port = args
|
2009-02-05 06:01:43 -05:00
|
|
|
Addrinfo.getaddrinfo(host, port, self.pfamily, self.socktype, self.protocol)[0]
|
2009-01-17 08:04:03 -05:00
|
|
|
elsif self.unix?
|
|
|
|
raise ArgumentError, "UNIX socket needs single path argument but #{args.length} arguments given" if args.length != 1
|
|
|
|
path, = args
|
2009-02-05 06:01:43 -05:00
|
|
|
Addrinfo.unix(path)
|
2009-01-17 08:04:03 -05:00
|
|
|
else
|
|
|
|
raise ArgumentError, "unexpected family"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-11 18:56:13 -04:00
|
|
|
# creates a new Socket connected to the address of +local_addrinfo+.
|
|
|
|
#
|
2011-08-10 09:13:57 -04:00
|
|
|
# If _local_addrinfo_ is nil, the address of the socket is not bound.
|
|
|
|
#
|
|
|
|
# The _timeout_ specify the seconds for timeout.
|
|
|
|
# Errno::ETIMEDOUT is raised when timeout occur.
|
2011-05-11 18:56:13 -04:00
|
|
|
#
|
|
|
|
# If a block is given the created socket is yielded for each address.
|
|
|
|
#
|
2011-08-10 09:13:57 -04:00
|
|
|
def connect_internal(local_addrinfo, timeout=nil) # :yields: socket
|
2009-01-17 08:04:03 -05:00
|
|
|
sock = Socket.new(self.pfamily, self.socktype, self.protocol)
|
|
|
|
begin
|
|
|
|
sock.ipv6only! if self.ipv6?
|
|
|
|
sock.bind local_addrinfo if local_addrinfo
|
2011-08-10 09:13:57 -04:00
|
|
|
if timeout
|
2015-04-20 16:46:08 -04:00
|
|
|
case sock.connect_nonblock(self, exception: false)
|
|
|
|
when 0 # success or EISCONN, other errors raise
|
|
|
|
break
|
|
|
|
when :wait_writable
|
2015-05-06 16:30:43 -04:00
|
|
|
sock.wait_writable(timeout) or
|
2011-08-10 09:13:57 -04:00
|
|
|
raise Errno::ETIMEDOUT, 'user specified timeout'
|
2015-04-20 16:46:08 -04:00
|
|
|
end while true
|
2011-08-10 09:13:57 -04:00
|
|
|
else
|
|
|
|
sock.connect(self)
|
|
|
|
end
|
2013-12-13 11:11:12 -05:00
|
|
|
rescue Exception
|
|
|
|
sock.close
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
if block_given?
|
|
|
|
begin
|
2009-01-17 08:04:03 -05:00
|
|
|
yield sock
|
2013-12-13 11:11:12 -05:00
|
|
|
ensure
|
2016-11-14 20:39:11 -05:00
|
|
|
sock.close
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
2013-12-13 11:11:12 -05:00
|
|
|
else
|
|
|
|
sock
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
end
|
2018-02-17 02:54:52 -05:00
|
|
|
protected :connect_internal
|
2009-01-17 08:04:03 -05:00
|
|
|
|
2011-08-10 09:13:57 -04:00
|
|
|
# :call-seq:
|
|
|
|
# addrinfo.connect_from([local_addr_args], [opts]) {|socket| ... }
|
|
|
|
# addrinfo.connect_from([local_addr_args], [opts])
|
|
|
|
#
|
2009-02-02 17:31:50 -05:00
|
|
|
# creates a socket connected to the address of self.
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
|
|
|
# If one or more arguments given as _local_addr_args_,
|
|
|
|
# it is used as the local address of the socket.
|
|
|
|
# _local_addr_args_ is given for family_addrinfo to obtain actual address.
|
|
|
|
#
|
2011-08-10 09:13:57 -04:00
|
|
|
# If _local_addr_args_ is not given, the local address of the socket is not bound.
|
|
|
|
#
|
|
|
|
# The optional last argument _opts_ is options represented by a hash.
|
|
|
|
# _opts_ may have following options:
|
|
|
|
#
|
|
|
|
# [:timeout] specify the timeout in seconds.
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
|
|
|
# If a block is given, it is called with the socket and the value of the block is returned.
|
|
|
|
# The socket is returned otherwise.
|
|
|
|
#
|
2009-02-05 06:01:43 -05:00
|
|
|
# Addrinfo.tcp("www.ruby-lang.org", 80).connect_from("0.0.0.0", 4649) {|s|
|
2010-03-21 21:24:28 -04:00
|
|
|
# s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
|
|
|
|
# puts s.read
|
2009-01-17 08:04:03 -05:00
|
|
|
# }
|
|
|
|
#
|
2009-02-05 06:01:43 -05:00
|
|
|
# # Addrinfo object can be taken for the argument.
|
|
|
|
# Addrinfo.tcp("www.ruby-lang.org", 80).connect_from(Addrinfo.tcp("0.0.0.0", 4649)) {|s|
|
2010-03-21 21:24:28 -04:00
|
|
|
# s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
|
|
|
|
# puts s.read
|
2009-01-17 08:04:03 -05:00
|
|
|
# }
|
|
|
|
#
|
2016-11-14 02:53:31 -05:00
|
|
|
def connect_from(*args, timeout: nil, &block)
|
|
|
|
connect_internal(family_addrinfo(*args), timeout, &block)
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
|
2011-08-10 09:13:57 -04:00
|
|
|
# :call-seq:
|
|
|
|
# addrinfo.connect([opts]) {|socket| ... }
|
|
|
|
# addrinfo.connect([opts])
|
|
|
|
#
|
2009-02-02 17:31:50 -05:00
|
|
|
# creates a socket connected to the address of self.
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
2011-08-10 09:13:57 -04:00
|
|
|
# The optional argument _opts_ is options represented by a hash.
|
|
|
|
# _opts_ may have following options:
|
|
|
|
#
|
|
|
|
# [:timeout] specify the timeout in seconds.
|
|
|
|
#
|
2009-01-17 08:04:03 -05:00
|
|
|
# If a block is given, it is called with the socket and the value of the block is returned.
|
|
|
|
# The socket is returned otherwise.
|
|
|
|
#
|
2009-02-05 06:01:43 -05:00
|
|
|
# Addrinfo.tcp("www.ruby-lang.org", 80).connect {|s|
|
2010-03-21 21:24:28 -04:00
|
|
|
# s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
|
|
|
|
# puts s.read
|
2009-01-17 08:04:03 -05:00
|
|
|
# }
|
|
|
|
#
|
2016-11-14 02:53:31 -05:00
|
|
|
def connect(timeout: nil, &block)
|
|
|
|
connect_internal(nil, timeout, &block)
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
|
2011-08-10 09:13:57 -04:00
|
|
|
# :call-seq:
|
|
|
|
# addrinfo.connect_to([remote_addr_args], [opts]) {|socket| ... }
|
|
|
|
# addrinfo.connect_to([remote_addr_args], [opts])
|
|
|
|
#
|
2009-01-17 08:04:03 -05:00
|
|
|
# creates a socket connected to _remote_addr_args_ and bound to self.
|
|
|
|
#
|
2011-08-10 09:13:57 -04:00
|
|
|
# The optional last argument _opts_ is options represented by a hash.
|
|
|
|
# _opts_ may have following options:
|
|
|
|
#
|
|
|
|
# [:timeout] specify the timeout in seconds.
|
|
|
|
#
|
2009-01-17 08:04:03 -05:00
|
|
|
# If a block is given, it is called with the socket and the value of the block is returned.
|
|
|
|
# The socket is returned otherwise.
|
|
|
|
#
|
2009-02-05 06:01:43 -05:00
|
|
|
# Addrinfo.tcp("0.0.0.0", 4649).connect_to("www.ruby-lang.org", 80) {|s|
|
2010-03-21 21:24:28 -04:00
|
|
|
# s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
|
|
|
|
# puts s.read
|
2009-01-17 08:04:03 -05:00
|
|
|
# }
|
|
|
|
#
|
2016-11-14 02:53:31 -05:00
|
|
|
def connect_to(*args, timeout: nil, &block)
|
|
|
|
remote_addrinfo = family_addrinfo(*args)
|
2018-02-17 02:54:52 -05:00
|
|
|
remote_addrinfo.connect_internal(self, timeout, &block)
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# creates a socket bound to self.
|
|
|
|
#
|
|
|
|
# If a block is given, it is called with the socket and the value of the block is returned.
|
|
|
|
# The socket is returned otherwise.
|
|
|
|
#
|
2009-02-05 06:01:43 -05:00
|
|
|
# Addrinfo.udp("0.0.0.0", 9981).bind {|s|
|
2009-01-17 08:04:03 -05:00
|
|
|
# s.local_address.connect {|s| s.send "hello", 0 }
|
|
|
|
# p s.recv(10) #=> "hello"
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
def bind
|
|
|
|
sock = Socket.new(self.pfamily, self.socktype, self.protocol)
|
|
|
|
begin
|
|
|
|
sock.ipv6only! if self.ipv6?
|
|
|
|
sock.setsockopt(:SOCKET, :REUSEADDR, 1)
|
|
|
|
sock.bind(self)
|
2013-12-13 11:11:12 -05:00
|
|
|
rescue Exception
|
|
|
|
sock.close
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
if block_given?
|
|
|
|
begin
|
2009-01-17 08:04:03 -05:00
|
|
|
yield sock
|
2013-12-13 11:11:12 -05:00
|
|
|
ensure
|
2016-11-14 20:39:11 -05:00
|
|
|
sock.close
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
2013-12-13 11:11:12 -05:00
|
|
|
else
|
|
|
|
sock
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# creates a listening socket bound to self.
|
2011-08-11 19:20:15 -04:00
|
|
|
def listen(backlog=Socket::SOMAXCONN)
|
2009-01-17 08:04:03 -05:00
|
|
|
sock = Socket.new(self.pfamily, self.socktype, self.protocol)
|
|
|
|
begin
|
|
|
|
sock.ipv6only! if self.ipv6?
|
|
|
|
sock.setsockopt(:SOCKET, :REUSEADDR, 1)
|
|
|
|
sock.bind(self)
|
|
|
|
sock.listen(backlog)
|
2013-12-13 11:11:12 -05:00
|
|
|
rescue Exception
|
|
|
|
sock.close
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
if block_given?
|
|
|
|
begin
|
2009-01-17 08:04:03 -05:00
|
|
|
yield sock
|
2013-12-13 11:11:12 -05:00
|
|
|
ensure
|
2016-11-14 20:39:11 -05:00
|
|
|
sock.close
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
2013-12-13 11:11:12 -05:00
|
|
|
else
|
|
|
|
sock
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-02-05 06:01:43 -05:00
|
|
|
# iterates over the list of Addrinfo objects obtained by Addrinfo.getaddrinfo.
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
2009-02-05 06:01:43 -05:00
|
|
|
# Addrinfo.foreach(nil, 80) {|x| p x }
|
|
|
|
# #=> #<Addrinfo: 127.0.0.1:80 TCP (:80)>
|
|
|
|
# # #<Addrinfo: 127.0.0.1:80 UDP (:80)>
|
|
|
|
# # #<Addrinfo: [::1]:80 TCP (:80)>
|
|
|
|
# # #<Addrinfo: [::1]:80 UDP (:80)>
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
|
|
|
def self.foreach(nodename, service, family=nil, socktype=nil, protocol=nil, flags=nil, &block)
|
2009-02-05 06:01:43 -05:00
|
|
|
Addrinfo.getaddrinfo(nodename, service, family, socktype, protocol, flags).each(&block)
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-03-21 06:50:52 -04:00
|
|
|
class BasicSocket < IO
|
2009-03-07 23:13:06 -05:00
|
|
|
# Returns an address of the socket suitable for connect in the local machine.
|
2009-02-26 09:15:39 -05:00
|
|
|
#
|
|
|
|
# This method returns _self_.local_address, except following condition.
|
|
|
|
#
|
|
|
|
# - IPv4 unspecified address (0.0.0.0) is replaced by IPv4 loopback address (127.0.0.1).
|
|
|
|
# - IPv6 unspecified address (::) is replaced by IPv6 loopback address (::1).
|
|
|
|
#
|
|
|
|
# If the local address is not suitable for connect, SocketError is raised.
|
|
|
|
# IPv4 and IPv6 address which port is 0 is not suitable for connect.
|
|
|
|
# Unix domain socket which has no path is not suitable for connect.
|
|
|
|
#
|
|
|
|
# Addrinfo.tcp("0.0.0.0", 0).listen {|serv|
|
|
|
|
# p serv.connect_address #=> #<Addrinfo: 127.0.0.1:53660 TCP>
|
|
|
|
# serv.connect_address.connect {|c|
|
|
|
|
# s, _ = serv.accept
|
|
|
|
# p [c, s] #=> [#<Socket:fd 4>, #<Socket:fd 6>]
|
|
|
|
# }
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
def connect_address
|
|
|
|
addr = local_address
|
|
|
|
afamily = addr.afamily
|
|
|
|
if afamily == Socket::AF_INET
|
|
|
|
raise SocketError, "unbound IPv4 socket" if addr.ip_port == 0
|
|
|
|
if addr.ip_address == "0.0.0.0"
|
|
|
|
addr = Addrinfo.new(["AF_INET", addr.ip_port, nil, "127.0.0.1"], addr.pfamily, addr.socktype, addr.protocol)
|
|
|
|
end
|
|
|
|
elsif defined?(Socket::AF_INET6) && afamily == Socket::AF_INET6
|
|
|
|
raise SocketError, "unbound IPv6 socket" if addr.ip_port == 0
|
|
|
|
if addr.ip_address == "::"
|
|
|
|
addr = Addrinfo.new(["AF_INET6", addr.ip_port, nil, "::1"], addr.pfamily, addr.socktype, addr.protocol)
|
2009-02-28 01:05:44 -05:00
|
|
|
elsif addr.ip_address == "0.0.0.0" # MacOS X 10.4 returns "a.b.c.d" for IPv4-mapped IPv6 address.
|
|
|
|
addr = Addrinfo.new(["AF_INET6", addr.ip_port, nil, "::1"], addr.pfamily, addr.socktype, addr.protocol)
|
2010-05-07 21:13:33 -04:00
|
|
|
elsif addr.ip_address == "::ffff:0.0.0.0" # MacOS X 10.6 returns "::ffff:a.b.c.d" for IPv4-mapped IPv6 address.
|
|
|
|
addr = Addrinfo.new(["AF_INET6", addr.ip_port, nil, "::1"], addr.pfamily, addr.socktype, addr.protocol)
|
2009-02-26 09:15:39 -05:00
|
|
|
end
|
|
|
|
elsif defined?(Socket::AF_UNIX) && afamily == Socket::AF_UNIX
|
|
|
|
raise SocketError, "unbound Unix socket" if addr.unix_path == ""
|
|
|
|
end
|
|
|
|
addr
|
|
|
|
end
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
|
socket: avoid arg parsing in bsock_sendmsg_internal
* ext/socket/ancdata.c (bsock_sendmsg_internal): avoid arg parsing
[ruby-core:71439] [Feature #11339]
(rsock_bsock_sendmsg): make private, adjust for above
(rsock_bsock_sendmsg_nonblock): ditto
* ext/socket/rubysocket.h: adjust prototypes
(rsock_opt_false_p): remove
* ext/socket/basicsocket.c (rsock_init_basicsocket):
define private methods
* ext/socket/lib/socket.rb (BasicSocket#sendmsg): new wrapper
(BasicSocket#sendmsg_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
sendmsg_nonblock
require 'socket'
nr = 1_000_000
i = 0
msg = '.'
buf = '.'
begin
r, w = UNIXSocket.pair(:SEQPACKET)
while i < nr
i += 1
w.sendmsg_nonblock(msg, exception: false)
r.recv(1, 0, buf)
end
ensure
r.close
w.close
end
-----------------------------------------------------------
raw data:
[["sendmsg_nonblock",
[[1.875997293740511,
1.8452614955604076,
1.8449317328631878,
1.8418389447033405,
1.869386937469244],
[1.5175109766423702,
1.4987873211503029,
1.4989623799920082,
1.47918451577425,
1.5017359890043736]]]]
Elapsed time: 16.775453245 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
sendmsg_nonblock 1.842 1.479
Speedup ratio: compare with the result of `a' (greater is better)
name b
sendmsg_nonblock 1.245
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 20:05:30 -05:00
|
|
|
# call-seq:
|
|
|
|
# basicsocket.sendmsg(mesg, flags=0, dest_sockaddr=nil, *controls) => numbytes_sent
|
|
|
|
#
|
|
|
|
# sendmsg sends a message using sendmsg(2) system call in blocking manner.
|
|
|
|
#
|
|
|
|
# _mesg_ is a string to send.
|
|
|
|
#
|
|
|
|
# _flags_ is bitwise OR of MSG_* constants such as Socket::MSG_OOB.
|
|
|
|
#
|
|
|
|
# _dest_sockaddr_ is a destination socket address for connection-less socket.
|
|
|
|
# It should be a sockaddr such as a result of Socket.sockaddr_in.
|
|
|
|
# An Addrinfo object can be used too.
|
|
|
|
#
|
|
|
|
# _controls_ is a list of ancillary data.
|
|
|
|
# The element of _controls_ should be Socket::AncillaryData or
|
|
|
|
# 3-elements array.
|
|
|
|
# The 3-element array should contains cmsg_level, cmsg_type and data.
|
|
|
|
#
|
|
|
|
# The return value, _numbytes_sent_ is an integer which is the number of bytes sent.
|
|
|
|
#
|
|
|
|
# sendmsg can be used to implement send_io as follows:
|
|
|
|
#
|
|
|
|
# # use Socket::AncillaryData.
|
|
|
|
# ancdata = Socket::AncillaryData.int(:UNIX, :SOCKET, :RIGHTS, io.fileno)
|
|
|
|
# sock.sendmsg("a", 0, nil, ancdata)
|
|
|
|
#
|
|
|
|
# # use 3-element array.
|
|
|
|
# ancdata = [:SOCKET, :RIGHTS, [io.fileno].pack("i!")]
|
|
|
|
# sock.sendmsg("\0", 0, nil, ancdata)
|
|
|
|
def sendmsg(mesg, flags = 0, dest_sockaddr = nil, *controls)
|
|
|
|
__sendmsg(mesg, flags, dest_sockaddr, controls)
|
|
|
|
end
|
|
|
|
|
|
|
|
# call-seq:
|
|
|
|
# basicsocket.sendmsg_nonblock(mesg, flags=0, dest_sockaddr=nil, *controls, opts={}) => numbytes_sent
|
|
|
|
#
|
|
|
|
# sendmsg_nonblock sends a message using sendmsg(2) system call in non-blocking manner.
|
|
|
|
#
|
|
|
|
# It is similar to BasicSocket#sendmsg
|
|
|
|
# but the non-blocking flag is set before the system call
|
|
|
|
# and it doesn't retry the system call.
|
|
|
|
#
|
2017-02-22 21:00:28 -05:00
|
|
|
# By specifying a keyword argument _exception_ to +false+, you can indicate
|
socket: avoid arg parsing in bsock_sendmsg_internal
* ext/socket/ancdata.c (bsock_sendmsg_internal): avoid arg parsing
[ruby-core:71439] [Feature #11339]
(rsock_bsock_sendmsg): make private, adjust for above
(rsock_bsock_sendmsg_nonblock): ditto
* ext/socket/rubysocket.h: adjust prototypes
(rsock_opt_false_p): remove
* ext/socket/basicsocket.c (rsock_init_basicsocket):
define private methods
* ext/socket/lib/socket.rb (BasicSocket#sendmsg): new wrapper
(BasicSocket#sendmsg_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
sendmsg_nonblock
require 'socket'
nr = 1_000_000
i = 0
msg = '.'
buf = '.'
begin
r, w = UNIXSocket.pair(:SEQPACKET)
while i < nr
i += 1
w.sendmsg_nonblock(msg, exception: false)
r.recv(1, 0, buf)
end
ensure
r.close
w.close
end
-----------------------------------------------------------
raw data:
[["sendmsg_nonblock",
[[1.875997293740511,
1.8452614955604076,
1.8449317328631878,
1.8418389447033405,
1.869386937469244],
[1.5175109766423702,
1.4987873211503029,
1.4989623799920082,
1.47918451577425,
1.5017359890043736]]]]
Elapsed time: 16.775453245 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
sendmsg_nonblock 1.842 1.479
Speedup ratio: compare with the result of `a' (greater is better)
name b
sendmsg_nonblock 1.245
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 20:05:30 -05:00
|
|
|
# that sendmsg_nonblock should not raise an IO::WaitWritable exception, but
|
2017-02-22 21:40:17 -05:00
|
|
|
# return the symbol +:wait_writable+ instead.
|
socket: avoid arg parsing in bsock_sendmsg_internal
* ext/socket/ancdata.c (bsock_sendmsg_internal): avoid arg parsing
[ruby-core:71439] [Feature #11339]
(rsock_bsock_sendmsg): make private, adjust for above
(rsock_bsock_sendmsg_nonblock): ditto
* ext/socket/rubysocket.h: adjust prototypes
(rsock_opt_false_p): remove
* ext/socket/basicsocket.c (rsock_init_basicsocket):
define private methods
* ext/socket/lib/socket.rb (BasicSocket#sendmsg): new wrapper
(BasicSocket#sendmsg_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
sendmsg_nonblock
require 'socket'
nr = 1_000_000
i = 0
msg = '.'
buf = '.'
begin
r, w = UNIXSocket.pair(:SEQPACKET)
while i < nr
i += 1
w.sendmsg_nonblock(msg, exception: false)
r.recv(1, 0, buf)
end
ensure
r.close
w.close
end
-----------------------------------------------------------
raw data:
[["sendmsg_nonblock",
[[1.875997293740511,
1.8452614955604076,
1.8449317328631878,
1.8418389447033405,
1.869386937469244],
[1.5175109766423702,
1.4987873211503029,
1.4989623799920082,
1.47918451577425,
1.5017359890043736]]]]
Elapsed time: 16.775453245 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
sendmsg_nonblock 1.842 1.479
Speedup ratio: compare with the result of `a' (greater is better)
name b
sendmsg_nonblock 1.245
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 20:05:30 -05:00
|
|
|
def sendmsg_nonblock(mesg, flags = 0, dest_sockaddr = nil, *controls,
|
|
|
|
exception: true)
|
|
|
|
__sendmsg_nonblock(mesg, flags, dest_sockaddr, controls, exception)
|
|
|
|
end
|
|
|
|
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
# call-seq:
|
|
|
|
# basicsocket.recv_nonblock(maxlen [, flags [, buf [, options ]]]) => mesg
|
|
|
|
#
|
|
|
|
# Receives up to _maxlen_ bytes from +socket+ using recvfrom(2) after
|
|
|
|
# O_NONBLOCK is set for the underlying file descriptor.
|
|
|
|
# _flags_ is zero or more of the +MSG_+ options.
|
|
|
|
# The result, _mesg_, is the data received.
|
|
|
|
#
|
|
|
|
# When recvfrom(2) returns 0, Socket#recv_nonblock returns
|
|
|
|
# an empty string as data.
|
|
|
|
# The meaning depends on the socket: EOF on TCP, empty packet on UDP, etc.
|
|
|
|
#
|
|
|
|
# === Parameters
|
|
|
|
# * +maxlen+ - the number of bytes to receive from the socket
|
|
|
|
# * +flags+ - zero or more of the +MSG_+ options
|
2017-10-22 02:01:07 -04:00
|
|
|
# * +buf+ - destination String buffer
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
# * +options+ - keyword hash, supporting `exception: false`
|
|
|
|
#
|
|
|
|
# === Example
|
|
|
|
# serv = TCPServer.new("127.0.0.1", 0)
|
|
|
|
# af, port, host, addr = serv.addr
|
|
|
|
# c = TCPSocket.new(addr, port)
|
|
|
|
# s = serv.accept
|
|
|
|
# c.send "aaa", 0
|
|
|
|
# begin # emulate blocking recv.
|
|
|
|
# p s.recv_nonblock(10) #=> "aaa"
|
|
|
|
# rescue IO::WaitReadable
|
|
|
|
# IO.select([s])
|
|
|
|
# retry
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Refer to Socket#recvfrom for the exceptions that may be thrown if the call
|
|
|
|
# to _recv_nonblock_ fails.
|
|
|
|
#
|
|
|
|
# BasicSocket#recv_nonblock may raise any error corresponding to recvfrom(2) failure,
|
|
|
|
# including Errno::EWOULDBLOCK.
|
|
|
|
#
|
|
|
|
# If the exception is Errno::EWOULDBLOCK or Errno::EAGAIN,
|
|
|
|
# it is extended by IO::WaitReadable.
|
|
|
|
# So IO::WaitReadable can be used to rescue the exceptions for retrying recv_nonblock.
|
|
|
|
#
|
2017-02-22 21:00:28 -05:00
|
|
|
# By specifying a keyword argument _exception_ to +false+, you can indicate
|
2017-02-22 20:54:13 -05:00
|
|
|
# that recv_nonblock should not raise an IO::WaitReadable exception, but
|
2017-02-22 21:40:17 -05:00
|
|
|
# return the symbol +:wait_readable+ instead.
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
#
|
|
|
|
# === See
|
|
|
|
# * Socket#recvfrom
|
|
|
|
def recv_nonblock(len, flag = 0, str = nil, exception: true)
|
|
|
|
__recv_nonblock(len, flag, str, exception)
|
|
|
|
end
|
socket (bsock_recvmsg_internal): avoid arg parsing
* ext/socket/ancdata.c (bsock_recvmsg_internal): avoid arg parsing
(rsock_bsock_recvmsg): adjust for above change
(rsock_bsock_recvmsg_nonblock): ditto
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototypes for above
* ext/socket/basicsocket.c (rsock_init_basicsocket):
adjust private methods
* ext/socket/lib/socket.rb (BasicSocket#recvmsg): wrapper method
(BasicSocket#recvmsg_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
recvmsg_nonblock
require 'socket'
nr = 1_000_000
i = 0
msg = '.'
buf = '.'
begin
r, w = UNIXSocket.pair(:SEQPACKET)
while i < nr
i += 1
w.sendmsg(msg)
r.recvmsg_nonblock(1, exception: false)
end
ensure
r.close
w.close
end
-----------------------------------------------------------
raw data:
[["recvmsg_nonblock",
[[3.721687912940979,
3.6072621569037437,
3.580637402832508,
3.614185404032469,
3.6029579415917397],
[2.4694008752703667,
2.4908322244882584,
2.5051278844475746,
2.5037173740565777,
2.548359278589487]]]]
Elapsed time: 30.646087052 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recvmsg_nonblock 3.581 2.469
Speedup ratio: compare with the result of `a' (greater is better)
name b
recvmsg_nonblock 1.450
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 19:58:23 -05:00
|
|
|
|
|
|
|
# call-seq:
|
|
|
|
# basicsocket.recvmsg(maxmesglen=nil, flags=0, maxcontrollen=nil, opts={}) => [mesg, sender_addrinfo, rflags, *controls]
|
|
|
|
#
|
|
|
|
# recvmsg receives a message using recvmsg(2) system call in blocking manner.
|
|
|
|
#
|
|
|
|
# _maxmesglen_ is the maximum length of mesg to receive.
|
|
|
|
#
|
|
|
|
# _flags_ is bitwise OR of MSG_* constants such as Socket::MSG_PEEK.
|
|
|
|
#
|
|
|
|
# _maxcontrollen_ is the maximum length of controls (ancillary data) to receive.
|
|
|
|
#
|
|
|
|
# _opts_ is option hash.
|
|
|
|
# Currently :scm_rights=>bool is the only option.
|
|
|
|
#
|
|
|
|
# :scm_rights option specifies that application expects SCM_RIGHTS control message.
|
|
|
|
# If the value is nil or false, application don't expects SCM_RIGHTS control message.
|
|
|
|
# In this case, recvmsg closes the passed file descriptors immediately.
|
|
|
|
# This is the default behavior.
|
|
|
|
#
|
|
|
|
# If :scm_rights value is neither nil nor false, application expects SCM_RIGHTS control message.
|
|
|
|
# In this case, recvmsg creates IO objects for each file descriptors for
|
|
|
|
# Socket::AncillaryData#unix_rights method.
|
|
|
|
#
|
|
|
|
# The return value is 4-elements array.
|
|
|
|
#
|
|
|
|
# _mesg_ is a string of the received message.
|
|
|
|
#
|
|
|
|
# _sender_addrinfo_ is a sender socket address for connection-less socket.
|
|
|
|
# It is an Addrinfo object.
|
|
|
|
# For connection-oriented socket such as TCP, sender_addrinfo is platform dependent.
|
|
|
|
#
|
|
|
|
# _rflags_ is a flags on the received message which is bitwise OR of MSG_* constants such as Socket::MSG_TRUNC.
|
|
|
|
# It will be nil if the system uses 4.3BSD style old recvmsg system call.
|
|
|
|
#
|
|
|
|
# _controls_ is ancillary data which is an array of Socket::AncillaryData objects such as:
|
|
|
|
#
|
|
|
|
# #<Socket::AncillaryData: AF_UNIX SOCKET RIGHTS 7>
|
|
|
|
#
|
|
|
|
# _maxmesglen_ and _maxcontrollen_ can be nil.
|
|
|
|
# In that case, the buffer will be grown until the message is not truncated.
|
2015-11-19 08:49:58 -05:00
|
|
|
# Internally, MSG_PEEK is used.
|
|
|
|
# Buffer full and MSG_CTRUNC are checked for truncation.
|
socket (bsock_recvmsg_internal): avoid arg parsing
* ext/socket/ancdata.c (bsock_recvmsg_internal): avoid arg parsing
(rsock_bsock_recvmsg): adjust for above change
(rsock_bsock_recvmsg_nonblock): ditto
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototypes for above
* ext/socket/basicsocket.c (rsock_init_basicsocket):
adjust private methods
* ext/socket/lib/socket.rb (BasicSocket#recvmsg): wrapper method
(BasicSocket#recvmsg_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
recvmsg_nonblock
require 'socket'
nr = 1_000_000
i = 0
msg = '.'
buf = '.'
begin
r, w = UNIXSocket.pair(:SEQPACKET)
while i < nr
i += 1
w.sendmsg(msg)
r.recvmsg_nonblock(1, exception: false)
end
ensure
r.close
w.close
end
-----------------------------------------------------------
raw data:
[["recvmsg_nonblock",
[[3.721687912940979,
3.6072621569037437,
3.580637402832508,
3.614185404032469,
3.6029579415917397],
[2.4694008752703667,
2.4908322244882584,
2.5051278844475746,
2.5037173740565777,
2.548359278589487]]]]
Elapsed time: 30.646087052 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recvmsg_nonblock 3.581 2.469
Speedup ratio: compare with the result of `a' (greater is better)
name b
recvmsg_nonblock 1.450
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 19:58:23 -05:00
|
|
|
#
|
|
|
|
# recvmsg can be used to implement recv_io as follows:
|
|
|
|
#
|
|
|
|
# mesg, sender_sockaddr, rflags, *controls = sock.recvmsg(:scm_rights=>true)
|
|
|
|
# controls.each {|ancdata|
|
|
|
|
# if ancdata.cmsg_is?(:SOCKET, :RIGHTS)
|
|
|
|
# return ancdata.unix_rights[0]
|
|
|
|
# end
|
|
|
|
# }
|
2015-11-17 17:00:23 -05:00
|
|
|
def recvmsg(dlen = nil, flags = 0, clen = nil, scm_rights: false)
|
socket (bsock_recvmsg_internal): avoid arg parsing
* ext/socket/ancdata.c (bsock_recvmsg_internal): avoid arg parsing
(rsock_bsock_recvmsg): adjust for above change
(rsock_bsock_recvmsg_nonblock): ditto
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototypes for above
* ext/socket/basicsocket.c (rsock_init_basicsocket):
adjust private methods
* ext/socket/lib/socket.rb (BasicSocket#recvmsg): wrapper method
(BasicSocket#recvmsg_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
recvmsg_nonblock
require 'socket'
nr = 1_000_000
i = 0
msg = '.'
buf = '.'
begin
r, w = UNIXSocket.pair(:SEQPACKET)
while i < nr
i += 1
w.sendmsg(msg)
r.recvmsg_nonblock(1, exception: false)
end
ensure
r.close
w.close
end
-----------------------------------------------------------
raw data:
[["recvmsg_nonblock",
[[3.721687912940979,
3.6072621569037437,
3.580637402832508,
3.614185404032469,
3.6029579415917397],
[2.4694008752703667,
2.4908322244882584,
2.5051278844475746,
2.5037173740565777,
2.548359278589487]]]]
Elapsed time: 30.646087052 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recvmsg_nonblock 3.581 2.469
Speedup ratio: compare with the result of `a' (greater is better)
name b
recvmsg_nonblock 1.450
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 19:58:23 -05:00
|
|
|
__recvmsg(dlen, flags, clen, scm_rights)
|
|
|
|
end
|
|
|
|
|
|
|
|
# call-seq:
|
|
|
|
# basicsocket.recvmsg_nonblock(maxdatalen=nil, flags=0, maxcontrollen=nil, opts={}) => [data, sender_addrinfo, rflags, *controls]
|
|
|
|
#
|
|
|
|
# recvmsg receives a message using recvmsg(2) system call in non-blocking manner.
|
|
|
|
#
|
|
|
|
# It is similar to BasicSocket#recvmsg
|
|
|
|
# but non-blocking flag is set before the system call
|
|
|
|
# and it doesn't retry the system call.
|
|
|
|
#
|
2017-02-22 21:00:28 -05:00
|
|
|
# By specifying a keyword argument _exception_ to +false+, you can indicate
|
2017-02-22 20:54:13 -05:00
|
|
|
# that recvmsg_nonblock should not raise an IO::WaitReadable exception, but
|
2017-02-22 21:40:17 -05:00
|
|
|
# return the symbol +:wait_readable+ instead.
|
2015-11-17 17:00:23 -05:00
|
|
|
def recvmsg_nonblock(dlen = nil, flags = 0, clen = nil,
|
socket (bsock_recvmsg_internal): avoid arg parsing
* ext/socket/ancdata.c (bsock_recvmsg_internal): avoid arg parsing
(rsock_bsock_recvmsg): adjust for above change
(rsock_bsock_recvmsg_nonblock): ditto
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototypes for above
* ext/socket/basicsocket.c (rsock_init_basicsocket):
adjust private methods
* ext/socket/lib/socket.rb (BasicSocket#recvmsg): wrapper method
(BasicSocket#recvmsg_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
recvmsg_nonblock
require 'socket'
nr = 1_000_000
i = 0
msg = '.'
buf = '.'
begin
r, w = UNIXSocket.pair(:SEQPACKET)
while i < nr
i += 1
w.sendmsg(msg)
r.recvmsg_nonblock(1, exception: false)
end
ensure
r.close
w.close
end
-----------------------------------------------------------
raw data:
[["recvmsg_nonblock",
[[3.721687912940979,
3.6072621569037437,
3.580637402832508,
3.614185404032469,
3.6029579415917397],
[2.4694008752703667,
2.4908322244882584,
2.5051278844475746,
2.5037173740565777,
2.548359278589487]]]]
Elapsed time: 30.646087052 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recvmsg_nonblock 3.581 2.469
Speedup ratio: compare with the result of `a' (greater is better)
name b
recvmsg_nonblock 1.450
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 19:58:23 -05:00
|
|
|
scm_rights: false, exception: true)
|
|
|
|
__recvmsg_nonblock(dlen, flags, clen, scm_rights, exception)
|
|
|
|
end
|
2017-04-18 21:08:16 -04:00
|
|
|
|
|
|
|
# Linux-specific optimizations to avoid fcntl for IO#read_nonblock
|
|
|
|
# and IO#write_nonblock using MSG_DONTWAIT
|
2017-10-22 07:27:06 -04:00
|
|
|
# Do other platforms support MSG_DONTWAIT reliably?
|
2017-04-18 21:08:16 -04:00
|
|
|
if RUBY_PLATFORM =~ /linux/ && Socket.const_defined?(:MSG_DONTWAIT)
|
|
|
|
def read_nonblock(len, str = nil, exception: true) # :nodoc:
|
2017-10-27 19:26:48 -04:00
|
|
|
__read_nonblock(len, str, exception)
|
2017-04-18 21:08:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def write_nonblock(buf, exception: true) # :nodoc:
|
2017-10-27 19:26:48 -04:00
|
|
|
__write_nonblock(buf, exception)
|
2017-04-18 21:08:16 -04:00
|
|
|
end
|
|
|
|
end
|
2009-02-26 09:15:39 -05:00
|
|
|
end
|
|
|
|
|
2010-03-21 06:50:52 -04:00
|
|
|
class Socket < BasicSocket
|
2009-01-17 08:04:03 -05:00
|
|
|
# enable the socket option IPV6_V6ONLY if IPV6_V6ONLY is available.
|
|
|
|
def ipv6only!
|
2009-02-02 18:36:43 -05:00
|
|
|
if defined? Socket::IPV6_V6ONLY
|
2009-01-17 08:04:03 -05:00
|
|
|
self.setsockopt(:IPV6, :V6ONLY, 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
# call-seq:
|
2015-11-16 21:29:19 -05:00
|
|
|
# socket.recvfrom_nonblock(maxlen[, flags[, outbuf[, opts]]]) => [mesg, sender_addrinfo]
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
#
|
|
|
|
# Receives up to _maxlen_ bytes from +socket+ using recvfrom(2) after
|
|
|
|
# O_NONBLOCK is set for the underlying file descriptor.
|
|
|
|
# _flags_ is zero or more of the +MSG_+ options.
|
|
|
|
# The first element of the results, _mesg_, is the data received.
|
|
|
|
# The second element, _sender_addrinfo_, contains protocol-specific address
|
|
|
|
# information of the sender.
|
|
|
|
#
|
|
|
|
# When recvfrom(2) returns 0, Socket#recvfrom_nonblock returns
|
|
|
|
# an empty string as data.
|
|
|
|
# The meaning depends on the socket: EOF on TCP, empty packet on UDP, etc.
|
|
|
|
#
|
|
|
|
# === Parameters
|
|
|
|
# * +maxlen+ - the maximum number of bytes to receive from the socket
|
|
|
|
# * +flags+ - zero or more of the +MSG_+ options
|
2015-11-16 21:29:19 -05:00
|
|
|
# * +outbuf+ - destination String buffer
|
|
|
|
# * +opts+ - keyword hash, supporting `exception: false`
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
#
|
|
|
|
# === Example
|
|
|
|
# # In one file, start this first
|
|
|
|
# require 'socket'
|
|
|
|
# include Socket::Constants
|
|
|
|
# socket = Socket.new(AF_INET, SOCK_STREAM, 0)
|
|
|
|
# sockaddr = Socket.sockaddr_in(2200, 'localhost')
|
|
|
|
# socket.bind(sockaddr)
|
|
|
|
# socket.listen(5)
|
|
|
|
# client, client_addrinfo = socket.accept
|
|
|
|
# begin # emulate blocking recvfrom
|
|
|
|
# pair = client.recvfrom_nonblock(20)
|
|
|
|
# rescue IO::WaitReadable
|
|
|
|
# IO.select([client])
|
|
|
|
# retry
|
|
|
|
# end
|
|
|
|
# data = pair[0].chomp
|
|
|
|
# puts "I only received 20 bytes '#{data}'"
|
|
|
|
# sleep 1
|
|
|
|
# socket.close
|
|
|
|
#
|
|
|
|
# # In another file, start this second
|
|
|
|
# require 'socket'
|
|
|
|
# include Socket::Constants
|
|
|
|
# socket = Socket.new(AF_INET, SOCK_STREAM, 0)
|
|
|
|
# sockaddr = Socket.sockaddr_in(2200, 'localhost')
|
|
|
|
# socket.connect(sockaddr)
|
|
|
|
# socket.puts "Watch this get cut short!"
|
|
|
|
# socket.close
|
|
|
|
#
|
|
|
|
# Refer to Socket#recvfrom for the exceptions that may be thrown if the call
|
|
|
|
# to _recvfrom_nonblock_ fails.
|
|
|
|
#
|
|
|
|
# Socket#recvfrom_nonblock may raise any error corresponding to recvfrom(2) failure,
|
|
|
|
# including Errno::EWOULDBLOCK.
|
|
|
|
#
|
|
|
|
# If the exception is Errno::EWOULDBLOCK or Errno::EAGAIN,
|
|
|
|
# it is extended by IO::WaitReadable.
|
2015-11-16 21:29:19 -05:00
|
|
|
# So IO::WaitReadable can be used to rescue the exceptions for retrying
|
|
|
|
# recvfrom_nonblock.
|
|
|
|
#
|
2017-02-22 21:00:28 -05:00
|
|
|
# By specifying a keyword argument _exception_ to +false+, you can indicate
|
2017-02-22 20:54:13 -05:00
|
|
|
# that recvfrom_nonblock should not raise an IO::WaitReadable exception, but
|
2017-02-22 21:40:17 -05:00
|
|
|
# return the symbol +:wait_readable+ instead.
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
#
|
|
|
|
# === See
|
|
|
|
# * Socket#recvfrom
|
|
|
|
def recvfrom_nonblock(len, flag = 0, str = nil, exception: true)
|
|
|
|
__recvfrom_nonblock(len, flag, str, exception)
|
|
|
|
end
|
|
|
|
|
socket: avoid arg parsing in rsock_s_accept_nonblock
* ext/socket/init.c (rsock_s_accept_nonblock): avoid parsing args
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototype
* ext/socket/socket.c (sock_accept_nonblock): make private
* ext/socket/tcpserver.c (tcp_accept_nonblock): ditto
* ext/socket/unixserver.c (unix_accept_nonblock): ditto
* ext/socket/lib/socket.rb (Socket#accept_nonblock):
implement as wrapper, move RDoc
(TCPServer#accept_nonblock): ditto
(UNIXServer#accept_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
accept_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(accept_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
s.accept_nonblock(exception: false)
c = UNIXSocket.new(path)
s.wait_readable
s.accept_nonblock(exception: false).close
c.close
end
end
-----------------------------------------------------------
raw data:
[["accept_nonblock",
[[4.807877402752638,
4.930681671947241,
4.738454818725586,
4.69268161803484,
4.684675686061382],
[4.253904823213816,
4.255124930292368,
4.295955188572407,
4.248479191213846,
4.213303029537201]]]]
Elapsed time: 45.123040065 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
accept_nonblock 4.685 4.213
Speedup ratio: compare with the result of `a' (greater is better)
name b
accept_nonblock 1.112
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:40:15 -05:00
|
|
|
# call-seq:
|
|
|
|
# socket.accept_nonblock([options]) => [client_socket, client_addrinfo]
|
|
|
|
#
|
|
|
|
# Accepts an incoming connection using accept(2) after
|
|
|
|
# O_NONBLOCK is set for the underlying file descriptor.
|
|
|
|
# It returns an array containing the accepted socket
|
|
|
|
# for the incoming connection, _client_socket_,
|
|
|
|
# and an Addrinfo, _client_addrinfo_.
|
|
|
|
#
|
|
|
|
# === Example
|
|
|
|
# # In one script, start this first
|
|
|
|
# require 'socket'
|
|
|
|
# include Socket::Constants
|
|
|
|
# socket = Socket.new(AF_INET, SOCK_STREAM, 0)
|
|
|
|
# sockaddr = Socket.sockaddr_in(2200, 'localhost')
|
|
|
|
# socket.bind(sockaddr)
|
|
|
|
# socket.listen(5)
|
|
|
|
# begin # emulate blocking accept
|
|
|
|
# client_socket, client_addrinfo = socket.accept_nonblock
|
|
|
|
# rescue IO::WaitReadable, Errno::EINTR
|
|
|
|
# IO.select([socket])
|
|
|
|
# retry
|
|
|
|
# end
|
|
|
|
# puts "The client said, '#{client_socket.readline.chomp}'"
|
|
|
|
# client_socket.puts "Hello from script one!"
|
|
|
|
# socket.close
|
|
|
|
#
|
|
|
|
# # In another script, start this second
|
|
|
|
# require 'socket'
|
|
|
|
# include Socket::Constants
|
|
|
|
# socket = Socket.new(AF_INET, SOCK_STREAM, 0)
|
|
|
|
# sockaddr = Socket.sockaddr_in(2200, 'localhost')
|
|
|
|
# socket.connect(sockaddr)
|
|
|
|
# socket.puts "Hello from script 2."
|
|
|
|
# puts "The server said, '#{socket.readline.chomp}'"
|
|
|
|
# socket.close
|
|
|
|
#
|
|
|
|
# Refer to Socket#accept for the exceptions that may be thrown if the call
|
|
|
|
# to _accept_nonblock_ fails.
|
|
|
|
#
|
|
|
|
# Socket#accept_nonblock may raise any error corresponding to accept(2) failure,
|
|
|
|
# including Errno::EWOULDBLOCK.
|
|
|
|
#
|
|
|
|
# If the exception is Errno::EWOULDBLOCK, Errno::EAGAIN, Errno::ECONNABORTED or Errno::EPROTO,
|
|
|
|
# it is extended by IO::WaitReadable.
|
|
|
|
# So IO::WaitReadable can be used to rescue the exceptions for retrying accept_nonblock.
|
|
|
|
#
|
2017-02-22 21:00:28 -05:00
|
|
|
# By specifying a keyword argument _exception_ to +false+, you can indicate
|
socket: avoid arg parsing in rsock_s_accept_nonblock
* ext/socket/init.c (rsock_s_accept_nonblock): avoid parsing args
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototype
* ext/socket/socket.c (sock_accept_nonblock): make private
* ext/socket/tcpserver.c (tcp_accept_nonblock): ditto
* ext/socket/unixserver.c (unix_accept_nonblock): ditto
* ext/socket/lib/socket.rb (Socket#accept_nonblock):
implement as wrapper, move RDoc
(TCPServer#accept_nonblock): ditto
(UNIXServer#accept_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
accept_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(accept_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
s.accept_nonblock(exception: false)
c = UNIXSocket.new(path)
s.wait_readable
s.accept_nonblock(exception: false).close
c.close
end
end
-----------------------------------------------------------
raw data:
[["accept_nonblock",
[[4.807877402752638,
4.930681671947241,
4.738454818725586,
4.69268161803484,
4.684675686061382],
[4.253904823213816,
4.255124930292368,
4.295955188572407,
4.248479191213846,
4.213303029537201]]]]
Elapsed time: 45.123040065 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
accept_nonblock 4.685 4.213
Speedup ratio: compare with the result of `a' (greater is better)
name b
accept_nonblock 1.112
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:40:15 -05:00
|
|
|
# that accept_nonblock should not raise an IO::WaitReadable exception, but
|
2017-02-22 21:40:17 -05:00
|
|
|
# return the symbol +:wait_readable+ instead.
|
socket: avoid arg parsing in rsock_s_accept_nonblock
* ext/socket/init.c (rsock_s_accept_nonblock): avoid parsing args
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototype
* ext/socket/socket.c (sock_accept_nonblock): make private
* ext/socket/tcpserver.c (tcp_accept_nonblock): ditto
* ext/socket/unixserver.c (unix_accept_nonblock): ditto
* ext/socket/lib/socket.rb (Socket#accept_nonblock):
implement as wrapper, move RDoc
(TCPServer#accept_nonblock): ditto
(UNIXServer#accept_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
accept_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(accept_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
s.accept_nonblock(exception: false)
c = UNIXSocket.new(path)
s.wait_readable
s.accept_nonblock(exception: false).close
c.close
end
end
-----------------------------------------------------------
raw data:
[["accept_nonblock",
[[4.807877402752638,
4.930681671947241,
4.738454818725586,
4.69268161803484,
4.684675686061382],
[4.253904823213816,
4.255124930292368,
4.295955188572407,
4.248479191213846,
4.213303029537201]]]]
Elapsed time: 45.123040065 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
accept_nonblock 4.685 4.213
Speedup ratio: compare with the result of `a' (greater is better)
name b
accept_nonblock 1.112
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:40:15 -05:00
|
|
|
#
|
|
|
|
# === See
|
|
|
|
# * Socket#accept
|
|
|
|
def accept_nonblock(exception: true)
|
|
|
|
__accept_nonblock(exception)
|
|
|
|
end
|
|
|
|
|
2011-08-10 09:13:57 -04:00
|
|
|
# :call-seq:
|
|
|
|
# Socket.tcp(host, port, local_host=nil, local_port=nil, [opts]) {|socket| ... }
|
|
|
|
# Socket.tcp(host, port, local_host=nil, local_port=nil, [opts])
|
|
|
|
#
|
2009-07-07 09:13:49 -04:00
|
|
|
# creates a new socket object connected to host:port using TCP/IP.
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
|
|
|
# If local_host:local_port is given,
|
|
|
|
# the socket is bound to it.
|
|
|
|
#
|
2011-08-10 09:13:57 -04:00
|
|
|
# The optional last argument _opts_ is options represented by a hash.
|
|
|
|
# _opts_ may have following options:
|
|
|
|
#
|
|
|
|
# [:connect_timeout] specify the timeout in seconds.
|
|
|
|
#
|
2009-01-17 08:04:03 -05:00
|
|
|
# If a block is given, the block is called with the socket.
|
|
|
|
# The value of the block is returned.
|
|
|
|
# The socket is closed when this method returns.
|
|
|
|
#
|
|
|
|
# If no block is given, the socket is returned.
|
|
|
|
#
|
|
|
|
# Socket.tcp("www.ruby-lang.org", 80) {|sock|
|
2010-03-21 21:24:28 -04:00
|
|
|
# sock.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
|
2009-01-17 08:04:03 -05:00
|
|
|
# sock.close_write
|
2010-03-21 21:24:28 -04:00
|
|
|
# puts sock.read
|
2009-01-17 08:04:03 -05:00
|
|
|
# }
|
|
|
|
#
|
2016-11-14 02:53:31 -05:00
|
|
|
def self.tcp(host, port, local_host = nil, local_port = nil, connect_timeout: nil) # :yield: socket
|
2009-01-17 08:04:03 -05:00
|
|
|
last_error = nil
|
|
|
|
ret = nil
|
|
|
|
|
|
|
|
local_addr_list = nil
|
|
|
|
if local_host != nil || local_port != nil
|
2009-02-05 06:01:43 -05:00
|
|
|
local_addr_list = Addrinfo.getaddrinfo(local_host, local_port, nil, :STREAM, nil)
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
|
2009-02-05 06:01:43 -05:00
|
|
|
Addrinfo.foreach(host, port, nil, :STREAM) {|ai|
|
2009-01-17 08:04:03 -05:00
|
|
|
if local_addr_list
|
|
|
|
local_addr = local_addr_list.find {|local_ai| local_ai.afamily == ai.afamily }
|
2016-11-14 20:39:11 -05:00
|
|
|
next unless local_addr
|
2009-01-17 08:04:03 -05:00
|
|
|
else
|
|
|
|
local_addr = nil
|
|
|
|
end
|
|
|
|
begin
|
2011-08-10 09:13:57 -04:00
|
|
|
sock = local_addr ?
|
2016-11-14 02:53:31 -05:00
|
|
|
ai.connect_from(local_addr, timeout: connect_timeout) :
|
|
|
|
ai.connect(timeout: connect_timeout)
|
2009-01-17 08:04:03 -05:00
|
|
|
rescue SystemCallError
|
|
|
|
last_error = $!
|
|
|
|
next
|
|
|
|
end
|
|
|
|
ret = sock
|
|
|
|
break
|
|
|
|
}
|
2016-11-14 20:39:11 -05:00
|
|
|
unless ret
|
2009-01-17 08:04:03 -05:00
|
|
|
if last_error
|
|
|
|
raise last_error
|
|
|
|
else
|
|
|
|
raise SocketError, "no appropriate local address"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if block_given?
|
|
|
|
begin
|
|
|
|
yield ret
|
|
|
|
ensure
|
2016-11-14 20:39:11 -05:00
|
|
|
ret.close
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
else
|
|
|
|
ret
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-03-21 20:06:48 -04:00
|
|
|
# :stopdoc:
|
2009-02-10 07:38:16 -05:00
|
|
|
def self.ip_sockets_port0(ai_list, reuseaddr)
|
2013-12-13 11:11:12 -05:00
|
|
|
sockets = []
|
2009-02-03 02:25:57 -05:00
|
|
|
begin
|
2013-12-13 11:11:12 -05:00
|
|
|
sockets.clear
|
2009-02-03 02:25:57 -05:00
|
|
|
port = nil
|
|
|
|
ai_list.each {|ai|
|
2009-02-03 10:21:42 -05:00
|
|
|
begin
|
|
|
|
s = Socket.new(ai.pfamily, ai.socktype, ai.protocol)
|
|
|
|
rescue SystemCallError
|
|
|
|
next
|
|
|
|
end
|
2009-02-03 02:25:57 -05:00
|
|
|
sockets << s
|
|
|
|
s.ipv6only! if ai.ipv6?
|
2009-02-10 07:38:16 -05:00
|
|
|
if reuseaddr
|
|
|
|
s.setsockopt(:SOCKET, :REUSEADDR, 1)
|
|
|
|
end
|
2016-11-14 20:39:11 -05:00
|
|
|
unless port
|
2009-02-03 02:25:57 -05:00
|
|
|
s.bind(ai)
|
|
|
|
port = s.local_address.ip_port
|
|
|
|
else
|
2009-02-10 07:38:16 -05:00
|
|
|
s.bind(ai.family_addrinfo(ai.ip_address, port))
|
2009-02-03 02:25:57 -05:00
|
|
|
end
|
|
|
|
}
|
|
|
|
rescue Errno::EADDRINUSE
|
2016-11-21 18:50:25 -05:00
|
|
|
sockets.each(&:close)
|
2009-02-03 02:25:57 -05:00
|
|
|
retry
|
2013-12-13 11:11:12 -05:00
|
|
|
rescue Exception
|
2016-11-21 18:50:25 -05:00
|
|
|
sockets.each(&:close)
|
2013-12-13 11:11:12 -05:00
|
|
|
raise
|
2009-02-03 02:25:57 -05:00
|
|
|
end
|
|
|
|
sockets
|
2009-02-10 07:38:16 -05:00
|
|
|
end
|
|
|
|
class << self
|
|
|
|
private :ip_sockets_port0
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.tcp_server_sockets_port0(host)
|
|
|
|
ai_list = Addrinfo.getaddrinfo(host, 0, nil, :STREAM, nil, Socket::AI_PASSIVE)
|
|
|
|
sockets = ip_sockets_port0(ai_list, true)
|
2013-12-13 11:11:12 -05:00
|
|
|
begin
|
|
|
|
sockets.each {|s|
|
|
|
|
s.listen(Socket::SOMAXCONN)
|
|
|
|
}
|
|
|
|
rescue Exception
|
2016-11-21 18:50:25 -05:00
|
|
|
sockets.each(&:close)
|
2013-12-13 11:11:12 -05:00
|
|
|
raise
|
|
|
|
end
|
2009-02-10 07:38:16 -05:00
|
|
|
sockets
|
2009-02-03 02:25:57 -05:00
|
|
|
end
|
|
|
|
class << self
|
|
|
|
private :tcp_server_sockets_port0
|
|
|
|
end
|
2010-03-21 20:06:48 -04:00
|
|
|
# :startdoc:
|
2009-02-03 02:25:57 -05:00
|
|
|
|
2009-07-07 09:13:49 -04:00
|
|
|
# creates TCP/IP server sockets for _host_ and _port_.
|
2009-02-02 18:36:43 -05:00
|
|
|
# _host_ is optional.
|
|
|
|
#
|
2009-02-11 03:49:49 -05:00
|
|
|
# If no block given,
|
2009-02-11 03:35:35 -05:00
|
|
|
# it returns an array of listening sockets.
|
|
|
|
#
|
|
|
|
# If a block is given, the block is called with the sockets.
|
|
|
|
# The value of the block is returned.
|
|
|
|
# The socket is closed when this method returns.
|
2009-02-02 18:36:43 -05:00
|
|
|
#
|
2013-04-23 23:55:02 -04:00
|
|
|
# If _port_ is 0, actual port number is chosen dynamically.
|
2009-02-03 02:25:57 -05:00
|
|
|
# However all sockets in the result has same port number.
|
|
|
|
#
|
2009-02-02 18:36:43 -05:00
|
|
|
# # tcp_server_sockets returns two sockets.
|
|
|
|
# sockets = Socket.tcp_server_sockets(1296)
|
|
|
|
# p sockets #=> [#<Socket:fd 3>, #<Socket:fd 4>]
|
|
|
|
#
|
|
|
|
# # The sockets contains IPv6 and IPv4 sockets.
|
|
|
|
# sockets.each {|s| p s.local_address }
|
2009-02-05 06:01:43 -05:00
|
|
|
# #=> #<Addrinfo: [::]:1296 TCP>
|
|
|
|
# # #<Addrinfo: 0.0.0.0:1296 TCP>
|
2009-02-02 18:36:43 -05:00
|
|
|
#
|
2013-04-23 23:55:02 -04:00
|
|
|
# # IPv6 and IPv4 socket has same port number, 53114, even if it is chosen dynamically.
|
2009-02-03 02:25:57 -05:00
|
|
|
# sockets = Socket.tcp_server_sockets(0)
|
|
|
|
# sockets.each {|s| p s.local_address }
|
2009-02-05 06:01:43 -05:00
|
|
|
# #=> #<Addrinfo: [::]:53114 TCP>
|
|
|
|
# # #<Addrinfo: 0.0.0.0:53114 TCP>
|
2009-02-03 02:25:57 -05:00
|
|
|
#
|
2009-02-11 03:35:35 -05:00
|
|
|
# # The block is called with the sockets.
|
|
|
|
# Socket.tcp_server_sockets(0) {|sockets|
|
|
|
|
# p sockets #=> [#<Socket:fd 3>, #<Socket:fd 4>]
|
|
|
|
# }
|
|
|
|
#
|
2009-02-02 18:36:43 -05:00
|
|
|
def self.tcp_server_sockets(host=nil, port)
|
2009-02-11 03:35:35 -05:00
|
|
|
if port == 0
|
|
|
|
sockets = tcp_server_sockets_port0(host)
|
|
|
|
else
|
2013-12-13 11:11:12 -05:00
|
|
|
last_error = nil
|
|
|
|
sockets = []
|
2009-02-11 03:35:35 -05:00
|
|
|
begin
|
|
|
|
Addrinfo.foreach(host, port, nil, :STREAM, nil, Socket::AI_PASSIVE) {|ai|
|
|
|
|
begin
|
|
|
|
s = ai.listen
|
|
|
|
rescue SystemCallError
|
|
|
|
last_error = $!
|
|
|
|
next
|
|
|
|
end
|
|
|
|
sockets << s
|
|
|
|
}
|
|
|
|
if sockets.empty?
|
|
|
|
raise last_error
|
2009-02-03 02:25:57 -05:00
|
|
|
end
|
2013-12-13 11:11:12 -05:00
|
|
|
rescue Exception
|
2016-11-21 18:50:25 -05:00
|
|
|
sockets.each(&:close)
|
2013-12-13 11:11:12 -05:00
|
|
|
raise
|
2009-02-03 02:25:57 -05:00
|
|
|
end
|
2009-02-11 03:35:35 -05:00
|
|
|
end
|
|
|
|
if block_given?
|
|
|
|
begin
|
|
|
|
yield sockets
|
|
|
|
ensure
|
2016-11-21 18:50:25 -05:00
|
|
|
sockets.each(&:close)
|
2009-02-03 02:25:57 -05:00
|
|
|
end
|
2009-02-11 03:35:35 -05:00
|
|
|
else
|
|
|
|
sockets
|
2009-02-02 18:36:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# yield socket and client address for each a connection accepted via given sockets.
|
|
|
|
#
|
|
|
|
# The arguments are a list of sockets.
|
2009-03-05 22:56:38 -05:00
|
|
|
# The individual argument should be a socket or an array of sockets.
|
2009-02-02 18:36:43 -05:00
|
|
|
#
|
|
|
|
# This method yields the block sequentially.
|
|
|
|
# It means that the next connection is not accepted until the block returns.
|
|
|
|
# So concurrent mechanism, thread for example, should be used to service multiple clients at a time.
|
|
|
|
#
|
|
|
|
def self.accept_loop(*sockets) # :yield: socket, client_addrinfo
|
|
|
|
sockets.flatten!(1)
|
|
|
|
if sockets.empty?
|
|
|
|
raise ArgumentError, "no sockets"
|
|
|
|
end
|
|
|
|
loop {
|
|
|
|
readable, _, _ = IO.select(sockets)
|
|
|
|
readable.each {|r|
|
2015-11-16 20:16:25 -05:00
|
|
|
sock, addr = r.accept_nonblock(exception: false)
|
|
|
|
next if sock == :wait_readable
|
2009-02-02 18:36:43 -05:00
|
|
|
yield sock, addr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2009-07-07 09:13:49 -04:00
|
|
|
# creates a TCP/IP server on _port_ and calls the block for each connection accepted.
|
2009-02-05 06:01:43 -05:00
|
|
|
# The block is called with a socket and a client_address as an Addrinfo object.
|
2009-01-17 08:04:03 -05:00
|
|
|
#
|
|
|
|
# If _host_ is specified, it is used with _port_ to determine the server addresses.
|
|
|
|
#
|
|
|
|
# The socket is *not* closed when the block returns.
|
|
|
|
# So application should close it explicitly.
|
|
|
|
#
|
|
|
|
# This method calls the block sequentially.
|
|
|
|
# It means that the next connection is not accepted until the block returns.
|
|
|
|
# So concurrent mechanism, thread for example, should be used to service multiple clients at a time.
|
|
|
|
#
|
2009-02-05 06:01:43 -05:00
|
|
|
# Note that Addrinfo.getaddrinfo is used to determine the server socket addresses.
|
|
|
|
# When Addrinfo.getaddrinfo returns two or more addresses,
|
2009-01-17 08:04:03 -05:00
|
|
|
# IPv4 and IPv6 address for example,
|
|
|
|
# all of them are used.
|
|
|
|
# Socket.tcp_server_loop succeeds if one socket can be used at least.
|
|
|
|
#
|
|
|
|
# # Sequential echo server.
|
|
|
|
# # It services only one client at a time.
|
|
|
|
# Socket.tcp_server_loop(16807) {|sock, client_addrinfo|
|
|
|
|
# begin
|
|
|
|
# IO.copy_stream(sock, sock)
|
|
|
|
# ensure
|
|
|
|
# sock.close
|
|
|
|
# end
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
# # Threaded echo server
|
|
|
|
# # It services multiple clients at a time.
|
|
|
|
# # Note that it may accept connections too much.
|
|
|
|
# Socket.tcp_server_loop(16807) {|sock, client_addrinfo|
|
|
|
|
# Thread.new {
|
|
|
|
# begin
|
|
|
|
# IO.copy_stream(sock, sock)
|
|
|
|
# ensure
|
|
|
|
# sock.close
|
|
|
|
# end
|
|
|
|
# }
|
|
|
|
# }
|
|
|
|
#
|
2009-02-02 18:36:43 -05:00
|
|
|
def self.tcp_server_loop(host=nil, port, &b) # :yield: socket, client_addrinfo
|
2009-02-11 03:35:35 -05:00
|
|
|
tcp_server_sockets(host, port) {|sockets|
|
|
|
|
accept_loop(sockets, &b)
|
|
|
|
}
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
|
2009-02-10 07:38:16 -05:00
|
|
|
# :call-seq:
|
|
|
|
# Socket.udp_server_sockets([host, ] port)
|
|
|
|
#
|
2009-07-07 09:13:49 -04:00
|
|
|
# Creates UDP/IP sockets for a UDP server.
|
2009-02-11 03:49:49 -05:00
|
|
|
#
|
|
|
|
# If no block given, it returns an array of sockets.
|
|
|
|
#
|
|
|
|
# If a block is given, the block is called with the sockets.
|
|
|
|
# The value of the block is returned.
|
|
|
|
# The sockets are closed when this method returns.
|
2009-02-10 07:38:16 -05:00
|
|
|
#
|
2013-04-23 23:55:02 -04:00
|
|
|
# If _port_ is zero, some port is chosen.
|
|
|
|
# But the chosen port is used for the all sockets.
|
2009-02-10 07:38:16 -05:00
|
|
|
#
|
2009-07-07 09:13:49 -04:00
|
|
|
# # UDP/IP echo server
|
2009-02-11 03:49:49 -05:00
|
|
|
# Socket.udp_server_sockets(0) {|sockets|
|
|
|
|
# p sockets.first.local_address.ip_port #=> 32963
|
|
|
|
# Socket.udp_server_loop_on(sockets) {|msg, msg_src|
|
|
|
|
# msg_src.reply msg
|
|
|
|
# }
|
2009-02-10 07:38:16 -05:00
|
|
|
# }
|
|
|
|
#
|
|
|
|
def self.udp_server_sockets(host=nil, port)
|
|
|
|
last_error = nil
|
|
|
|
sockets = []
|
|
|
|
|
|
|
|
ipv6_recvpktinfo = nil
|
|
|
|
if defined? Socket::AncillaryData
|
|
|
|
if defined? Socket::IPV6_RECVPKTINFO # RFC 3542
|
|
|
|
ipv6_recvpktinfo = Socket::IPV6_RECVPKTINFO
|
|
|
|
elsif defined? Socket::IPV6_PKTINFO # RFC 2292
|
|
|
|
ipv6_recvpktinfo = Socket::IPV6_PKTINFO
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local_addrs = Socket.ip_address_list
|
|
|
|
|
|
|
|
ip_list = []
|
|
|
|
Addrinfo.foreach(host, port, nil, :DGRAM, nil, Socket::AI_PASSIVE) {|ai|
|
|
|
|
if ai.ipv4? && ai.ip_address == "0.0.0.0"
|
|
|
|
local_addrs.each {|a|
|
2016-11-14 20:39:11 -05:00
|
|
|
next unless a.ipv4?
|
2009-02-10 07:38:16 -05:00
|
|
|
ip_list << Addrinfo.new(a.to_sockaddr, :INET, :DGRAM, 0);
|
|
|
|
}
|
|
|
|
elsif ai.ipv6? && ai.ip_address == "::" && !ipv6_recvpktinfo
|
|
|
|
local_addrs.each {|a|
|
2016-11-14 20:39:11 -05:00
|
|
|
next unless a.ipv6?
|
2009-02-10 07:38:16 -05:00
|
|
|
ip_list << Addrinfo.new(a.to_sockaddr, :INET6, :DGRAM, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ip_list << ai
|
|
|
|
end
|
|
|
|
}
|
2017-04-11 10:56:17 -04:00
|
|
|
ip_list.uniq!(&:to_sockaddr)
|
2009-02-10 07:38:16 -05:00
|
|
|
|
|
|
|
if port == 0
|
|
|
|
sockets = ip_sockets_port0(ip_list, false)
|
|
|
|
else
|
|
|
|
ip_list.each {|ip|
|
|
|
|
ai = Addrinfo.udp(ip.ip_address, port)
|
|
|
|
begin
|
|
|
|
s = ai.bind
|
|
|
|
rescue SystemCallError
|
|
|
|
last_error = $!
|
|
|
|
next
|
|
|
|
end
|
|
|
|
sockets << s
|
|
|
|
}
|
|
|
|
if sockets.empty?
|
|
|
|
raise last_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
sockets.each {|s|
|
|
|
|
ai = s.local_address
|
|
|
|
if ipv6_recvpktinfo && ai.ipv6? && ai.ip_address == "::"
|
|
|
|
s.setsockopt(:IPV6, ipv6_recvpktinfo, 1)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2009-02-11 03:39:57 -05:00
|
|
|
if block_given?
|
|
|
|
begin
|
|
|
|
yield sockets
|
|
|
|
ensure
|
2016-11-21 18:50:25 -05:00
|
|
|
sockets.each(&:close) if sockets
|
2009-02-11 03:39:57 -05:00
|
|
|
end
|
|
|
|
else
|
|
|
|
sockets
|
|
|
|
end
|
2009-02-10 07:38:16 -05:00
|
|
|
end
|
|
|
|
|
2009-10-08 11:01:57 -04:00
|
|
|
# :call-seq:
|
|
|
|
# Socket.udp_server_recv(sockets) {|msg, msg_src| ... }
|
|
|
|
#
|
|
|
|
# Receive UDP/IP packets from the given _sockets_.
|
|
|
|
# For each packet received, the block is called.
|
|
|
|
#
|
|
|
|
# The block receives _msg_ and _msg_src_.
|
|
|
|
# _msg_ is a string which is the payload of the received packet.
|
|
|
|
# _msg_src_ is a Socket::UDPSource object which is used for reply.
|
|
|
|
#
|
|
|
|
# Socket.udp_server_loop can be implemented using this method as follows.
|
|
|
|
#
|
|
|
|
# udp_server_sockets(host, port) {|sockets|
|
|
|
|
# loop {
|
|
|
|
# readable, _, _ = IO.select(sockets)
|
|
|
|
# udp_server_recv(readable) {|msg, msg_src| ... }
|
|
|
|
# }
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
def self.udp_server_recv(sockets)
|
|
|
|
sockets.each {|r|
|
2015-11-16 20:16:25 -05:00
|
|
|
msg, sender_addrinfo, _, *controls = r.recvmsg_nonblock(exception: false)
|
|
|
|
next if msg == :wait_readable
|
2009-10-08 11:01:57 -04:00
|
|
|
ai = r.local_address
|
|
|
|
if ai.ipv6? and pktinfo = controls.find {|c| c.cmsg_is?(:IPV6, :PKTINFO) }
|
|
|
|
ai = Addrinfo.udp(pktinfo.ipv6_pktinfo_addr.ip_address, ai.ip_port)
|
|
|
|
yield msg, UDPSource.new(sender_addrinfo, ai) {|reply_msg|
|
|
|
|
r.sendmsg reply_msg, 0, sender_addrinfo, pktinfo
|
|
|
|
}
|
|
|
|
else
|
|
|
|
yield msg, UDPSource.new(sender_addrinfo, ai) {|reply_msg|
|
|
|
|
r.send reply_msg, 0, sender_addrinfo
|
|
|
|
}
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2009-02-10 07:38:16 -05:00
|
|
|
# :call-seq:
|
|
|
|
# Socket.udp_server_loop_on(sockets) {|msg, msg_src| ... }
|
|
|
|
#
|
2009-07-07 09:13:49 -04:00
|
|
|
# Run UDP/IP server loop on the given sockets.
|
2009-02-10 07:38:16 -05:00
|
|
|
#
|
|
|
|
# The return value of Socket.udp_server_sockets is appropriate for the argument.
|
|
|
|
#
|
|
|
|
# It calls the block for each message received.
|
|
|
|
#
|
2009-10-08 11:01:57 -04:00
|
|
|
def self.udp_server_loop_on(sockets, &b) # :yield: msg, msg_src
|
2009-02-10 07:38:16 -05:00
|
|
|
loop {
|
|
|
|
readable, _, _ = IO.select(sockets)
|
2010-06-22 09:41:16 -04:00
|
|
|
udp_server_recv(readable, &b)
|
2009-02-10 07:38:16 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
# :call-seq:
|
|
|
|
# Socket.udp_server_loop(port) {|msg, msg_src| ... }
|
|
|
|
# Socket.udp_server_loop(host, port) {|msg, msg_src| ... }
|
|
|
|
#
|
2009-07-07 09:13:49 -04:00
|
|
|
# creates a UDP/IP server on _port_ and calls the block for each message arrived.
|
2009-02-10 07:38:16 -05:00
|
|
|
# The block is called with the message and its source information.
|
|
|
|
#
|
|
|
|
# This method allocates sockets internally using _port_.
|
|
|
|
# If _host_ is specified, it is used conjunction with _port_ to determine the server addresses.
|
|
|
|
#
|
|
|
|
# The _msg_ is a string.
|
|
|
|
#
|
|
|
|
# The _msg_src_ is a Socket::UDPSource object.
|
|
|
|
# It is used for reply.
|
|
|
|
#
|
2009-07-07 09:13:49 -04:00
|
|
|
# # UDP/IP echo server.
|
2009-02-10 07:38:16 -05:00
|
|
|
# Socket.udp_server_loop(9261) {|msg, msg_src|
|
|
|
|
# msg_src.reply msg
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
def self.udp_server_loop(host=nil, port, &b) # :yield: message, message_source
|
2009-02-11 03:39:57 -05:00
|
|
|
udp_server_sockets(host, port) {|sockets|
|
|
|
|
udp_server_loop_on(sockets, &b)
|
|
|
|
}
|
2009-02-10 07:38:16 -05:00
|
|
|
end
|
|
|
|
|
2009-07-07 09:13:49 -04:00
|
|
|
# UDP/IP address information used by Socket.udp_server_loop.
|
2009-02-10 07:38:16 -05:00
|
|
|
class UDPSource
|
2013-04-23 23:55:02 -04:00
|
|
|
# +remote_address+ is an Addrinfo object.
|
2011-08-15 19:08:39 -04:00
|
|
|
#
|
2013-04-23 23:55:02 -04:00
|
|
|
# +local_address+ is an Addrinfo object.
|
2011-08-15 19:08:39 -04:00
|
|
|
#
|
|
|
|
# +reply_proc+ is a Proc used to send reply back to the source.
|
2009-02-10 07:38:16 -05:00
|
|
|
def initialize(remote_address, local_address, &reply_proc)
|
|
|
|
@remote_address = remote_address
|
|
|
|
@local_address = local_address
|
|
|
|
@reply_proc = reply_proc
|
|
|
|
end
|
|
|
|
|
2011-08-15 19:08:39 -04:00
|
|
|
# Address of the source
|
|
|
|
attr_reader :remote_address
|
|
|
|
|
|
|
|
# Local address
|
|
|
|
attr_reader :local_address
|
|
|
|
|
|
|
|
def inspect # :nodoc:
|
2015-11-14 08:15:33 -05:00
|
|
|
"\#<#{self.class}: #{@remote_address.inspect_sockaddr} to #{@local_address.inspect_sockaddr}>".dup
|
2009-02-10 07:38:16 -05:00
|
|
|
end
|
|
|
|
|
2011-08-15 19:08:39 -04:00
|
|
|
# Sends the String +msg+ to the source
|
2009-02-10 07:38:16 -05:00
|
|
|
def reply(msg)
|
|
|
|
@reply_proc.call msg
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-01-17 08:04:03 -05:00
|
|
|
# creates a new socket connected to path using UNIX socket socket.
|
|
|
|
#
|
|
|
|
# If a block is given, the block is called with the socket.
|
|
|
|
# The value of the block is returned.
|
|
|
|
# The socket is closed when this method returns.
|
|
|
|
#
|
|
|
|
# If no block is given, the socket is returned.
|
|
|
|
#
|
|
|
|
# # talk to /tmp/sock socket.
|
|
|
|
# Socket.unix("/tmp/sock") {|sock|
|
|
|
|
# t = Thread.new { IO.copy_stream(sock, STDOUT) }
|
|
|
|
# IO.copy_stream(STDIN, sock)
|
|
|
|
# t.join
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
def self.unix(path) # :yield: socket
|
2009-02-05 06:01:43 -05:00
|
|
|
addr = Addrinfo.unix(path)
|
2009-01-17 08:04:03 -05:00
|
|
|
sock = addr.connect
|
|
|
|
if block_given?
|
|
|
|
begin
|
|
|
|
yield sock
|
|
|
|
ensure
|
2016-11-14 20:39:11 -05:00
|
|
|
sock.close
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
else
|
|
|
|
sock
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-03-22 05:45:57 -04:00
|
|
|
# creates a UNIX server socket on _path_
|
2009-02-02 18:36:43 -05:00
|
|
|
#
|
2009-02-11 03:49:49 -05:00
|
|
|
# If no block given, it returns a listening socket.
|
2009-02-02 18:36:43 -05:00
|
|
|
#
|
2009-02-11 03:13:20 -05:00
|
|
|
# If a block is given, it is called with the socket and the block value is returned.
|
|
|
|
# When the block exits, the socket is closed and the socket file is removed.
|
|
|
|
#
|
2009-02-02 18:36:43 -05:00
|
|
|
# socket = Socket.unix_server_socket("/tmp/s")
|
2009-02-11 03:13:20 -05:00
|
|
|
# p socket #=> #<Socket:fd 3>
|
|
|
|
# p socket.local_address #=> #<Addrinfo: /tmp/s SOCK_STREAM>
|
|
|
|
#
|
|
|
|
# Socket.unix_server_socket("/tmp/sock") {|s|
|
|
|
|
# p s #=> #<Socket:fd 3>
|
|
|
|
# p s.local_address #=> # #<Addrinfo: /tmp/sock SOCK_STREAM>
|
|
|
|
# }
|
2009-02-02 18:36:43 -05:00
|
|
|
#
|
|
|
|
def self.unix_server_socket(path)
|
2016-11-14 20:39:11 -05:00
|
|
|
unless unix_socket_abstract_name?(path)
|
2013-01-25 03:15:26 -05:00
|
|
|
begin
|
|
|
|
st = File.lstat(path)
|
|
|
|
rescue Errno::ENOENT
|
|
|
|
end
|
2015-12-14 03:05:35 -05:00
|
|
|
if st&.socket? && st.owned?
|
2013-01-25 03:15:26 -05:00
|
|
|
File.unlink path
|
|
|
|
end
|
2009-02-02 18:36:43 -05:00
|
|
|
end
|
2009-02-11 02:51:53 -05:00
|
|
|
s = Addrinfo.unix(path).listen
|
|
|
|
if block_given?
|
|
|
|
begin
|
|
|
|
yield s
|
|
|
|
ensure
|
2016-11-14 20:39:11 -05:00
|
|
|
s.close
|
|
|
|
unless unix_socket_abstract_name?(path)
|
2013-01-25 03:15:26 -05:00
|
|
|
File.unlink path
|
|
|
|
end
|
2009-02-11 02:51:53 -05:00
|
|
|
end
|
|
|
|
else
|
|
|
|
s
|
|
|
|
end
|
2009-02-02 18:36:43 -05:00
|
|
|
end
|
|
|
|
|
2013-01-25 03:15:26 -05:00
|
|
|
class << self
|
|
|
|
private
|
|
|
|
|
|
|
|
def unix_socket_abstract_name?(path)
|
2013-01-30 23:59:31 -05:00
|
|
|
/linux/ =~ RUBY_PLATFORM && /\A(\0|\z)/ =~ path
|
2013-01-25 03:15:26 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-01-17 08:04:03 -05:00
|
|
|
# creates a UNIX socket server on _path_.
|
|
|
|
# It calls the block for each socket accepted.
|
|
|
|
#
|
|
|
|
# If _host_ is specified, it is used with _port_ to determine the server ports.
|
|
|
|
#
|
|
|
|
# The socket is *not* closed when the block returns.
|
|
|
|
# So application should close it.
|
|
|
|
#
|
|
|
|
# This method deletes the socket file pointed by _path_ at first if
|
|
|
|
# the file is a socket file and it is owned by the user of the application.
|
|
|
|
# This is safe only if the directory of _path_ is not changed by a malicious user.
|
|
|
|
# So don't use /tmp/malicious-users-directory/socket.
|
|
|
|
# Note that /tmp/socket and /tmp/your-private-directory/socket is safe assuming that /tmp has sticky bit.
|
|
|
|
#
|
|
|
|
# # Sequential echo server.
|
|
|
|
# # It services only one client at a time.
|
|
|
|
# Socket.unix_server_loop("/tmp/sock") {|sock, client_addrinfo|
|
|
|
|
# begin
|
|
|
|
# IO.copy_stream(sock, sock)
|
|
|
|
# ensure
|
|
|
|
# sock.close
|
|
|
|
# end
|
|
|
|
# }
|
|
|
|
#
|
2009-02-02 18:36:43 -05:00
|
|
|
def self.unix_server_loop(path, &b) # :yield: socket, client_addrinfo
|
2009-02-11 03:03:17 -05:00
|
|
|
unix_server_socket(path) {|serv|
|
|
|
|
accept_loop(serv, &b)
|
|
|
|
}
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
|
socket: Socket#connect_nonblock avoids arg parsing with C API
* ext/socket/socket.c (sock_connect_nonblock):
avoid argument parsing in C.
[ruby-core:71439] [Feature #11339]
* ext/socket/lib/socket.rb (Socket#connect_nonblock):
new wrapper for private method, move RDoc
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
connect_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(connect_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
c = Socket.new(Socket::AF_UNIX, Socket::SOCK_STREAM)
while c.connect_nonblock(addr, exception: false) == :wait_writable
c.wait_writable
end
s.accept.close
c.close
end
end
-----------------------------------------------------------
raw data:
[["connect_nonblock",
[[4.014209181070328,
3.8479955345392227,
3.981342639774084,
4.471840236335993,
3.7867715656757355],
[3.639054525643587,
3.58337214961648,
3.525284394621849,
3.52646067738533,
3.511393066495657]]]]
Elapsed time: 37.889623996 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
connect_nonblock 3.787 3.511
Speedup ratio: compare with the result of `a' (greater is better)
name b
connect_nonblock 1.078
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:34:37 -05:00
|
|
|
# call-seq:
|
|
|
|
# socket.connect_nonblock(remote_sockaddr, [options]) => 0
|
|
|
|
#
|
|
|
|
# Requests a connection to be made on the given +remote_sockaddr+ after
|
|
|
|
# O_NONBLOCK is set for the underlying file descriptor.
|
|
|
|
# Returns 0 if successful, otherwise an exception is raised.
|
|
|
|
#
|
|
|
|
# === Parameter
|
|
|
|
# # +remote_sockaddr+ - the +struct+ sockaddr contained in a string or Addrinfo object
|
|
|
|
#
|
|
|
|
# === Example:
|
|
|
|
# # Pull down Google's web page
|
|
|
|
# require 'socket'
|
|
|
|
# include Socket::Constants
|
|
|
|
# socket = Socket.new(AF_INET, SOCK_STREAM, 0)
|
|
|
|
# sockaddr = Socket.sockaddr_in(80, 'www.google.com')
|
|
|
|
# begin # emulate blocking connect
|
|
|
|
# socket.connect_nonblock(sockaddr)
|
|
|
|
# rescue IO::WaitWritable
|
|
|
|
# IO.select(nil, [socket]) # wait 3-way handshake completion
|
|
|
|
# begin
|
|
|
|
# socket.connect_nonblock(sockaddr) # check connection failure
|
|
|
|
# rescue Errno::EISCONN
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# socket.write("GET / HTTP/1.0\r\n\r\n")
|
|
|
|
# results = socket.read
|
|
|
|
#
|
|
|
|
# Refer to Socket#connect for the exceptions that may be thrown if the call
|
|
|
|
# to _connect_nonblock_ fails.
|
|
|
|
#
|
|
|
|
# Socket#connect_nonblock may raise any error corresponding to connect(2) failure,
|
|
|
|
# including Errno::EINPROGRESS.
|
|
|
|
#
|
|
|
|
# If the exception is Errno::EINPROGRESS,
|
|
|
|
# it is extended by IO::WaitWritable.
|
|
|
|
# So IO::WaitWritable can be used to rescue the exceptions for retrying connect_nonblock.
|
|
|
|
#
|
2017-02-22 21:00:28 -05:00
|
|
|
# By specifying a keyword argument _exception_ to +false+, you can indicate
|
socket: Socket#connect_nonblock avoids arg parsing with C API
* ext/socket/socket.c (sock_connect_nonblock):
avoid argument parsing in C.
[ruby-core:71439] [Feature #11339]
* ext/socket/lib/socket.rb (Socket#connect_nonblock):
new wrapper for private method, move RDoc
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
connect_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(connect_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
c = Socket.new(Socket::AF_UNIX, Socket::SOCK_STREAM)
while c.connect_nonblock(addr, exception: false) == :wait_writable
c.wait_writable
end
s.accept.close
c.close
end
end
-----------------------------------------------------------
raw data:
[["connect_nonblock",
[[4.014209181070328,
3.8479955345392227,
3.981342639774084,
4.471840236335993,
3.7867715656757355],
[3.639054525643587,
3.58337214961648,
3.525284394621849,
3.52646067738533,
3.511393066495657]]]]
Elapsed time: 37.889623996 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
connect_nonblock 3.787 3.511
Speedup ratio: compare with the result of `a' (greater is better)
name b
connect_nonblock 1.078
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:34:37 -05:00
|
|
|
# that connect_nonblock should not raise an IO::WaitWritable exception, but
|
2017-02-22 21:40:17 -05:00
|
|
|
# return the symbol +:wait_writable+ instead.
|
socket: Socket#connect_nonblock avoids arg parsing with C API
* ext/socket/socket.c (sock_connect_nonblock):
avoid argument parsing in C.
[ruby-core:71439] [Feature #11339]
* ext/socket/lib/socket.rb (Socket#connect_nonblock):
new wrapper for private method, move RDoc
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
connect_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(connect_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
c = Socket.new(Socket::AF_UNIX, Socket::SOCK_STREAM)
while c.connect_nonblock(addr, exception: false) == :wait_writable
c.wait_writable
end
s.accept.close
c.close
end
end
-----------------------------------------------------------
raw data:
[["connect_nonblock",
[[4.014209181070328,
3.8479955345392227,
3.981342639774084,
4.471840236335993,
3.7867715656757355],
[3.639054525643587,
3.58337214961648,
3.525284394621849,
3.52646067738533,
3.511393066495657]]]]
Elapsed time: 37.889623996 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
connect_nonblock 3.787 3.511
Speedup ratio: compare with the result of `a' (greater is better)
name b
connect_nonblock 1.078
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:34:37 -05:00
|
|
|
#
|
|
|
|
# === See
|
|
|
|
# # Socket#connect
|
|
|
|
def connect_nonblock(addr, exception: true)
|
|
|
|
__connect_nonblock(addr, exception)
|
|
|
|
end
|
2009-01-17 08:04:03 -05:00
|
|
|
end
|
|
|
|
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
class UDPSocket < IPSocket
|
|
|
|
|
|
|
|
# call-seq:
|
2015-11-16 21:29:19 -05:00
|
|
|
# udpsocket.recvfrom_nonblock(maxlen [, flags[, outbuf [, options]]]) => [mesg, sender_inet_addr]
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
#
|
|
|
|
# Receives up to _maxlen_ bytes from +udpsocket+ using recvfrom(2) after
|
|
|
|
# O_NONBLOCK is set for the underlying file descriptor.
|
|
|
|
# _flags_ is zero or more of the +MSG_+ options.
|
|
|
|
# The first element of the results, _mesg_, is the data received.
|
|
|
|
# The second element, _sender_inet_addr_, is an array to represent the sender address.
|
|
|
|
#
|
|
|
|
# When recvfrom(2) returns 0,
|
|
|
|
# Socket#recvfrom_nonblock returns an empty string as data.
|
|
|
|
# It means an empty packet.
|
|
|
|
#
|
|
|
|
# === Parameters
|
|
|
|
# * +maxlen+ - the number of bytes to receive from the socket
|
|
|
|
# * +flags+ - zero or more of the +MSG_+ options
|
2015-11-16 21:29:19 -05:00
|
|
|
# * +outbuf+ - destination String buffer
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
# * +options+ - keyword hash, supporting `exception: false`
|
|
|
|
#
|
|
|
|
# === Example
|
|
|
|
# require 'socket'
|
|
|
|
# s1 = UDPSocket.new
|
|
|
|
# s1.bind("127.0.0.1", 0)
|
|
|
|
# s2 = UDPSocket.new
|
|
|
|
# s2.bind("127.0.0.1", 0)
|
|
|
|
# s2.connect(*s1.addr.values_at(3,1))
|
|
|
|
# s1.connect(*s2.addr.values_at(3,1))
|
|
|
|
# s1.send "aaa", 0
|
|
|
|
# begin # emulate blocking recvfrom
|
|
|
|
# p s2.recvfrom_nonblock(10) #=> ["aaa", ["AF_INET", 33302, "localhost.localdomain", "127.0.0.1"]]
|
|
|
|
# rescue IO::WaitReadable
|
|
|
|
# IO.select([s2])
|
|
|
|
# retry
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Refer to Socket#recvfrom for the exceptions that may be thrown if the call
|
|
|
|
# to _recvfrom_nonblock_ fails.
|
|
|
|
#
|
|
|
|
# UDPSocket#recvfrom_nonblock may raise any error corresponding to recvfrom(2) failure,
|
|
|
|
# including Errno::EWOULDBLOCK.
|
|
|
|
#
|
|
|
|
# If the exception is Errno::EWOULDBLOCK or Errno::EAGAIN,
|
|
|
|
# it is extended by IO::WaitReadable.
|
|
|
|
# So IO::WaitReadable can be used to rescue the exceptions for retrying recvfrom_nonblock.
|
|
|
|
#
|
2017-02-22 21:00:28 -05:00
|
|
|
# By specifying a keyword argument _exception_ to +false+, you can indicate
|
2017-02-22 20:54:13 -05:00
|
|
|
# that recvfrom_nonblock should not raise an IO::WaitReadable exception, but
|
2017-02-22 21:40:17 -05:00
|
|
|
# return the symbol +:wait_readable+ instead.
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
#
|
|
|
|
# === See
|
|
|
|
# * Socket#recvfrom
|
2015-11-16 21:29:19 -05:00
|
|
|
def recvfrom_nonblock(len, flag = 0, outbuf = nil, exception: true)
|
|
|
|
__recvfrom_nonblock(len, flag, outbuf, exception)
|
socket: avoid arg parsing in rsock_s_recvfrom_nonblock
* ext/socket/init.c (rsock_s_recvfrom_nonblock):
avoid arg parsing with C API
[ruby-core:71439] [Feature #11339]
* ext/socket/basicsocket.c (bsock_recv_nonblock):
adjust for above change, make private
* ext/socket/socket.c (sock_recvfrom_nonblock): ditto
* ext/socket/udpsocket.c (udp_recvfrom_nonblock): ditto
* ext/socket/lib/socket.rb (BasicSocket#recv_nonblock):
new wrapper for private method, move RDoc
(Socket#recvfrom_nonblock): ditto
(UDPSocket#recvfrom_nonblock): ditto
Note, not adding bm_recv_nonblock.rb to benchmark/ directory
since it is non-portable. It is only in this commit message.
Benchmark results + code
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52540) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52540) [x86_64-linux]
-----------------------------------------------------------
recv_nonblock
require 'socket'
nr = 1000000
msg = 'hello world'
buf = ''
size = msg.bytesize
UNIXSocket.pair(:SEQPACKET) do |a, b|
nr.times do
a.sendmsg(msg)
b.recv_nonblock(size, 0, buf, exception: false)
end
end
-----------------------------------------------------------
raw data:
[["recv_nonblock",
[[1.83511221408844,
1.8703329525887966,
1.8448856547474861,
1.859263762831688,
1.8331583738327026],
[1.5637447573244572,
1.4062932096421719,
1.4247371144592762,
1.4108827747404575,
1.4802536629140377]]]]
Elapsed time: 16.530452496 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
recv_nonblock 1.833 1.406
Speedup ratio: compare with the result of `a' (greater is better)
name b
recv_nonblock 1.304
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52598 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:25:03 -05:00
|
|
|
end
|
|
|
|
end
|
socket: avoid arg parsing in rsock_s_accept_nonblock
* ext/socket/init.c (rsock_s_accept_nonblock): avoid parsing args
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototype
* ext/socket/socket.c (sock_accept_nonblock): make private
* ext/socket/tcpserver.c (tcp_accept_nonblock): ditto
* ext/socket/unixserver.c (unix_accept_nonblock): ditto
* ext/socket/lib/socket.rb (Socket#accept_nonblock):
implement as wrapper, move RDoc
(TCPServer#accept_nonblock): ditto
(UNIXServer#accept_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
accept_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(accept_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
s.accept_nonblock(exception: false)
c = UNIXSocket.new(path)
s.wait_readable
s.accept_nonblock(exception: false).close
c.close
end
end
-----------------------------------------------------------
raw data:
[["accept_nonblock",
[[4.807877402752638,
4.930681671947241,
4.738454818725586,
4.69268161803484,
4.684675686061382],
[4.253904823213816,
4.255124930292368,
4.295955188572407,
4.248479191213846,
4.213303029537201]]]]
Elapsed time: 45.123040065 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
accept_nonblock 4.685 4.213
Speedup ratio: compare with the result of `a' (greater is better)
name b
accept_nonblock 1.112
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:40:15 -05:00
|
|
|
|
|
|
|
class TCPServer < TCPSocket
|
|
|
|
|
|
|
|
# call-seq:
|
|
|
|
# tcpserver.accept_nonblock([options]) => tcpsocket
|
|
|
|
#
|
|
|
|
# Accepts an incoming connection using accept(2) after
|
|
|
|
# O_NONBLOCK is set for the underlying file descriptor.
|
|
|
|
# It returns an accepted TCPSocket for the incoming connection.
|
|
|
|
#
|
|
|
|
# === Example
|
|
|
|
# require 'socket'
|
|
|
|
# serv = TCPServer.new(2202)
|
|
|
|
# begin # emulate blocking accept
|
|
|
|
# sock = serv.accept_nonblock
|
|
|
|
# rescue IO::WaitReadable, Errno::EINTR
|
|
|
|
# IO.select([serv])
|
|
|
|
# retry
|
|
|
|
# end
|
|
|
|
# # sock is an accepted socket.
|
|
|
|
#
|
|
|
|
# Refer to Socket#accept for the exceptions that may be thrown if the call
|
|
|
|
# to TCPServer#accept_nonblock fails.
|
|
|
|
#
|
|
|
|
# TCPServer#accept_nonblock may raise any error corresponding to accept(2) failure,
|
|
|
|
# including Errno::EWOULDBLOCK.
|
|
|
|
#
|
|
|
|
# If the exception is Errno::EWOULDBLOCK, Errno::EAGAIN, Errno::ECONNABORTED, Errno::EPROTO,
|
|
|
|
# it is extended by IO::WaitReadable.
|
|
|
|
# So IO::WaitReadable can be used to rescue the exceptions for retrying accept_nonblock.
|
|
|
|
#
|
2017-02-22 21:00:28 -05:00
|
|
|
# By specifying a keyword argument _exception_ to +false+, you can indicate
|
socket: avoid arg parsing in rsock_s_accept_nonblock
* ext/socket/init.c (rsock_s_accept_nonblock): avoid parsing args
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototype
* ext/socket/socket.c (sock_accept_nonblock): make private
* ext/socket/tcpserver.c (tcp_accept_nonblock): ditto
* ext/socket/unixserver.c (unix_accept_nonblock): ditto
* ext/socket/lib/socket.rb (Socket#accept_nonblock):
implement as wrapper, move RDoc
(TCPServer#accept_nonblock): ditto
(UNIXServer#accept_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
accept_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(accept_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
s.accept_nonblock(exception: false)
c = UNIXSocket.new(path)
s.wait_readable
s.accept_nonblock(exception: false).close
c.close
end
end
-----------------------------------------------------------
raw data:
[["accept_nonblock",
[[4.807877402752638,
4.930681671947241,
4.738454818725586,
4.69268161803484,
4.684675686061382],
[4.253904823213816,
4.255124930292368,
4.295955188572407,
4.248479191213846,
4.213303029537201]]]]
Elapsed time: 45.123040065 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
accept_nonblock 4.685 4.213
Speedup ratio: compare with the result of `a' (greater is better)
name b
accept_nonblock 1.112
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:40:15 -05:00
|
|
|
# that accept_nonblock should not raise an IO::WaitReadable exception, but
|
2017-02-22 21:40:17 -05:00
|
|
|
# return the symbol +:wait_readable+ instead.
|
socket: avoid arg parsing in rsock_s_accept_nonblock
* ext/socket/init.c (rsock_s_accept_nonblock): avoid parsing args
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototype
* ext/socket/socket.c (sock_accept_nonblock): make private
* ext/socket/tcpserver.c (tcp_accept_nonblock): ditto
* ext/socket/unixserver.c (unix_accept_nonblock): ditto
* ext/socket/lib/socket.rb (Socket#accept_nonblock):
implement as wrapper, move RDoc
(TCPServer#accept_nonblock): ditto
(UNIXServer#accept_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
accept_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(accept_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
s.accept_nonblock(exception: false)
c = UNIXSocket.new(path)
s.wait_readable
s.accept_nonblock(exception: false).close
c.close
end
end
-----------------------------------------------------------
raw data:
[["accept_nonblock",
[[4.807877402752638,
4.930681671947241,
4.738454818725586,
4.69268161803484,
4.684675686061382],
[4.253904823213816,
4.255124930292368,
4.295955188572407,
4.248479191213846,
4.213303029537201]]]]
Elapsed time: 45.123040065 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
accept_nonblock 4.685 4.213
Speedup ratio: compare with the result of `a' (greater is better)
name b
accept_nonblock 1.112
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:40:15 -05:00
|
|
|
#
|
|
|
|
# === See
|
|
|
|
# * TCPServer#accept
|
|
|
|
# * Socket#accept
|
|
|
|
def accept_nonblock(exception: true)
|
|
|
|
__accept_nonblock(exception)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class UNIXServer < UNIXSocket
|
|
|
|
# call-seq:
|
|
|
|
# unixserver.accept_nonblock([options]) => unixsocket
|
|
|
|
#
|
|
|
|
# Accepts an incoming connection using accept(2) after
|
|
|
|
# O_NONBLOCK is set for the underlying file descriptor.
|
|
|
|
# It returns an accepted UNIXSocket for the incoming connection.
|
|
|
|
#
|
|
|
|
# === Example
|
|
|
|
# require 'socket'
|
|
|
|
# serv = UNIXServer.new("/tmp/sock")
|
|
|
|
# begin # emulate blocking accept
|
|
|
|
# sock = serv.accept_nonblock
|
|
|
|
# rescue IO::WaitReadable, Errno::EINTR
|
|
|
|
# IO.select([serv])
|
|
|
|
# retry
|
|
|
|
# end
|
|
|
|
# # sock is an accepted socket.
|
|
|
|
#
|
|
|
|
# Refer to Socket#accept for the exceptions that may be thrown if the call
|
|
|
|
# to UNIXServer#accept_nonblock fails.
|
|
|
|
#
|
|
|
|
# UNIXServer#accept_nonblock may raise any error corresponding to accept(2) failure,
|
|
|
|
# including Errno::EWOULDBLOCK.
|
|
|
|
#
|
|
|
|
# If the exception is Errno::EWOULDBLOCK, Errno::EAGAIN, Errno::ECONNABORTED or Errno::EPROTO,
|
|
|
|
# it is extended by IO::WaitReadable.
|
|
|
|
# So IO::WaitReadable can be used to rescue the exceptions for retrying accept_nonblock.
|
|
|
|
#
|
2017-02-22 21:00:28 -05:00
|
|
|
# By specifying a keyword argument _exception_ to +false+, you can indicate
|
socket: avoid arg parsing in rsock_s_accept_nonblock
* ext/socket/init.c (rsock_s_accept_nonblock): avoid parsing args
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototype
* ext/socket/socket.c (sock_accept_nonblock): make private
* ext/socket/tcpserver.c (tcp_accept_nonblock): ditto
* ext/socket/unixserver.c (unix_accept_nonblock): ditto
* ext/socket/lib/socket.rb (Socket#accept_nonblock):
implement as wrapper, move RDoc
(TCPServer#accept_nonblock): ditto
(UNIXServer#accept_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
accept_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(accept_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
s.accept_nonblock(exception: false)
c = UNIXSocket.new(path)
s.wait_readable
s.accept_nonblock(exception: false).close
c.close
end
end
-----------------------------------------------------------
raw data:
[["accept_nonblock",
[[4.807877402752638,
4.930681671947241,
4.738454818725586,
4.69268161803484,
4.684675686061382],
[4.253904823213816,
4.255124930292368,
4.295955188572407,
4.248479191213846,
4.213303029537201]]]]
Elapsed time: 45.123040065 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
accept_nonblock 4.685 4.213
Speedup ratio: compare with the result of `a' (greater is better)
name b
accept_nonblock 1.112
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:40:15 -05:00
|
|
|
# that accept_nonblock should not raise an IO::WaitReadable exception, but
|
2017-02-22 21:40:17 -05:00
|
|
|
# return the symbol +:wait_readable+ instead.
|
socket: avoid arg parsing in rsock_s_accept_nonblock
* ext/socket/init.c (rsock_s_accept_nonblock): avoid parsing args
[ruby-core:71439] [Feature #11339]
* ext/socket/rubysocket.h: adjust prototype
* ext/socket/socket.c (sock_accept_nonblock): make private
* ext/socket/tcpserver.c (tcp_accept_nonblock): ditto
* ext/socket/unixserver.c (unix_accept_nonblock): ditto
* ext/socket/lib/socket.rb (Socket#accept_nonblock):
implement as wrapper, move RDoc
(TCPServer#accept_nonblock): ditto
(UNIXServer#accept_nonblock): ditto
target 0: a (ruby 2.3.0dev (2015-11-12 trunk 52550) [x86_64-linux])
target 1: b (ruby 2.3.0dev (2015-11-12 avoid-kwarg-capi 52550) [x86_64-linux]
-----------------------------------------------------------
accept_nonblock
require 'tempfile'
require 'socket'
require 'io/wait'
nr = 500000
Tempfile.create(%w(accept_nonblock .sock)) do |tmp|
path = tmp.path
File.unlink(path)
s = UNIXServer.new(path)
addr = Socket.sockaddr_un(path).freeze
nr.times do
s.accept_nonblock(exception: false)
c = UNIXSocket.new(path)
s.wait_readable
s.accept_nonblock(exception: false).close
c.close
end
end
-----------------------------------------------------------
raw data:
[["accept_nonblock",
[[4.807877402752638,
4.930681671947241,
4.738454818725586,
4.69268161803484,
4.684675686061382],
[4.253904823213816,
4.255124930292368,
4.295955188572407,
4.248479191213846,
4.213303029537201]]]]
Elapsed time: 45.123040065 (sec)
-----------------------------------------------------------
benchmark results:
minimum results in each 5 measurements.
Execution time (sec)
name a b
accept_nonblock 4.685 4.213
Speedup ratio: compare with the result of `a' (greater is better)
name b
accept_nonblock 1.112
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-11-16 18:40:15 -05:00
|
|
|
#
|
|
|
|
# === See
|
|
|
|
# * UNIXServer#accept
|
|
|
|
# * Socket#accept
|
|
|
|
def accept_nonblock(exception: true)
|
|
|
|
__accept_nonblock(exception)
|
|
|
|
end
|
2015-11-16 23:55:36 -05:00
|
|
|
end if defined?(UNIXSocket)
|