forked from kangjianwei/LearningJDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AsynchronousChannelProvider.java
244 lines (222 loc) · 10.4 KB
/
AsynchronousChannelProvider.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/*
* Copyright (c) 2007, 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 java.nio.channels.spi;
import java.io.IOException;
import java.nio.channels.AsynchronousChannelGroup;
import java.nio.channels.AsynchronousServerSocketChannel;
import java.nio.channels.AsynchronousSocketChannel;
import java.nio.channels.IllegalChannelGroupException;
import java.nio.channels.ShutdownChannelGroupException;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Iterator;
import java.util.ServiceConfigurationError;
import java.util.ServiceLoader;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ThreadFactory;
import sun.nio.ch.DefaultAsynchronousChannelProvider;
/**
* Service-provider class for asynchronous channels.
*
* <p> An asynchronous channel provider is a concrete subclass of this class that
* has a zero-argument constructor and implements the abstract methods specified
* below. A given invocation of the Java virtual machine maintains a single
* system-wide default provider instance, which is returned by the {@link
* #provider() provider} method. The first invocation of that method will locate
* the default provider as specified below.
*
* <p> All of the methods in this class are safe for use by multiple concurrent
* threads. </p>
*
* @since 1.7
*/
// 异步通道组和异步Socket通道的工厂
public abstract class AsynchronousChannelProvider {
/**
* Initializes a new instance of this class.
*
* @throws SecurityException If a security manager has been installed and it denies
* {@link RuntimePermission}{@code ("asynchronousChannelProvider")}
*/
protected AsynchronousChannelProvider() {
this(checkPermission());
}
private AsynchronousChannelProvider(Void ignore) {
}
/**
* Returns the system-wide default asynchronous channel provider for this
* invocation of the Java virtual machine.
*
* <p> The first invocation of this method locates the default provider
* object as follows: </p>
*
* <ol>
*
* <li><p> If the system property
* {@code java.nio.channels.spi.AsynchronousChannelProvider} is defined
* then it is taken to be the fully-qualified name of a concrete provider class.
* The class is loaded and instantiated; if this process fails then an
* unspecified error is thrown. </p></li>
*
* <li><p> If a provider class has been installed in a jar file that is
* visible to the system class loader, and that jar file contains a
* provider-configuration file named
* {@code java.nio.channels.spi.AsynchronousChannelProvider} in the resource
* directory {@code META-INF/services}, then the first class name
* specified in that file is taken. The class is loaded and
* instantiated; if this process fails then an unspecified error is
* thrown. </p></li>
*
* <li><p> Finally, if no provider has been specified by any of the above
* means then the system-default provider class is instantiated and the
* result is returned. </p></li>
*
* </ol>
*
* <p> Subsequent invocations of this method return the provider that was
* returned by the first invocation. </p>
*
* @return The system-wide default AsynchronousChannel provider
*/
// 返回系统默认的异步通道组工厂
public static AsynchronousChannelProvider provider() {
return ProviderHolder.provider;
}
/**
* Constructs a new asynchronous channel group with a fixed thread pool.
*
* @param nThreads The number of threads in the pool
* @param threadFactory The factory to use when creating new threads
*
* @return A new asynchronous channel group
*
* @throws IllegalArgumentException If {@code nThreads <= 0}
* @throws IOException If an I/O error occurs
* @see AsynchronousChannelGroup#withFixedThreadPool
*/
// 返回一个带有固定容量线程池的异步通道组,线程池容量为nThreads
public abstract AsynchronousChannelGroup openAsynchronousChannelGroup(int nThreads, ThreadFactory threadFactory) throws IOException;
/**
* Constructs a new asynchronous channel group with the given thread pool.
*
* @param executor The thread pool
* @param initialSize A value {@code >=0} or a negative value for implementation specific default
*
* @return A new asynchronous channel group
*
* @throws IOException If an I/O error occurs
* @see AsynchronousChannelGroup#withCachedThreadPool
*/
// 返回一个包含指定线程池的异步通道组,线程池初始容量为initialSize(具体值还需要进一步计算)
public abstract AsynchronousChannelGroup openAsynchronousChannelGroup(ExecutorService executor, int initialSize) throws IOException;
/**
* Opens an asynchronous socket channel.
*
* @param group The group to which the channel is bound, or {@code null} to bind to the default group
*
* @return The new channel
*
* @throws IllegalChannelGroupException If the provider that created the group differs from this provider
* @throws ShutdownChannelGroupException The group is shutdown
* @throws IOException If an I/O error occurs
*/
// 打开一个异步Socket通道,group是该通道关联的异步通道组
public abstract AsynchronousSocketChannel openAsynchronousSocketChannel(AsynchronousChannelGroup group) throws IOException;
/**
* Opens an asynchronous server-socket channel.
*
* @param group The group to which the channel is bound, or {@code null} to
* bind to the default group
*
* @return The new channel
*
* @throws IllegalChannelGroupException If the provider that created the group differs from this provider
* @throws ShutdownChannelGroupException The group is shutdown
* @throws IOException If an I/O error occurs
*/
// 打开一个异步ServerSocket通道,group是该通道关联的异步通道组
public abstract AsynchronousServerSocketChannel openAsynchronousServerSocketChannel(AsynchronousChannelGroup group) throws IOException;
// 权限检查
private static Void checkPermission() {
SecurityManager sm = System.getSecurityManager();
if(sm != null) {
sm.checkPermission(new RuntimePermission("asynchronousChannelProvider"));
}
return null;
}
// 异步通道工厂引用
private static class ProviderHolder {
static final AsynchronousChannelProvider provider = load();
private static AsynchronousChannelProvider load() {
return AccessController.doPrivileged(new PrivilegedAction<>() {
public AsynchronousChannelProvider run() {
AsynchronousChannelProvider p;
// 尝试从用户定义的属性中创建异步通道工厂,默认为null
p = loadProviderFromProperty();
if(p != null) {
return p;
}
// 尝试从用户注册的服务中创建异步通道工厂,默认为null
p = loadProviderAsService();
if(p != null) {
return p;
}
// 返回系统默认的异步通道工厂
return DefaultAsynchronousChannelProvider.create();
}
});
}
// 尝试从用户定义的属性中创建异步通道工厂,默认为null
private static AsynchronousChannelProvider loadProviderFromProperty() {
String provider = System.getProperty("java.nio.channels.spi.AsynchronousChannelProvider");
if(provider == null) {
return null;
}
try {
@SuppressWarnings("deprecation")
Object tmp = Class.forName(provider, true, ClassLoader.getSystemClassLoader()).newInstance();
return (AsynchronousChannelProvider) tmp;
} catch(ClassNotFoundException | IllegalAccessException | InstantiationException | SecurityException x) {
throw new ServiceConfigurationError(null, x);
}
}
// 尝试从用户注册的服务中创建异步通道工厂,默认为null
private static AsynchronousChannelProvider loadProviderAsService() {
ServiceLoader<AsynchronousChannelProvider> serviceLoader = ServiceLoader.load(AsynchronousChannelProvider.class, ClassLoader.getSystemClassLoader());
Iterator<AsynchronousChannelProvider> iterator = serviceLoader.iterator();
for(; ; ) {
try {
return (iterator.hasNext()) ? iterator.next() : null;
} catch(ServiceConfigurationError sce) {
if(sce.getCause() instanceof SecurityException) {
// Ignore the security exception, try the next provider
continue;
}
throw sce;
}
}
}
}
}