NIO 看破也说破(二)—— Java 中的两种BIO
上一篇Linux/IO基础我们得出结论,提供网络能力的不是Java是Linux操作系统。本文我们通过分析系统函数调用,观察不同jdk版本中BIO的实现差别。
核心结论:
不同版本jdk实现方式不一致
如果不给socket设置nonblocking,accept会阻塞直到数据到达
poll的调用是阻塞的,直到注册的event发生后,返回发生事件的fd

环境准备
测试代码
import java.io.IOException;
import java.net.ServerSocket;
public class BIOServer {
public static void main(String[] args) throws IOException {
ServerSocket server = new ServerSocket(8080);
while (true) {
server.accept();
System.out.println("===========");
}
}
}
测试步骤
Java5
strace调用栈
//开启3号fd
3188 socket(AF_INET, SOCK_STREAM, IPPROTO_IP) = 3
3189 setsockopt(3, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
//对fd3 绑定8080端口,返回成功
3190 bind(3, {sa_family=AF_INET, sin_port=htons(8080), sin_addr=inet_addr("0.0.0.0")}, 16) = 0
//监听fd3
3191 listen(3, 50) = 0
3197 gettimeofday({tv_sec=1588789268, tv_usec=224692}, NULL) = 0
3198 gettimeofday({tv_sec=1588789268, tv_usec=224993}, NULL) = 0
3199 gettimeofday({tv_sec=1588789268, tv_usec=225263}, NULL) = 0
//从fd3中接受到新的连接,放到fd5中
3200 accept(3, {sa_family=AF_INET, sin_port=htons(40862), sin_addr=inet_addr("127.0.0.1")}, [16]) = 5
3199 gettimeofday({tv_sec=1588789268, tv_usec=225263}, NULL) = 0
3201 gettimeofday({tv_sec=1588789270, tv_usec=619848}, NULL) = 0
3208 gettimeofday({tv_sec=1588789270, tv_usec=623749}, NULL) = 0
3209 write(1, "===========", 11) = 11
3210 write(1, "\n", 1) = 1
3211 accept(3, 0xffe9a4ec, [16]) = ? ERESTARTSYS (To be restarted if SA_RESTART is set)
3212 --- SIGINT {si_signo=SIGINT, si_code=SI_KERNEL} ---
3213 futex(0xf79429c0, FUTEX_WAKE_PRIVATE, 1) = 1
3214 rt_sigreturn({mask=[QUIT]}) = 102
3215 accept(3, ) = ?
If no pending connections are present on the queue, and the socket is not marked as nonblocking, accept() blocks the caller until a
connection is present. If the socket is marked nonblocking and no pending connections are present on the queue, accept() fails with
the error EAGAIN or EWOULDBLOCK.
结论
Java6
strace调用栈
// 打开6号fd
13614 socket(AF_INET, SOCK_STREAM, IPPROTO_IP) = 6
13615 fcntl(6, F_GETFL) = 0x2 (flags O_RDWR)
13616 fcntl(6, F_SETFL, O_RDWR|O_NONBLOCK) = 0
13617 setsockopt(6, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
13618 gettimeofday({tv_sec=1588790897, tv_usec=258322}, NULL) = 0
13619 gettimeofday({tv_sec=1588790897, tv_usec=277413}, NULL) = 0
13620 gettimeofday({tv_sec=1588790897, tv_usec=277603}, NULL) = 0
//对fd6绑定8080
13621 bind(6, {sa_family=AF_INET, sin_port=htons(8080), sin_addr=inet_addr("0.0.0.0")}, 16) = 0
//监听
13622 listen(6, 50) = 0
13623 gettimeofday({tv_sec=1588790897, tv_usec=278363}, NULL) = 0
13624 gettimeofday({tv_sec=1588790897, tv_usec=287641}, NULL) = 0
//先把6号fd放入poll中监听,返回1个POLLIN的fd
13625 poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
//调用accept把fd6中的内容读出来
13626 accept(6, {sa_family=AF_INET, sin_port=htons(40868), sin_addr=inet_addr("127.0.0.1")}, [16]) = 8
13627 fcntl(8, F_GETFL) = 0x2 (flags O_RDWR)
13628 fcntl(8, F_SETFL, O_RDWR) = 0
13629 gettimeofday({tv_sec=1588790899, tv_usec=835776}, NULL) = 0
13630 gettimeofday({tv_sec=1588790899, tv_usec=837031}, NULL) = 0
13631 gettimeofday({tv_sec=1588790899, tv_usec=837294}, NULL) = 0
13632 gettimeofday({tv_sec=1588790899, tv_usec=837659}, NULL) = 0
13633 gettimeofday({tv_sec=1588790899, tv_usec=838010}, NULL) = 0
13634 write(1, "===========", 11) = 11
13635 write(1, "\n", 1) = 1
// 读取完数据后,再次吧6号fd放入到poll中等待数据
13636 poll([{fd=6, events=POLLIN|POLLERR}], 1, -1 ) = ?
13637 +++ exited with 130 +++
NAME
poll, ppoll - wait for some event on a file descriptor
SYNOPSIS
#include
int poll(struct pollfd *fds, nfds_t nfds, int timeout);
DESCRIPTION
poll() performs a similar task to select(2): it waits for one of a set of file descriptors to become ready to perform I/O.
…………
…………
…………
If none of the events requested (and no error) has occurred for any of the file descriptors, then poll() blocks until one of the
events occurs.
The timeout argument specifies the minimum number of milliseconds that poll() will block. (This interval will be rounded up to the
system clock granularity, and kernel scheduling delays mean that the blocking interval may overrun by a small amount.) Specifying a
negative value in timeout means an infinite timeout. Specifying a timeout of zero causes poll() to return immediately, even if no
file descriptors are ready.
验证
[root@f00e68119764 tmp]# tail -f out.3257
clock_gettime(CLOCK_MONOTONIC, {tv_sec=49698, tv_nsec=95678478}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=49698, tv_nsec=95961778}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=49698, tv_nsec=96243778}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=49698, tv_nsec=96531678}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=49698, tv_nsec=96818478}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=49698, tv_nsec=97112578}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=49698, tv_nsec=97404578}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=49698, tv_nsec=97692278}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=49698, tv_nsec=98007178}) = 0
poll([{fd=5, events=POLLIN|POLLERR}], 1, -1
18228 accept(5, {sa_family=AF_INET, sin_port=htons(40884), sin_addr=inet_addr("127.0.0.1")}, [16]) = 6
18229 fcntl(6, F_GETFL) = 0x2 (flags O_RDWR)
18230 fcntl(6, F_SETFL, O_RDWR) = 0
18231 clock_gettime(CLOCK_MONOTONIC, {tv_sec=50008, tv_nsec=62405578}) = 0
18232 clock_gettime(CLOCK_MONOTONIC, {tv_sec=50008, tv_nsec=62713278}) = 0
18252 clock_gettime(CLOCK_MONOTONIC, {tv_sec=50008, tv_nsec=67718778}) = 0
18253 write(1, "===========", 11) = 11
18254 clock_gettime(CLOCK_MONOTONIC, {tv_sec=50008, tv_nsec=68673978}) = 0
18255 write(1, "\n", 1) = 1
18256 poll([{fd=5, events=POLLIN|POLLERR}], 1, -1
结论
Java7/8
strace调用栈
18774 socket(AF_INET, SOCK_STREAM, IPPROTO_IP) = 6
18775 fcntl(6, F_GETFL) = 0x2 (flags O_RDWR)
18776 fcntl(6, F_SETFL, O_RDWR|O_NONBLOCK) = 0
18777 setsockopt(6, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
18778 gettimeofday({tv_sec=1588793691, tv_usec=279644}, NULL) = 0
18779 gettimeofday({tv_sec=1588793691, tv_usec=279906}, NULL) = 0
18780 gettimeofday({tv_sec=1588793691, tv_usec=280172}, NULL) = 0
18781 bind(6, {sa_family=AF_INET, sin_port=htons(8080), sin_addr=inet_addr("0.0.0.0")}, 16) = 0
18782 listen(6, 50) = 0
18783 gettimeofday({tv_sec=1588793691, tv_usec=281027}, NULL) = 0
18784 gettimeofday({tv_sec=1588793691, tv_usec=281295}, NULL) = 0
18785 gettimeofday({tv_sec=1588793691, tv_usec=291874}, NULL) = 0
18786 poll([{fd=6, events=POLLIN|POLLERR}], 1, -1) = 1 ([{fd=6, revents=POLLIN}])
18787 accept(6, {sa_family=AF_INET, sin_port=htons(40874), sin_addr=inet_addr("127.0.0.1")}, [16]) = 7
18788 fcntl(7, F_GETFL) = 0x2 (flags O_RDWR)
18789 fcntl(7, F_SETFL, O_RDWR) = 0
18790 gettimeofday({tv_sec=1588793691, tv_usec=912271}, NULL) = 0
18791 gettimeofday({tv_sec=1588793691, tv_usec=912551}, NULL) = 0
18792 write(1, "===========", 11) = 11
18793 gettimeofday({tv_sec=1588793691, tv_usec=913462}, NULL) = 0
18794 write(1, "\n", 1) = 1
18795 poll([{fd=6, events=POLLIN|POLLERR}], 1, -1 ) = ?
备忘录
不同版本jdk实现方式不一致 如果不给socket设置nonblocking,accept会阻塞直到数据到达 poll的调用是阻塞的,直到注册的event发生后,返回发生事件的fd
系列
关注我
如果您在微信阅读,请您点击链接 ,如果您在 PC 上阅读请扫码关注我,欢迎与我交流随时指出错误
