Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/java/net/ProxySelector.java
41152 views
1
/*
2
* Copyright (c) 2003, 2021, 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 java.net;
27
28
import java.io.IOException;
29
import java.util.List;
30
import sun.security.util.SecurityConstants;
31
32
/**
33
* Selects the proxy server to use, if any, when connecting to the
34
* network resource referenced by a URL. A proxy selector is a
35
* concrete sub-class of this class and is registered by invoking the
36
* {@link java.net.ProxySelector#setDefault setDefault} method. The
37
* currently registered proxy selector can be retrieved by calling
38
* {@link java.net.ProxySelector#getDefault getDefault} method.
39
*
40
* <p> When a proxy selector is registered, for instance, a subclass
41
* of URLConnection class should call the {@link #select select}
42
* method for each URL request so that the proxy selector can decide
43
* if a direct, or proxied connection should be used. The {@link
44
* #select select} method returns an iterator over a collection with
45
* the preferred connection approach.
46
*
47
* <p> If a connection cannot be established to a proxy (PROXY or
48
* SOCKS) servers then the caller should call the proxy selector's
49
* {@link #connectFailed connectFailed} method to notify the proxy
50
* selector that the proxy server is unavailable. </p>
51
*
52
* <P>The default proxy selector does enforce a
53
* <a href="doc-files/net-properties.html#Proxies">set of System Properties</a>
54
* related to proxy settings.</P>
55
*
56
* @author Yingxian Wang
57
* @author Jean-Christophe Collet
58
* @since 1.5
59
*/
60
public abstract class ProxySelector {
61
/**
62
* The system wide proxy selector that selects the proxy server to
63
* use, if any, when connecting to a remote object referenced by
64
* an URL.
65
*
66
* @see #setDefault(ProxySelector)
67
*/
68
private static volatile ProxySelector theProxySelector;
69
70
static {
71
try {
72
Class<?> c = Class.forName("sun.net.spi.DefaultProxySelector");
73
if (c != null && ProxySelector.class.isAssignableFrom(c)) {
74
@SuppressWarnings("deprecation")
75
ProxySelector tmp = (ProxySelector) c.newInstance();
76
theProxySelector = tmp;
77
}
78
} catch (Exception e) {
79
theProxySelector = null;
80
}
81
}
82
83
/**
84
* Constructor for subclasses to call.
85
*/
86
public ProxySelector() {}
87
88
/**
89
* Gets the system-wide proxy selector.
90
*
91
* @throws SecurityException
92
* If a security manager has been installed and it denies
93
* {@link NetPermission}{@code ("getProxySelector")}
94
* @see #setDefault(ProxySelector)
95
* @return the system-wide {@code ProxySelector}
96
* @since 1.5
97
*/
98
public static ProxySelector getDefault() {
99
@SuppressWarnings("removal")
100
SecurityManager sm = System.getSecurityManager();
101
if (sm != null) {
102
sm.checkPermission(SecurityConstants.GET_PROXYSELECTOR_PERMISSION);
103
}
104
return theProxySelector;
105
}
106
107
/**
108
* Sets (or unsets) the system-wide proxy selector.
109
*
110
* Note: non-standard protocol handlers may ignore this setting.
111
*
112
* @param ps The HTTP proxy selector, or
113
* {@code null} to unset the proxy selector.
114
*
115
* @throws SecurityException
116
* If a security manager has been installed and it denies
117
* {@link NetPermission}{@code ("setProxySelector")}
118
*
119
* @see #getDefault()
120
* @since 1.5
121
*/
122
public static void setDefault(ProxySelector ps) {
123
@SuppressWarnings("removal")
124
SecurityManager sm = System.getSecurityManager();
125
if (sm != null) {
126
sm.checkPermission(SecurityConstants.SET_PROXYSELECTOR_PERMISSION);
127
}
128
theProxySelector = ps;
129
}
130
131
/**
132
* Selects all the applicable proxies based on the protocol to
133
* access the resource with and a destination address to access
134
* the resource at.
135
* The format of the URI is defined as follow:
136
* <UL>
137
* <LI>http URI for http connections</LI>
138
* <LI>https URI for https connections
139
* <LI>{@code socket://host:port}<br>
140
* for tcp client sockets connections</LI>
141
* </UL>
142
*
143
* @param uri
144
* The URI that a connection is required to
145
*
146
* @return a List of Proxies. Each element in
147
* the List is of type
148
* {@link java.net.Proxy Proxy};
149
* when no proxy is available, the list will
150
* contain one element of type
151
* {@link java.net.Proxy Proxy}
152
* that represents a direct connection.
153
* @throws IllegalArgumentException if the argument is null or if
154
* the protocol or host cannot be determined from the provided
155
* {@code uri}
156
*/
157
public abstract List<Proxy> select(URI uri);
158
159
/**
160
* Called to indicate that a connection could not be established
161
* to a proxy/socks server. An implementation of this method can
162
* temporarily remove the proxies or reorder the sequence of
163
* proxies returned by {@link #select(URI)}, using the address
164
* and the IOException caught when trying to connect.
165
*
166
* @param uri
167
* The URI that the proxy at sa failed to serve.
168
* @param sa
169
* The socket address of the proxy/SOCKS server
170
*
171
* @param ioe
172
* The I/O exception thrown when the connect failed.
173
* @throws IllegalArgumentException if either argument is null
174
*/
175
public abstract void connectFailed(URI uri, SocketAddress sa, IOException ioe);
176
177
/**
178
* Returns a ProxySelector which uses the given proxy address for all HTTP
179
* and HTTPS requests. If proxy is {@code null} then proxying is disabled.
180
*
181
* @param proxyAddress
182
* The address of the proxy
183
*
184
* @return a ProxySelector
185
*
186
* @since 9
187
*/
188
public static ProxySelector of(InetSocketAddress proxyAddress) {
189
return new StaticProxySelector(proxyAddress);
190
}
191
192
static class StaticProxySelector extends ProxySelector {
193
private static final List<Proxy> NO_PROXY_LIST = List.of(Proxy.NO_PROXY);
194
final List<Proxy> list;
195
196
StaticProxySelector(InetSocketAddress address){
197
Proxy p;
198
if (address == null) {
199
p = Proxy.NO_PROXY;
200
} else {
201
p = new Proxy(Proxy.Type.HTTP, address);
202
}
203
list = List.of(p);
204
}
205
206
@Override
207
public void connectFailed(URI uri, SocketAddress sa, IOException e) {
208
/* ignore */
209
}
210
211
@Override
212
public synchronized List<Proxy> select(URI uri) {
213
String scheme = uri.getScheme().toLowerCase();
214
if (scheme.equals("http") || scheme.equals("https")) {
215
return list;
216
} else {
217
return NO_PROXY_LIST;
218
}
219
}
220
}
221
}
222
223