author | alanb |
Sat, 14 Apr 2018 08:41:42 +0100 | |
changeset 49702 | 09c01737ad27 |
parent 49526 | cad4c844902a |
child 49802 | 8ac08fa69f00 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package sun.nio.ch; |
|
27 |
||
28 |
import java.io.IOException; |
|
46094
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
29 |
import java.nio.channels.ClosedSelectorException; |
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
30 |
import java.nio.channels.IllegalSelectorException; |
49493 | 31 |
import java.nio.channels.SelectableChannel; |
46094
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
32 |
import java.nio.channels.SelectionKey; |
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
33 |
import java.nio.channels.spi.AbstractSelectableChannel; |
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
34 |
import java.nio.channels.spi.AbstractSelector; |
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
35 |
import java.nio.channels.spi.SelectorProvider; |
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
36 |
import java.util.Collections; |
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
37 |
import java.util.HashSet; |
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
38 |
import java.util.Iterator; |
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
39 |
import java.util.Set; |
2 | 40 |
|
41 |
||
42 |
/** |
|
43 |
* Base Selector implementation class. |
|
44 |
*/ |
|
45 |
||
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
10137
diff
changeset
|
46 |
public abstract class SelectorImpl |
2 | 47 |
extends AbstractSelector |
48 |
{ |
|
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
49 |
// The set of keys registered with this Selector |
49493 | 50 |
protected final Set<SelectionKey> keys; |
2 | 51 |
|
52 |
// The set of keys with data ready for an operation |
|
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
53 |
protected final Set<SelectionKey> selectedKeys; |
2 | 54 |
|
55 |
// Public views of the key sets |
|
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
56 |
private final Set<SelectionKey> publicKeys; // Immutable |
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
57 |
private final Set<SelectionKey> publicSelectedKeys; // Removal allowed, but not addition |
2 | 58 |
|
59 |
protected SelectorImpl(SelectorProvider sp) { |
|
60 |
super(sp); |
|
29986
97167d851fc4
8078467: Update core libraries to use diamond with anonymous classes
darcy
parents:
25859
diff
changeset
|
61 |
keys = new HashSet<>(); |
97167d851fc4
8078467: Update core libraries to use diamond with anonymous classes
darcy
parents:
25859
diff
changeset
|
62 |
selectedKeys = new HashSet<>(); |
46094
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
63 |
publicKeys = Collections.unmodifiableSet(keys); |
0c23b05caf7d
8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents:
32649
diff
changeset
|
64 |
publicSelectedKeys = Util.ungrowableSet(selectedKeys); |
2 | 65 |
} |
66 |
||
49526 | 67 |
private void ensureOpen() { |
68 |
if (!isOpen()) |
|
69 |
throw new ClosedSelectorException(); |
|
70 |
} |
|
71 |
||
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
72 |
@Override |
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
73 |
public final Set<SelectionKey> keys() { |
49526 | 74 |
ensureOpen(); |
2 | 75 |
return publicKeys; |
76 |
} |
|
77 |
||
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
78 |
@Override |
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
79 |
public final Set<SelectionKey> selectedKeys() { |
49526 | 80 |
ensureOpen(); |
2 | 81 |
return publicSelectedKeys; |
82 |
} |
|
83 |
||
49290 | 84 |
/** |
85 |
* Returns the public view of the key sets |
|
86 |
*/ |
|
87 |
protected final Set<SelectionKey> nioKeys() { |
|
88 |
return publicKeys; |
|
89 |
} |
|
90 |
protected final Set<SelectionKey> nioSelectedKeys() { |
|
91 |
return publicSelectedKeys; |
|
92 |
} |
|
93 |
||
49493 | 94 |
/** |
95 |
* Marks the beginning of a select operation that might block |
|
96 |
*/ |
|
97 |
protected final void begin(boolean blocking) { |
|
98 |
if (blocking) begin(); |
|
99 |
} |
|
100 |
||
101 |
/** |
|
102 |
* Marks the end of a select operation that may have blocked |
|
103 |
*/ |
|
104 |
protected final void end(boolean blocking) { |
|
105 |
if (blocking) end(); |
|
106 |
} |
|
107 |
||
108 |
/** |
|
109 |
* Selects the keys for channels that are ready for I/O operations. |
|
110 |
* |
|
111 |
* @param timeout timeout in milliseconds to wait, 0 to not wait, -1 to |
|
112 |
* wait indefinitely |
|
113 |
*/ |
|
2 | 114 |
protected abstract int doSelect(long timeout) throws IOException; |
115 |
||
116 |
private int lockAndDoSelect(long timeout) throws IOException { |
|
117 |
synchronized (this) { |
|
49526 | 118 |
ensureOpen(); |
2 | 119 |
synchronized (publicKeys) { |
120 |
synchronized (publicSelectedKeys) { |
|
121 |
return doSelect(timeout); |
|
122 |
} |
|
123 |
} |
|
124 |
} |
|
125 |
} |
|
126 |
||
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
127 |
@Override |
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
128 |
public final int select(long timeout) |
2 | 129 |
throws IOException |
130 |
{ |
|
131 |
if (timeout < 0) |
|
132 |
throw new IllegalArgumentException("Negative timeout"); |
|
133 |
return lockAndDoSelect((timeout == 0) ? -1 : timeout); |
|
134 |
} |
|
135 |
||
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
136 |
@Override |
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
137 |
public final int select() throws IOException { |
2 | 138 |
return select(0); |
139 |
} |
|
140 |
||
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
141 |
@Override |
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
142 |
public final int selectNow() throws IOException { |
2 | 143 |
return lockAndDoSelect(0); |
144 |
} |
|
145 |
||
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
146 |
@Override |
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
147 |
public final void implCloseSelector() throws IOException { |
2 | 148 |
wakeup(); |
149 |
synchronized (this) { |
|
49493 | 150 |
implClose(); |
2 | 151 |
synchronized (publicKeys) { |
152 |
synchronized (publicSelectedKeys) { |
|
49493 | 153 |
// Deregister channels |
154 |
Iterator<SelectionKey> i = keys.iterator(); |
|
155 |
while (i.hasNext()) { |
|
156 |
SelectionKeyImpl ski = (SelectionKeyImpl)i.next(); |
|
157 |
deregister(ski); |
|
158 |
SelectableChannel selch = ski.channel(); |
|
159 |
if (!selch.isOpen() && !selch.isRegistered()) |
|
160 |
((SelChImpl)selch).kill(); |
|
161 |
selectedKeys.remove(ski); |
|
162 |
i.remove(); |
|
163 |
} |
|
164 |
assert selectedKeys.isEmpty() && keys.isEmpty(); |
|
2 | 165 |
} |
166 |
} |
|
167 |
} |
|
168 |
} |
|
169 |
||
170 |
protected abstract void implClose() throws IOException; |
|
171 |
||
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
172 |
@Override |
2 | 173 |
protected final SelectionKey register(AbstractSelectableChannel ch, |
174 |
int ops, |
|
175 |
Object attachment) |
|
176 |
{ |
|
177 |
if (!(ch instanceof SelChImpl)) |
|
178 |
throw new IllegalSelectorException(); |
|
179 |
SelectionKeyImpl k = new SelectionKeyImpl((SelChImpl)ch, this); |
|
180 |
k.attach(attachment); |
|
49526 | 181 |
|
182 |
// register with selector (if needed) before adding to key set |
|
49493 | 183 |
implRegister(k); |
2 | 184 |
synchronized (publicKeys) { |
49493 | 185 |
keys.add(k); |
2 | 186 |
} |
187 |
k.interestOps(ops); |
|
188 |
return k; |
|
189 |
} |
|
190 |
||
49526 | 191 |
/** |
192 |
* Register the key in the selector. |
|
193 |
* |
|
194 |
* The default implementation checks if the selector is open. It should |
|
195 |
* be overridden by selector implementations as needed. |
|
196 |
*/ |
|
197 |
protected void implRegister(SelectionKeyImpl ski) { |
|
198 |
ensureOpen(); |
|
199 |
} |
|
2 | 200 |
|
49248
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
201 |
protected abstract void implDereg(SelectionKeyImpl ski) throws IOException; |
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
202 |
|
15a0e60c8b97
8199611: (se) Minor selector implementation clean-up
alanb
parents:
47216
diff
changeset
|
203 |
protected final void processDeregisterQueue() throws IOException { |
49493 | 204 |
assert Thread.holdsLock(this); |
205 |
assert Thread.holdsLock(publicKeys); |
|
206 |
assert Thread.holdsLock(publicSelectedKeys); |
|
207 |
||
10137
d92637d3d673
7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents:
5506
diff
changeset
|
208 |
Set<SelectionKey> cks = cancelledKeys(); |
2 | 209 |
synchronized (cks) { |
843
e50aa264deca
6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents:
2
diff
changeset
|
210 |
if (!cks.isEmpty()) { |
10137
d92637d3d673
7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents:
5506
diff
changeset
|
211 |
Iterator<SelectionKey> i = cks.iterator(); |
843
e50aa264deca
6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents:
2
diff
changeset
|
212 |
while (i.hasNext()) { |
e50aa264deca
6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents:
2
diff
changeset
|
213 |
SelectionKeyImpl ski = (SelectionKeyImpl)i.next(); |
49493 | 214 |
i.remove(); |
215 |
||
216 |
// remove the key from the selector |
|
217 |
implDereg(ski); |
|
218 |
||
219 |
selectedKeys.remove(ski); |
|
220 |
keys.remove(ski); |
|
221 |
||
222 |
// remove from channel's key set |
|
223 |
deregister(ski); |
|
224 |
||
225 |
SelectableChannel ch = ski.channel(); |
|
226 |
if (!ch.isOpen() && !ch.isRegistered()) |
|
227 |
((SelChImpl)ch).kill(); |
|
2 | 228 |
} |
229 |
} |
|
230 |
} |
|
231 |
} |
|
49290 | 232 |
|
233 |
/** |
|
49493 | 234 |
* Change the event set in the selector |
49290 | 235 |
*/ |
49526 | 236 |
protected abstract void setEventOps(SelectionKeyImpl ski); |
2 | 237 |
} |