forked from kangjianwei/LearningJDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NativeDispatcher.java
129 lines (105 loc) · 6.55 KB
/
NativeDispatcher.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
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
* 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.
*/
/*
* IO操作的分派器,允许不同的平台调用各自的原生方法进行读写操作。
* 这些IO主要针对TCP/UDP Socket或File的文件描述符。
*/
abstract class NativeDispatcher {
/*▼ 读 ████████████████████████████████████████████████████████████████████████████████┓ */
// 从文件描述符fd读取数据,并填充address指向的本地内存中的前len个字节
abstract int read(FileDescriptor fd, long address, int len) throws IOException;
/*
* 从文件描述符fd读取数据,并依次填充address指向的本地内存中的前len个缓冲区
*
* 注:address指向一个结构体数组,每个结构体数组中都引用了一块本地内存
* 参见IOVecWrapper类
*
* 与read的区别是:read相当于填充一个buffer,而readv相当于填充一个buffer数组
*/
abstract long readv(FileDescriptor fd, long address, int len) throws IOException;
/*
* 从文件描述符fd读取数据,并从address指向的本地内存中的position位置开始,填充前len个字节
*
* 与read的区别是:
* read会引起文件指针的移动,且必须从缓冲区首个位置开始填充
* pread不会引起文件指针的移动,且支持随机填充(从缓冲区position位置处开始填充)
*
* 注:由于是随机填充缓冲区,所以该方法通常仅支持File通道,而不支持Socket通道
*/
int pread(FileDescriptor fd, long address, int len, long position) throws IOException {
throw new IOException("Operation Unsupported");
}
/*▲ 读 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 写 ████████████████████████████████████████████████████████████████████████████████┓ */
// 向文件描述符fd写入数据,数据源是address指向的本地内存中的前len个字节
abstract int write(FileDescriptor fd, long address, int len) throws IOException;
/*
* 向文件描述符fd写入数据,数据源是address指向的本地内存中的前len个缓冲区
*
* 注:address指向一个结构体数组,每个结构体数组中都引用了一块本地内存
* 参见IOVecWrapper类
*
* 与write的区别是:write的数据源相当于一个buffer,而writev的数据源相当于一个buffer数组
*/
abstract long writev(FileDescriptor fd, long address, int len) throws IOException;
/*
* 向文件描述符fd写入数据,数据源是address指向的本地内存中的position位置开始的前len个字节
*
* 与write的区别是:
* write会引起文件指针的移动,且必须从数据源首个位置开始读取
* pwrite不会引起文件指针的移动,且支持随机读取(从数据源position位置处开始读取)
*
* 注:由于是随机读取数据源,所以该方法通常仅支持File通道,而不支持Socket通道
*/
int pwrite(FileDescriptor fd, long address, int len, long position) throws IOException {
throw new IOException("Operation Unsupported");
}
/*▲ 写 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 关闭 ████████████████████████████████████████████████████████████████████████████████┓ */
// 关闭文件描述符(通道),即释放对文件描述符的引用
abstract void close(FileDescriptor fd) throws IOException;
/**
* Prepare the given fd for closing by duping it to a known internal fd that's already closed.
* This is necessary on some operating systems (Solaris and Linux) to prevent fd recycling.
*/
// 关闭fd处的Socket通道前的一些准备
void preClose(FileDescriptor fd) throws IOException {
// Do nothing by default; this is only needed on Unix
}
/*▲ 关闭 ████████████████████████████████████████████████████████████████████████████████┛ */
/**
* Returns {@code true} if pread/pwrite needs to be synchronized with position sensitive methods.
*/
// 是否需要对涉及更改通道游标这种敏感操作加锁
boolean needsPositionLock() {
return false;
}
}