Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/sun/nio/ch/SelectorProviderImpl.java
41159 views
1
/*
2
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
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
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
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
*
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.
24
*/
25
26
package sun.nio.ch;
27
28
import java.io.IOException;
29
import java.net.ProtocolFamily;
30
import java.nio.channels.DatagramChannel;
31
import java.nio.channels.Pipe;
32
import java.nio.channels.ServerSocketChannel;
33
import java.nio.channels.SocketChannel;
34
import java.nio.channels.spi.AbstractSelector;
35
import java.nio.channels.spi.SelectorProvider;
36
import java.util.Objects;
37
import static java.net.StandardProtocolFamily.INET;
38
import static java.net.StandardProtocolFamily.INET6;
39
import static java.net.StandardProtocolFamily.UNIX;
40
41
public abstract class SelectorProviderImpl
42
extends SelectorProvider
43
{
44
@Override
45
public DatagramChannel openDatagramChannel() throws IOException {
46
return new DatagramChannelImpl(this, /*interruptible*/true);
47
}
48
49
/**
50
* SelectorProviderImpl specific method to create a DatagramChannel that
51
* is not interruptible.
52
*/
53
public DatagramChannel openUninterruptibleDatagramChannel() throws IOException {
54
return new DatagramChannelImpl(this, /*interruptible*/false);
55
}
56
57
@Override
58
public DatagramChannel openDatagramChannel(ProtocolFamily family) throws IOException {
59
return new DatagramChannelImpl(this, family, /*interruptible*/true);
60
}
61
62
@Override
63
public Pipe openPipe() throws IOException {
64
return new PipeImpl(this);
65
}
66
67
@Override
68
public abstract AbstractSelector openSelector() throws IOException;
69
70
@Override
71
public ServerSocketChannel openServerSocketChannel() throws IOException {
72
return new ServerSocketChannelImpl(this);
73
}
74
75
@Override
76
public SocketChannel openSocketChannel() throws IOException {
77
return new SocketChannelImpl(this);
78
}
79
80
@Override
81
public SocketChannel openSocketChannel(ProtocolFamily family) throws IOException {
82
Objects.requireNonNull(family, "'family' is null");
83
if (family == INET6 && !Net.isIPv6Available()) {
84
throw new UnsupportedOperationException("IPv6 not available");
85
} else if (family == INET || family == INET6) {
86
return new SocketChannelImpl(this, family);
87
} else if (family == UNIX && UnixDomainSockets.isSupported()) {
88
return new SocketChannelImpl(this, family);
89
} else {
90
throw new UnsupportedOperationException("Protocol family not supported");
91
}
92
}
93
94
@Override
95
public ServerSocketChannel openServerSocketChannel(ProtocolFamily family) throws IOException {
96
Objects.requireNonNull(family, "'family' is null");
97
if (family == INET6 && !Net.isIPv6Available()) {
98
throw new UnsupportedOperationException("IPv6 not available");
99
} else if (family == INET || family == INET6) {
100
return new ServerSocketChannelImpl(this, family);
101
} else if (family == UNIX && UnixDomainSockets.isSupported()) {
102
return new ServerSocketChannelImpl(this, family);
103
} else {
104
throw new UnsupportedOperationException("Protocol family not supported");
105
}
106
}
107
}
108
109