-
Notifications
You must be signed in to change notification settings - Fork 668
/
SocketDispatcher.java
116 lines (86 loc) · 5.36 KB
/
SocketDispatcher.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package sun.nio.ch;
import java.io.FileDescriptor;
import java.io.IOException;
/**
* Allows different platforms to call different native methods for read and write operations.
*/
// TCP-Socket中IO操作分派器的抽象实现
class SocketDispatcher extends NativeDispatcher {
static {
IOUtil.load();
}
/*▼ 读 ████████████████████████████████████████████████████████████████████████████████┓ */
// 从文件描述符fd读取数据,并填充address指向的本地内存中的前len个字节
int read(FileDescriptor fd, long address, int len) throws IOException {
return read0(fd, address, len);
}
/*
* 从文件描述符fd读取数据,并依次填充address指向的本地内存中的前len个缓冲区
*
* 注:address指向一个结构体数组,每个结构体数组中都引用了一块本地内存
* 参见IOVecWrapper类
*
* 与read的区别是:read相当于填充一个buffer,而readv相当于填充一个buffer数组
*/
long readv(FileDescriptor fd, long address, int len) throws IOException {
return readv0(fd, address, len);
}
/*▲ 读 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 写 ████████████████████████████████████████████████████████████████████████████████┓ */
// 向文件描述符fd写入数据,数据源是address指向的本地内存中的前len个字节
int write(FileDescriptor fd, long address, int len) throws IOException {
return write0(fd, address, len);
}
/*
* 向文件描述符fd写入数据,数据源是address指向的本地内存中的前len个缓冲区
*
* 注:address指向一个结构体数组,每个结构体数组中都引用了一块本地内存
* 参见IOVecWrapper类
*
* 与write的区别是:write的数据源相当于一个buffer,而writev的数据源相当于一个buffer数组
*/
long writev(FileDescriptor fd, long address, int len) throws IOException {
return writev0(fd, address, len);
}
/*▲ 写 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 关闭 ████████████████████████████████████████████████████████████████████████████████┓ */
// 关闭文件描述符(通道)
void close(FileDescriptor fd) throws IOException {
close0(fd);
}
// 关闭fd处的Socket通道前的一些准备
void preClose(FileDescriptor fd) throws IOException {
preClose0(fd);
}
/*▲ 关闭 ████████████████████████████████████████████████████████████████████████████████┛ */
static native int read0(FileDescriptor fd, long address, int len) throws IOException;
static native long readv0(FileDescriptor fd, long address, int len) throws IOException;
static native int write0(FileDescriptor fd, long address, int len) throws IOException;
static native long writev0(FileDescriptor fd, long address, int len) throws IOException;
static native void preClose0(FileDescriptor fd) throws IOException;
static native void close0(FileDescriptor fd) throws IOException;
}