author | chegar |
Wed, 02 May 2018 02:36:17 -0700 | |
changeset 49944 | 4690a2871b44 |
parent 49765 | ee6f7a61f3a5 |
child 50681 | 4254bed3c09d |
child 56507 | 2294c51eae30 |
permissions | -rw-r--r-- |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
1 |
/* |
48703
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
2 |
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
4 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. Oracle designates this |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
8 |
* particular file as subject to the "Classpath" exception as provided |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
10 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
15 |
* accompanied this code). |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
16 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License version |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
20 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
22 |
* or visit www.oracle.com if you need additional information or have any |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
23 |
* questions. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
24 |
*/ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
25 |
|
49765 | 26 |
package jdk.internal.net.http.common; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
27 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
28 |
import sun.net.NetProperties; |
45713
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
43730
diff
changeset
|
29 |
import sun.net.util.IPAddressUtil; |
49765 | 30 |
import sun.net.www.HeaderParser; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
31 |
|
49765 | 32 |
import javax.net.ssl.ExtendedSSLSession; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
33 |
import javax.net.ssl.SSLParameters; |
49765 | 34 |
import javax.net.ssl.SSLSession; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
35 |
import java.io.ByteArrayOutputStream; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
36 |
import java.io.Closeable; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
37 |
import java.io.IOException; |
48083 | 38 |
import java.io.PrintStream; |
43730 | 39 |
import java.io.UncheckedIOException; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
40 |
import java.io.UnsupportedEncodingException; |
48083 | 41 |
import java.lang.System.Logger.Level; |
45713
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
43730
diff
changeset
|
42 |
import java.net.InetSocketAddress; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
43 |
import java.net.URI; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
44 |
import java.net.URLPermission; |
49765 | 45 |
import java.net.http.HttpHeaders; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
46 |
import java.nio.ByteBuffer; |
49944 | 47 |
import java.nio.CharBuffer; |
48 |
import java.nio.charset.CharacterCodingException; |
|
43730 | 49 |
import java.nio.charset.Charset; |
49944 | 50 |
import java.nio.charset.CodingErrorAction; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
51 |
import java.nio.charset.StandardCharsets; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
52 |
import java.security.AccessController; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
53 |
import java.security.PrivilegedAction; |
49944 | 54 |
import java.text.Normalizer; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
55 |
import java.util.Arrays; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
56 |
import java.util.Collection; |
49765 | 57 |
import java.util.Collections; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
58 |
import java.util.List; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
59 |
import java.util.Set; |
49765 | 60 |
import java.util.TreeSet; |
48083 | 61 |
import java.util.concurrent.CompletionException; |
62 |
import java.util.concurrent.ExecutionException; |
|
49765 | 63 |
import java.util.function.BiPredicate; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
64 |
import java.util.function.Predicate; |
48083 | 65 |
import java.util.function.Supplier; |
49765 | 66 |
import java.util.stream.Collectors; |
48083 | 67 |
import java.util.stream.Stream; |
68 |
||
49765 | 69 |
import static java.lang.String.format; |
70 |
import static java.util.Objects.requireNonNull; |
|
48083 | 71 |
import static java.util.stream.Collectors.joining; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
72 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
73 |
/** |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
74 |
* Miscellaneous utilities |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
75 |
*/ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
76 |
public final class Utils { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
77 |
|
48083 | 78 |
public static final boolean ASSERTIONSENABLED; |
49765 | 79 |
|
48083 | 80 |
static { |
81 |
boolean enabled = false; |
|
82 |
assert enabled = true; |
|
83 |
ASSERTIONSENABLED = enabled; |
|
84 |
} |
|
49765 | 85 |
|
48083 | 86 |
// public static final boolean TESTING; |
87 |
// static { |
|
88 |
// if (ASSERTIONSENABLED) { |
|
89 |
// PrivilegedAction<String> action = () -> System.getProperty("test.src"); |
|
90 |
// TESTING = AccessController.doPrivileged(action) != null; |
|
91 |
// } else TESTING = false; |
|
92 |
// } |
|
93 |
public static final boolean DEBUG = // Revisit: temporary dev flag. |
|
94 |
getBooleanProperty(DebugLogger.HTTP_NAME, false); |
|
49765 | 95 |
public static final boolean DEBUG_WS = // Revisit: temporary dev flag. |
96 |
getBooleanProperty(DebugLogger.WS_NAME, false); |
|
48083 | 97 |
public static final boolean DEBUG_HPACK = // Revisit: temporary dev flag. |
98 |
getBooleanProperty(DebugLogger.HPACK_NAME, false); |
|
99 |
public static final boolean TESTING = DEBUG; |
|
100 |
||
49765 | 101 |
public static final boolean isHostnameVerificationDisabled = // enabled by default |
102 |
hostnameVerificationDisabledValue(); |
|
103 |
||
104 |
private static boolean hostnameVerificationDisabledValue() { |
|
105 |
String prop = getProperty("jdk.internal.httpclient.disableHostnameVerification"); |
|
106 |
if (prop == null) |
|
107 |
return false; |
|
108 |
return prop.isEmpty() ? true : Boolean.parseBoolean(prop); |
|
109 |
} |
|
110 |
||
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
111 |
/** |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
112 |
* Allocated buffer size. Must never be higher than 16K. But can be lower |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
113 |
* if smaller allocation units preferred. HTTP/2 mandates that all |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
114 |
* implementations support frame payloads of at least 16K. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
115 |
*/ |
48083 | 116 |
private static final int DEFAULT_BUFSIZE = 16 * 1024; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
117 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
118 |
public static final int BUFSIZE = getIntegerNetProperty( |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
119 |
"jdk.httpclient.bufsize", DEFAULT_BUFSIZE |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
120 |
); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
121 |
|
49765 | 122 |
private static final Set<String> DISALLOWED_HEADERS_SET; |
123 |
||
124 |
static { |
|
125 |
// A case insensitive TreeSet of strings. |
|
126 |
TreeSet<String> treeSet = new TreeSet<>(String.CASE_INSENSITIVE_ORDER); |
|
127 |
treeSet.addAll(Set.of("connection", "content-length", |
|
128 |
"date", "expect", "from", "host", "origin", |
|
129 |
"referer", "upgrade", |
|
130 |
"via", "warning")); |
|
131 |
DISALLOWED_HEADERS_SET = Collections.unmodifiableSet(treeSet); |
|
132 |
} |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
133 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
134 |
public static final Predicate<String> |
49765 | 135 |
ALLOWED_HEADERS = header -> !DISALLOWED_HEADERS_SET.contains(header); |
136 |
||
137 |
public static final BiPredicate<String, List<String>> VALIDATE_USER_HEADER = |
|
138 |
(name, lv) -> { |
|
139 |
requireNonNull(name, "header name"); |
|
140 |
requireNonNull(lv, "header values"); |
|
141 |
if (!isValidName(name)) { |
|
142 |
throw newIAE("invalid header name: \"%s\"", name); |
|
143 |
} |
|
144 |
if (!Utils.ALLOWED_HEADERS.test(name)) { |
|
145 |
throw newIAE("restricted header name: \"%s\"", name); |
|
146 |
} |
|
147 |
for (String value : lv) { |
|
148 |
requireNonNull(value, "header value"); |
|
149 |
if (!isValidValue(value)) { |
|
150 |
throw newIAE("invalid header value for %s: \"%s\"", name, value); |
|
151 |
} |
|
152 |
} |
|
153 |
return true; |
|
154 |
}; |
|
155 |
||
156 |
private static final Predicate<String> IS_PROXY_HEADER = (k) -> |
|
157 |
k != null && k.length() > 6 && "proxy-".equalsIgnoreCase(k.substring(0,6)); |
|
158 |
private static final Predicate<String> NO_PROXY_HEADER = |
|
159 |
IS_PROXY_HEADER.negate(); |
|
160 |
private static final Predicate<String> ALL_HEADERS = (s) -> true; |
|
161 |
||
162 |
private static final Set<String> PROXY_AUTH_DISABLED_SCHEMES; |
|
163 |
private static final Set<String> PROXY_AUTH_TUNNEL_DISABLED_SCHEMES; |
|
164 |
static { |
|
165 |
String proxyAuthDisabled = |
|
166 |
getNetProperty("jdk.http.auth.proxying.disabledSchemes"); |
|
167 |
String proxyAuthTunnelDisabled = |
|
168 |
getNetProperty("jdk.http.auth.tunneling.disabledSchemes"); |
|
169 |
PROXY_AUTH_DISABLED_SCHEMES = |
|
170 |
proxyAuthDisabled == null ? Set.of() : |
|
171 |
Stream.of(proxyAuthDisabled.split(",")) |
|
172 |
.map(String::trim) |
|
173 |
.filter((s) -> !s.isEmpty()) |
|
174 |
.collect(Collectors.toUnmodifiableSet()); |
|
175 |
PROXY_AUTH_TUNNEL_DISABLED_SCHEMES = |
|
176 |
proxyAuthTunnelDisabled == null ? Set.of() : |
|
177 |
Stream.of(proxyAuthTunnelDisabled.split(",")) |
|
178 |
.map(String::trim) |
|
179 |
.filter((s) -> !s.isEmpty()) |
|
180 |
.collect(Collectors.toUnmodifiableSet()); |
|
181 |
} |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
182 |
|
49765 | 183 |
private static final String WSPACES = " \t\r\n"; |
184 |
private static final boolean isAllowedForProxy(String name, |
|
185 |
List<String> value, |
|
186 |
Set<String> disabledSchemes, |
|
187 |
Predicate<String> allowedKeys) { |
|
188 |
if (!allowedKeys.test(name)) return false; |
|
189 |
if (disabledSchemes.isEmpty()) return true; |
|
190 |
if (name.equalsIgnoreCase("proxy-authorization")) { |
|
191 |
if (value.isEmpty()) return false; |
|
192 |
for (String scheme : disabledSchemes) { |
|
193 |
int slen = scheme.length(); |
|
194 |
for (String v : value) { |
|
195 |
int vlen = v.length(); |
|
196 |
if (vlen == slen) { |
|
197 |
if (v.equalsIgnoreCase(scheme)) { |
|
198 |
return false; |
|
199 |
} |
|
200 |
} else if (vlen > slen) { |
|
201 |
if (v.substring(0,slen).equalsIgnoreCase(scheme)) { |
|
202 |
int c = v.codePointAt(slen); |
|
203 |
if (WSPACES.indexOf(c) > -1 |
|
204 |
|| Character.isSpaceChar(c) |
|
205 |
|| Character.isWhitespace(c)) { |
|
206 |
return false; |
|
207 |
} |
|
208 |
} |
|
209 |
} |
|
210 |
} |
|
211 |
} |
|
212 |
} |
|
213 |
return true; |
|
214 |
} |
|
215 |
||
216 |
public static final BiPredicate<String, List<String>> PROXY_TUNNEL_FILTER = |
|
217 |
(s,v) -> isAllowedForProxy(s, v, PROXY_AUTH_TUNNEL_DISABLED_SCHEMES, |
|
218 |
IS_PROXY_HEADER); |
|
219 |
public static final BiPredicate<String, List<String>> PROXY_FILTER = |
|
220 |
(s,v) -> isAllowedForProxy(s, v, PROXY_AUTH_DISABLED_SCHEMES, |
|
221 |
ALL_HEADERS); |
|
222 |
public static final BiPredicate<String, List<String>> NO_PROXY_HEADERS_FILTER = |
|
223 |
(n,v) -> Utils.NO_PROXY_HEADER.test(n); |
|
224 |
||
225 |
||
226 |
public static boolean proxyHasDisabledSchemes(boolean tunnel) { |
|
227 |
return tunnel ? ! PROXY_AUTH_TUNNEL_DISABLED_SCHEMES.isEmpty() |
|
228 |
: ! PROXY_AUTH_DISABLED_SCHEMES.isEmpty(); |
|
229 |
} |
|
230 |
||
231 |
public static IllegalArgumentException newIAE(String message, Object... args) { |
|
232 |
return new IllegalArgumentException(format(message, args)); |
|
233 |
} |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
234 |
public static ByteBuffer getBuffer() { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
235 |
return ByteBuffer.allocate(BUFSIZE); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
236 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
237 |
|
48083 | 238 |
public static Throwable getCompletionCause(Throwable x) { |
239 |
if (!(x instanceof CompletionException) |
|
240 |
&& !(x instanceof ExecutionException)) return x; |
|
241 |
final Throwable cause = x.getCause(); |
|
49765 | 242 |
if (cause == null) { |
243 |
throw new InternalError("Unexpected null cause", x); |
|
244 |
} |
|
245 |
return cause; |
|
48083 | 246 |
} |
247 |
||
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
248 |
public static IOException getIOException(Throwable t) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
249 |
if (t instanceof IOException) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
250 |
return (IOException) t; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
251 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
252 |
Throwable cause = t.getCause(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
253 |
if (cause != null) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
254 |
return getIOException(cause); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
255 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
256 |
return new IOException(t); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
257 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
258 |
|
48083 | 259 |
private Utils() { } |
260 |
||
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
261 |
/** |
48083 | 262 |
* Returns the security permissions required to connect to the proxy, or |
263 |
* {@code null} if none is required or applicable. |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
264 |
*/ |
48083 | 265 |
public static URLPermission permissionForProxy(InetSocketAddress proxyAddress) { |
266 |
if (proxyAddress == null) |
|
267 |
return null; |
|
268 |
||
269 |
StringBuilder sb = new StringBuilder(); |
|
270 |
sb.append("socket://") |
|
271 |
.append(proxyAddress.getHostString()).append(":") |
|
272 |
.append(proxyAddress.getPort()); |
|
273 |
String urlString = sb.toString(); |
|
274 |
return new URLPermission(urlString, "CONNECT"); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
275 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
276 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
277 |
/** |
48083 | 278 |
* Returns the security permission required for the given details. |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
279 |
*/ |
48083 | 280 |
public static URLPermission permissionForServer(URI uri, |
281 |
String method, |
|
282 |
Stream<String> headers) { |
|
283 |
String urlString = new StringBuilder() |
|
284 |
.append(uri.getScheme()).append("://") |
|
285 |
.append(uri.getAuthority()) |
|
286 |
.append(uri.getPath()).toString(); |
|
287 |
||
288 |
StringBuilder actionStringBuilder = new StringBuilder(method); |
|
289 |
String collected = headers.collect(joining(",")); |
|
290 |
if (!collected.isEmpty()) { |
|
291 |
actionStringBuilder.append(":").append(collected); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
292 |
} |
48083 | 293 |
return new URLPermission(urlString, actionStringBuilder.toString()); |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
294 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
295 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
296 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
297 |
// ABNF primitives defined in RFC 7230 |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
298 |
private static final boolean[] tchar = new boolean[256]; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
299 |
private static final boolean[] fieldvchar = new boolean[256]; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
300 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
301 |
static { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
302 |
char[] allowedTokenChars = |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
303 |
("!#$%&'*+-.^_`|~0123456789" + |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
304 |
"abcdefghijklmnopqrstuvwxyz" + |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
305 |
"ABCDEFGHIJKLMNOPQRSTUVWXYZ").toCharArray(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
306 |
for (char c : allowedTokenChars) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
307 |
tchar[c] = true; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
308 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
309 |
for (char c = 0x21; c < 0xFF; c++) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
310 |
fieldvchar[c] = true; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
311 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
312 |
fieldvchar[0x7F] = false; // a little hole (DEL) in the range |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
313 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
314 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
315 |
/* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
316 |
* Validates a RFC 7230 field-name. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
317 |
*/ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
318 |
public static boolean isValidName(String token) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
319 |
for (int i = 0; i < token.length(); i++) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
320 |
char c = token.charAt(i); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
321 |
if (c > 255 || !tchar[c]) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
322 |
return false; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
323 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
324 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
325 |
return !token.isEmpty(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
326 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
327 |
|
49765 | 328 |
public static class ServerName { |
329 |
ServerName(String name, boolean isLiteral) { |
|
330 |
this.name = name; |
|
331 |
this.isLiteral = isLiteral; |
|
332 |
} |
|
333 |
||
334 |
final String name; |
|
335 |
final boolean isLiteral; |
|
336 |
||
337 |
public String getName() { |
|
338 |
return name; |
|
339 |
} |
|
340 |
||
341 |
public boolean isLiteral() { |
|
342 |
return isLiteral; |
|
343 |
} |
|
344 |
} |
|
345 |
||
45713
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
43730
diff
changeset
|
346 |
/** |
49765 | 347 |
* Analyse the given address and determine if it is literal or not, |
348 |
* returning the address in String form. |
|
45713
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
43730
diff
changeset
|
349 |
*/ |
49765 | 350 |
public static ServerName getServerName(InetSocketAddress addr) { |
45713
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
43730
diff
changeset
|
351 |
String host = addr.getHostString(); |
49765 | 352 |
byte[] literal = IPAddressUtil.textToNumericFormatV4(host); |
353 |
if (literal == null) { |
|
354 |
// not IPv4 literal. Check IPv6 |
|
355 |
literal = IPAddressUtil.textToNumericFormatV6(host); |
|
356 |
return new ServerName(host, literal != null); |
|
357 |
} else { |
|
358 |
return new ServerName(host, true); |
|
359 |
} |
|
360 |
} |
|
361 |
||
362 |
private static boolean isLoopbackLiteral(byte[] bytes) { |
|
363 |
if (bytes.length == 4) { |
|
364 |
return bytes[0] == 127; |
|
365 |
} else if (bytes.length == 16) { |
|
366 |
for (int i=0; i<14; i++) |
|
367 |
if (bytes[i] != 0) |
|
368 |
return false; |
|
369 |
if (bytes[15] != 1) |
|
370 |
return false; |
|
371 |
return true; |
|
372 |
} else |
|
373 |
throw new InternalError(); |
|
45713
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
43730
diff
changeset
|
374 |
} |
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
43730
diff
changeset
|
375 |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
376 |
/* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
377 |
* Validates a RFC 7230 field-value. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
378 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
379 |
* "Obsolete line folding" rule |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
380 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
381 |
* obs-fold = CRLF 1*( SP / HTAB ) |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
382 |
* |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
383 |
* is not permitted! |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
384 |
*/ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
385 |
public static boolean isValidValue(String token) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
386 |
for (int i = 0; i < token.length(); i++) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
387 |
char c = token.charAt(i); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
388 |
if (c > 255) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
389 |
return false; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
390 |
} |
49765 | 391 |
if (c == ' ' || c == '\t') { |
392 |
continue; |
|
393 |
} else if (!fieldvchar[c]) { |
|
394 |
return false; // forbidden byte |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
395 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
396 |
} |
49765 | 397 |
return true; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
398 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
399 |
|
49765 | 400 |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
401 |
public static int getIntegerNetProperty(String name, int defaultValue) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
402 |
return AccessController.doPrivileged((PrivilegedAction<Integer>) () -> |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
403 |
NetProperties.getInteger(name, defaultValue)); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
404 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
405 |
|
49765 | 406 |
public static String getNetProperty(String name) { |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
407 |
return AccessController.doPrivileged((PrivilegedAction<String>) () -> |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
408 |
NetProperties.get(name)); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
409 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
410 |
|
49765 | 411 |
public static boolean getBooleanProperty(String name, boolean def) { |
48083 | 412 |
return AccessController.doPrivileged((PrivilegedAction<Boolean>) () -> |
413 |
Boolean.parseBoolean(System.getProperty(name, String.valueOf(def)))); |
|
414 |
} |
|
415 |
||
49765 | 416 |
public static String getProperty(String name) { |
417 |
return AccessController.doPrivileged((PrivilegedAction<String>) () -> |
|
418 |
System.getProperty(name)); |
|
419 |
} |
|
420 |
||
421 |
public static int getIntegerProperty(String name, int defaultValue) { |
|
422 |
return AccessController.doPrivileged((PrivilegedAction<Integer>) () -> |
|
423 |
Integer.parseInt(System.getProperty(name, String.valueOf(defaultValue)))); |
|
424 |
} |
|
425 |
||
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
426 |
public static SSLParameters copySSLParameters(SSLParameters p) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
427 |
SSLParameters p1 = new SSLParameters(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
428 |
p1.setAlgorithmConstraints(p.getAlgorithmConstraints()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
429 |
p1.setCipherSuites(p.getCipherSuites()); |
43730 | 430 |
// JDK 8 EXCL START |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
431 |
p1.setEnableRetransmissions(p.getEnableRetransmissions()); |
43730 | 432 |
p1.setMaximumPacketSize(p.getMaximumPacketSize()); |
433 |
// JDK 8 EXCL END |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
434 |
p1.setEndpointIdentificationAlgorithm(p.getEndpointIdentificationAlgorithm()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
435 |
p1.setNeedClientAuth(p.getNeedClientAuth()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
436 |
String[] protocols = p.getProtocols(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
437 |
if (protocols != null) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
438 |
p1.setProtocols(protocols.clone()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
439 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
440 |
p1.setSNIMatchers(p.getSNIMatchers()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
441 |
p1.setServerNames(p.getServerNames()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
442 |
p1.setUseCipherSuitesOrder(p.getUseCipherSuitesOrder()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
443 |
p1.setWantClientAuth(p.getWantClientAuth()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
444 |
return p1; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
445 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
446 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
447 |
/** |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
448 |
* Set limit to position, and position to mark. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
449 |
*/ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
450 |
public static void flipToMark(ByteBuffer buffer, int mark) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
451 |
buffer.limit(buffer.position()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
452 |
buffer.position(mark); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
453 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
454 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
455 |
public static String stackTrace(Throwable t) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
456 |
ByteArrayOutputStream bos = new ByteArrayOutputStream(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
457 |
String s = null; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
458 |
try { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
459 |
PrintStream p = new PrintStream(bos, true, "US-ASCII"); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
460 |
t.printStackTrace(p); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
461 |
s = bos.toString("US-ASCII"); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
462 |
} catch (UnsupportedEncodingException ex) { |
48083 | 463 |
throw new InternalError(ex); // Can't happen |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
464 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
465 |
return s; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
466 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
467 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
468 |
/** |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
469 |
* Copies as much of src to dst as possible. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
470 |
* Return number of bytes copied |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
471 |
*/ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
472 |
public static int copy(ByteBuffer src, ByteBuffer dst) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
473 |
int srcLen = src.remaining(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
474 |
int dstLen = dst.remaining(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
475 |
if (srcLen > dstLen) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
476 |
int diff = srcLen - dstLen; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
477 |
int limit = src.limit(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
478 |
src.limit(limit - diff); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
479 |
dst.put(src); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
480 |
src.limit(limit); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
481 |
} else { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
482 |
dst.put(src); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
483 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
484 |
return srcLen - src.remaining(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
485 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
486 |
|
48083 | 487 |
/** Threshold beyond which data is no longer copied into the current |
488 |
* buffer, if that buffer has enough unused space. */ |
|
489 |
private static final int COPY_THRESHOLD = 8192; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
490 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
491 |
/** |
48083 | 492 |
* Adds the data from buffersToAdd to currentList. Either 1) appends the |
493 |
* data from a particular buffer to the last buffer in the list ( if |
|
494 |
* there is enough unused space ), or 2) adds it to the list. |
|
495 |
* |
|
496 |
* @return the number of bytes added |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
497 |
*/ |
48083 | 498 |
public static long accumulateBuffers(List<ByteBuffer> currentList, |
499 |
List<ByteBuffer> buffersToAdd) { |
|
500 |
long accumulatedBytes = 0; |
|
501 |
for (ByteBuffer bufferToAdd : buffersToAdd) { |
|
502 |
int remaining = bufferToAdd.remaining(); |
|
503 |
if (remaining <= 0) |
|
504 |
continue; |
|
505 |
int listSize = currentList.size(); |
|
506 |
if (listSize == 0) { |
|
507 |
currentList.add(bufferToAdd); |
|
508 |
accumulatedBytes = remaining; |
|
509 |
continue; |
|
510 |
} |
|
511 |
||
512 |
ByteBuffer lastBuffer = currentList.get(listSize - 1); |
|
513 |
int freeSpace = lastBuffer.capacity() - lastBuffer.limit(); |
|
514 |
if (remaining <= COPY_THRESHOLD && freeSpace >= remaining) { |
|
515 |
// append the new data to the unused space in the last buffer |
|
516 |
int position = lastBuffer.position(); |
|
517 |
int limit = lastBuffer.limit(); |
|
518 |
lastBuffer.position(limit); |
|
519 |
lastBuffer.limit(limit + remaining); |
|
520 |
lastBuffer.put(bufferToAdd); |
|
521 |
lastBuffer.position(position); |
|
522 |
} else { |
|
523 |
currentList.add(bufferToAdd); |
|
524 |
} |
|
525 |
accumulatedBytes += remaining; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
526 |
} |
48083 | 527 |
return accumulatedBytes; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
528 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
529 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
530 |
public static ByteBuffer copy(ByteBuffer src) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
531 |
ByteBuffer dst = ByteBuffer.allocate(src.remaining()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
532 |
dst.put(src); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
533 |
dst.flip(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
534 |
return dst; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
535 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
536 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
537 |
public static String dump(Object... objects) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
538 |
return Arrays.toString(objects); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
539 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
540 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
541 |
public static String stringOf(Collection<?> source) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
542 |
// We don't know anything about toString implementation of this |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
543 |
// collection, so let's create an array |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
544 |
return Arrays.toString(source.toArray()); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
545 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
546 |
|
48083 | 547 |
public static long remaining(ByteBuffer[] bufs) { |
548 |
long remain = 0; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
549 |
for (ByteBuffer buf : bufs) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
550 |
remain += buf.remaining(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
551 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
552 |
return remain; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
553 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
554 |
|
48083 | 555 |
public static boolean hasRemaining(List<ByteBuffer> bufs) { |
556 |
synchronized (bufs) { |
|
557 |
for (ByteBuffer buf : bufs) { |
|
558 |
if (buf.hasRemaining()) |
|
559 |
return true; |
|
560 |
} |
|
561 |
} |
|
562 |
return false; |
|
563 |
} |
|
564 |
||
565 |
public static long remaining(List<ByteBuffer> bufs) { |
|
566 |
long remain = 0; |
|
567 |
synchronized (bufs) { |
|
568 |
for (ByteBuffer buf : bufs) { |
|
569 |
remain += buf.remaining(); |
|
570 |
} |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
571 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
572 |
return remain; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
573 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
574 |
|
48083 | 575 |
public static int remaining(List<ByteBuffer> bufs, int max) { |
576 |
long remain = 0; |
|
577 |
synchronized (bufs) { |
|
578 |
for (ByteBuffer buf : bufs) { |
|
579 |
remain += buf.remaining(); |
|
580 |
if (remain > max) { |
|
581 |
throw new IllegalArgumentException("too many bytes"); |
|
582 |
} |
|
583 |
} |
|
584 |
} |
|
585 |
return (int) remain; |
|
586 |
} |
|
587 |
||
588 |
public static int remaining(ByteBuffer[] refs, int max) { |
|
589 |
long remain = 0; |
|
590 |
for (ByteBuffer b : refs) { |
|
591 |
remain += b.remaining(); |
|
592 |
if (remain > max) { |
|
593 |
throw new IllegalArgumentException("too many bytes"); |
|
594 |
} |
|
595 |
} |
|
596 |
return (int) remain; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
597 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
598 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
599 |
public static void close(Closeable... closeables) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
600 |
for (Closeable c : closeables) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
601 |
try { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
602 |
c.close(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
603 |
} catch (IOException ignored) { } |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
604 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
605 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
606 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
607 |
// Put all these static 'empty' singletons here |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
608 |
public static final ByteBuffer EMPTY_BYTEBUFFER = ByteBuffer.allocate(0); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
609 |
public static final ByteBuffer[] EMPTY_BB_ARRAY = new ByteBuffer[0]; |
48083 | 610 |
public static final List<ByteBuffer> EMPTY_BB_LIST = List.of(); |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
611 |
|
48703
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
612 |
/** |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
613 |
* Returns a slice of size {@code amount} from the given buffer. If the |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
614 |
* buffer contains more data than {@code amount}, then the slice's capacity |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
615 |
* ( and, but not just, its limit ) is set to {@code amount}. If the buffer |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
616 |
* does not contain more data than {@code amount}, then the slice's capacity |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
617 |
* will be the same as the given buffer's capacity. |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
618 |
*/ |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
619 |
public static ByteBuffer sliceWithLimitedCapacity(ByteBuffer buffer, int amount) { |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
620 |
final int index = buffer.position() + amount; |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
621 |
final int limit = buffer.limit(); |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
622 |
if (index != limit) { |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
623 |
// additional data in the buffer |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
624 |
buffer.limit(index); // ensures that the slice does not go beyond |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
625 |
} else { |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
626 |
// no additional data in the buffer |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
627 |
buffer.limit(buffer.capacity()); // allows the slice full capacity |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
628 |
} |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
629 |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
630 |
ByteBuffer newb = buffer.slice(); |
48703
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
631 |
buffer.position(index); |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
632 |
buffer.limit(limit); // restore the original buffer's limit |
3eae36c6baa5
8195823: Buffers given to response body subscribers should not contain unprocessed HTTP data
chegar
parents:
48083
diff
changeset
|
633 |
newb.limit(amount); // slices limit to amount (capacity may be greater) |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
634 |
return newb; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
635 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
636 |
|
43730 | 637 |
/** |
638 |
* Get the Charset from the Content-encoding header. Defaults to |
|
639 |
* UTF_8 |
|
640 |
*/ |
|
641 |
public static Charset charsetFrom(HttpHeaders headers) { |
|
49765 | 642 |
String type = headers.firstValue("Content-type") |
643 |
.orElse("text/html; charset=utf-8"); |
|
644 |
int i = type.indexOf(";"); |
|
645 |
if (i >= 0) type = type.substring(i+1); |
|
43730 | 646 |
try { |
49765 | 647 |
HeaderParser parser = new HeaderParser(type); |
648 |
String value = parser.findValue("charset"); |
|
649 |
if (value == null) return StandardCharsets.UTF_8; |
|
650 |
return Charset.forName(value); |
|
651 |
} catch (Throwable x) { |
|
652 |
Log.logTrace("Can't find charset in \"{0}\" ({1})", type, x); |
|
43730 | 653 |
return StandardCharsets.UTF_8; |
654 |
} |
|
655 |
} |
|
656 |
||
657 |
public static UncheckedIOException unchecked(IOException e) { |
|
658 |
return new UncheckedIOException(e); |
|
659 |
} |
|
48083 | 660 |
|
661 |
/** |
|
662 |
* Get a logger for debug HTTP traces. |
|
663 |
* |
|
664 |
* The logger should only be used with levels whose severity is |
|
665 |
* {@code <= DEBUG}. By default, this logger will forward all messages |
|
666 |
* logged to an internal logger named "jdk.internal.httpclient.debug". |
|
667 |
* In addition, if the property -Djdk.internal.httpclient.debug=true is set, |
|
668 |
* it will print the messages on stderr. |
|
669 |
* The logger will add some decoration to the printed message, in the form of |
|
670 |
* {@code <Level>:[<thread-name>] [<elapsed-time>] <dbgTag>: <formatted message>} |
|
671 |
* |
|
672 |
* @param dbgTag A lambda that returns a string that identifies the caller |
|
673 |
* (e.g: "SocketTube(3)", or "Http2Connection(SocketTube(3))") |
|
674 |
* |
|
675 |
* @return A logger for HTTP internal debug traces |
|
676 |
*/ |
|
677 |
public static Logger getDebugLogger(Supplier<String> dbgTag) { |
|
678 |
return getDebugLogger(dbgTag, DEBUG); |
|
679 |
} |
|
680 |
||
681 |
/** |
|
682 |
* Get a logger for debug HTTP traces.The logger should only be used |
|
683 |
* with levels whose severity is {@code <= DEBUG}. |
|
684 |
* |
|
685 |
* By default, this logger will forward all messages logged to an internal |
|
686 |
* logger named "jdk.internal.httpclient.debug". |
|
687 |
* In addition, if the message severity level is >= to |
|
688 |
* the provided {@code errLevel} it will print the messages on stderr. |
|
689 |
* The logger will add some decoration to the printed message, in the form of |
|
690 |
* {@code <Level>:[<thread-name>] [<elapsed-time>] <dbgTag>: <formatted message>} |
|
691 |
* |
|
692 |
* @apiNote To obtain a logger that will always print things on stderr in |
|
693 |
* addition to forwarding to the internal logger, use |
|
694 |
* {@code getDebugLogger(this::dbgTag, Level.ALL);}. |
|
695 |
* This is also equivalent to calling |
|
696 |
* {@code getDebugLogger(this::dbgTag, true);}. |
|
697 |
* To obtain a logger that will only forward to the internal logger, |
|
698 |
* use {@code getDebugLogger(this::dbgTag, Level.OFF);}. |
|
699 |
* This is also equivalent to calling |
|
700 |
* {@code getDebugLogger(this::dbgTag, false);}. |
|
701 |
* |
|
702 |
* @param dbgTag A lambda that returns a string that identifies the caller |
|
703 |
* (e.g: "SocketTube(3)", or "Http2Connection(SocketTube(3))") |
|
704 |
* @param errLevel The level above which messages will be also printed on |
|
705 |
* stderr (in addition to be forwarded to the internal logger). |
|
706 |
* |
|
707 |
* @return A logger for HTTP internal debug traces |
|
708 |
*/ |
|
709 |
static Logger getDebugLogger(Supplier<String> dbgTag, Level errLevel) { |
|
710 |
return DebugLogger.createHttpLogger(dbgTag, Level.OFF, errLevel); |
|
711 |
} |
|
712 |
||
713 |
/** |
|
714 |
* Get a logger for debug HTTP traces.The logger should only be used |
|
715 |
* with levels whose severity is {@code <= DEBUG}. |
|
716 |
* |
|
717 |
* By default, this logger will forward all messages logged to an internal |
|
718 |
* logger named "jdk.internal.httpclient.debug". |
|
719 |
* In addition, the provided boolean {@code on==true}, it will print the |
|
720 |
* messages on stderr. |
|
721 |
* The logger will add some decoration to the printed message, in the form of |
|
722 |
* {@code <Level>:[<thread-name>] [<elapsed-time>] <dbgTag>: <formatted message>} |
|
723 |
* |
|
724 |
* @apiNote To obtain a logger that will always print things on stderr in |
|
725 |
* addition to forwarding to the internal logger, use |
|
726 |
* {@code getDebugLogger(this::dbgTag, true);}. |
|
727 |
* This is also equivalent to calling |
|
728 |
* {@code getDebugLogger(this::dbgTag, Level.ALL);}. |
|
729 |
* To obtain a logger that will only forward to the internal logger, |
|
730 |
* use {@code getDebugLogger(this::dbgTag, false);}. |
|
731 |
* This is also equivalent to calling |
|
732 |
* {@code getDebugLogger(this::dbgTag, Level.OFF);}. |
|
733 |
* |
|
734 |
* @param dbgTag A lambda that returns a string that identifies the caller |
|
735 |
* (e.g: "SocketTube(3)", or "Http2Connection(SocketTube(3))") |
|
736 |
* @param on Whether messages should also be printed on |
|
737 |
* stderr (in addition to be forwarded to the internal logger). |
|
738 |
* |
|
739 |
* @return A logger for HTTP internal debug traces |
|
740 |
*/ |
|
741 |
public static Logger getDebugLogger(Supplier<String> dbgTag, boolean on) { |
|
742 |
Level errLevel = on ? Level.ALL : Level.OFF; |
|
743 |
return getDebugLogger(dbgTag, errLevel); |
|
744 |
} |
|
745 |
||
746 |
/** |
|
747 |
* Get a logger for debug HPACK traces.The logger should only be used |
|
748 |
* with levels whose severity is {@code <= DEBUG}. |
|
749 |
* |
|
750 |
* By default, this logger will forward all messages logged to an internal |
|
751 |
* logger named "jdk.internal.httpclient.hpack.debug". |
|
752 |
* In addition, if the message severity level is >= to |
|
49765 | 753 |
* the provided {@code errLevel} it will print the messages on stderr. |
48083 | 754 |
* The logger will add some decoration to the printed message, in the form of |
755 |
* {@code <Level>:[<thread-name>] [<elapsed-time>] <dbgTag>: <formatted message>} |
|
756 |
* |
|
49765 | 757 |
* @apiNote To obtain a logger that will always print things on stderr in |
48083 | 758 |
* addition to forwarding to the internal logger, use |
759 |
* {@code getHpackLogger(this::dbgTag, Level.ALL);}. |
|
760 |
* This is also equivalent to calling |
|
761 |
* {@code getHpackLogger(this::dbgTag, true);}. |
|
762 |
* To obtain a logger that will only forward to the internal logger, |
|
763 |
* use {@code getHpackLogger(this::dbgTag, Level.OFF);}. |
|
764 |
* This is also equivalent to calling |
|
765 |
* {@code getHpackLogger(this::dbgTag, false);}. |
|
766 |
* |
|
767 |
* @param dbgTag A lambda that returns a string that identifies the caller |
|
768 |
* (e.g: "Http2Connection(SocketTube(3))/hpack.Decoder(3)") |
|
49765 | 769 |
* @param errLevel The level above which messages will be also printed on |
770 |
* stderr (in addition to be forwarded to the internal logger). |
|
48083 | 771 |
* |
772 |
* @return A logger for HPACK internal debug traces |
|
773 |
*/ |
|
49765 | 774 |
public static Logger getHpackLogger(Supplier<String> dbgTag, Level errLevel) { |
775 |
Level outLevel = Level.OFF; |
|
48083 | 776 |
return DebugLogger.createHpackLogger(dbgTag, outLevel, errLevel); |
777 |
} |
|
778 |
||
779 |
/** |
|
780 |
* Get a logger for debug HPACK traces.The logger should only be used |
|
781 |
* with levels whose severity is {@code <= DEBUG}. |
|
782 |
* |
|
783 |
* By default, this logger will forward all messages logged to an internal |
|
784 |
* logger named "jdk.internal.httpclient.hpack.debug". |
|
785 |
* In addition, the provided boolean {@code on==true}, it will print the |
|
49765 | 786 |
* messages on stderr. |
48083 | 787 |
* The logger will add some decoration to the printed message, in the form of |
788 |
* {@code <Level>:[<thread-name>] [<elapsed-time>] <dbgTag>: <formatted message>} |
|
789 |
* |
|
49765 | 790 |
* @apiNote To obtain a logger that will always print things on stderr in |
48083 | 791 |
* addition to forwarding to the internal logger, use |
792 |
* {@code getHpackLogger(this::dbgTag, true);}. |
|
793 |
* This is also equivalent to calling |
|
794 |
* {@code getHpackLogger(this::dbgTag, Level.ALL);}. |
|
795 |
* To obtain a logger that will only forward to the internal logger, |
|
796 |
* use {@code getHpackLogger(this::dbgTag, false);}. |
|
797 |
* This is also equivalent to calling |
|
798 |
* {@code getHpackLogger(this::dbgTag, Level.OFF);}. |
|
799 |
* |
|
800 |
* @param dbgTag A lambda that returns a string that identifies the caller |
|
801 |
* (e.g: "Http2Connection(SocketTube(3))/hpack.Decoder(3)") |
|
802 |
* @param on Whether messages should also be printed on |
|
49765 | 803 |
* stderr (in addition to be forwarded to the internal logger). |
48083 | 804 |
* |
805 |
* @return A logger for HPACK internal debug traces |
|
806 |
*/ |
|
807 |
public static Logger getHpackLogger(Supplier<String> dbgTag, boolean on) { |
|
49765 | 808 |
Level errLevel = on ? Level.ALL : Level.OFF; |
809 |
return getHpackLogger(dbgTag, errLevel); |
|
810 |
} |
|
811 |
||
812 |
/** |
|
813 |
* Get a logger for debug WebSocket traces.The logger should only be used |
|
814 |
* with levels whose severity is {@code <= DEBUG}. |
|
815 |
* |
|
816 |
* By default, this logger will forward all messages logged to an internal |
|
817 |
* logger named "jdk.internal.httpclient.websocket.debug". |
|
818 |
* In addition, if the message severity level is >= to |
|
819 |
* the provided {@code errLevel} it will print the messages on stderr. |
|
820 |
* The logger will add some decoration to the printed message, in the form of |
|
821 |
* {@code <Level>:[<thread-name>] [<elapsed-time>] <dbgTag>: <formatted message>} |
|
822 |
* |
|
823 |
* @apiNote To obtain a logger that will always print things on stderr in |
|
824 |
* addition to forwarding to the internal logger, use |
|
825 |
* {@code getWebSocketLogger(this::dbgTag, Level.ALL);}. |
|
826 |
* This is also equivalent to calling |
|
827 |
* {@code getWSLogger(this::dbgTag, true);}. |
|
828 |
* To obtain a logger that will only forward to the internal logger, |
|
829 |
* use {@code getWebSocketLogger(this::dbgTag, Level.OFF);}. |
|
830 |
* This is also equivalent to calling |
|
831 |
* {@code getWSLogger(this::dbgTag, false);}. |
|
832 |
* |
|
833 |
* @param dbgTag A lambda that returns a string that identifies the caller |
|
834 |
* (e.g: "WebSocket(3)") |
|
835 |
* @param errLevel The level above which messages will be also printed on |
|
836 |
* stderr (in addition to be forwarded to the internal logger). |
|
837 |
* |
|
838 |
* @return A logger for HPACK internal debug traces |
|
839 |
*/ |
|
840 |
public static Logger getWebSocketLogger(Supplier<String> dbgTag, Level errLevel) { |
|
841 |
Level outLevel = Level.OFF; |
|
842 |
return DebugLogger.createWebSocketLogger(dbgTag, outLevel, errLevel); |
|
843 |
} |
|
844 |
||
845 |
/** |
|
846 |
* Get a logger for debug WebSocket traces.The logger should only be used |
|
847 |
* with levels whose severity is {@code <= DEBUG}. |
|
848 |
* |
|
849 |
* By default, this logger will forward all messages logged to an internal |
|
850 |
* logger named "jdk.internal.httpclient.websocket.debug". |
|
851 |
* In addition, the provided boolean {@code on==true}, it will print the |
|
852 |
* messages on stderr. |
|
853 |
* The logger will add some decoration to the printed message, in the form of |
|
854 |
* {@code <Level>:[<thread-name>] [<elapsed-time>] <dbgTag>: <formatted message>} |
|
855 |
* |
|
856 |
* @apiNote To obtain a logger that will always print things on stderr in |
|
857 |
* addition to forwarding to the internal logger, use |
|
858 |
* {@code getWebSocketLogger(this::dbgTag, true);}. |
|
859 |
* This is also equivalent to calling |
|
860 |
* {@code getWebSocketLogger(this::dbgTag, Level.ALL);}. |
|
861 |
* To obtain a logger that will only forward to the internal logger, |
|
862 |
* use {@code getWebSocketLogger(this::dbgTag, false);}. |
|
863 |
* This is also equivalent to calling |
|
864 |
* {@code getHpackLogger(this::dbgTag, Level.OFF);}. |
|
865 |
* |
|
866 |
* @param dbgTag A lambda that returns a string that identifies the caller |
|
867 |
* (e.g: "WebSocket(3)") |
|
868 |
* @param on Whether messages should also be printed on |
|
869 |
* stderr (in addition to be forwarded to the internal logger). |
|
870 |
* |
|
871 |
* @return A logger for WebSocket internal debug traces |
|
872 |
*/ |
|
873 |
public static Logger getWebSocketLogger(Supplier<String> dbgTag, boolean on) { |
|
874 |
Level errLevel = on ? Level.ALL : Level.OFF; |
|
875 |
return getWebSocketLogger(dbgTag, errLevel); |
|
876 |
} |
|
877 |
||
878 |
/** |
|
879 |
* SSLSessions returned to user are wrapped in an immutable object |
|
880 |
*/ |
|
881 |
public static SSLSession immutableSession(SSLSession session) { |
|
882 |
if (session instanceof ExtendedSSLSession) |
|
883 |
return new ImmutableExtendedSSLSession((ExtendedSSLSession)session); |
|
884 |
else |
|
885 |
return new ImmutableSSLSession(session); |
|
886 |
} |
|
887 |
||
888 |
/** |
|
889 |
* Enabled by default. May be disabled for testing. Use with care |
|
890 |
*/ |
|
891 |
public static boolean isHostnameVerificationDisabled() { |
|
892 |
return isHostnameVerificationDisabled; |
|
893 |
} |
|
894 |
||
895 |
public static InetSocketAddress resolveAddress(InetSocketAddress address) { |
|
896 |
if (address != null && address.isUnresolved()) { |
|
897 |
// The default proxy selector may select a proxy whose address is |
|
898 |
// unresolved. We must resolve the address before connecting to it. |
|
899 |
address = new InetSocketAddress(address.getHostString(), address.getPort()); |
|
900 |
} |
|
901 |
return address; |
|
902 |
} |
|
903 |
||
904 |
/** |
|
905 |
* Returns the smallest (closest to zero) positive number {@code m} (which |
|
906 |
* is also a power of 2) such that {@code n <= m}. |
|
907 |
* <pre>{@code |
|
908 |
* n pow2Size(n) |
|
909 |
* ----------------------- |
|
910 |
* 0 1 |
|
911 |
* 1 1 |
|
912 |
* 2 2 |
|
913 |
* 3 4 |
|
914 |
* 4 4 |
|
915 |
* 5 8 |
|
916 |
* 6 8 |
|
917 |
* 7 8 |
|
918 |
* 8 8 |
|
919 |
* 9 16 |
|
920 |
* 10 16 |
|
921 |
* ... ... |
|
922 |
* 2147483647 1073741824 |
|
923 |
* } </pre> |
|
924 |
* |
|
925 |
* The result is capped at {@code 1 << 30} as beyond that int wraps. |
|
926 |
* |
|
927 |
* @param n |
|
928 |
* capacity |
|
929 |
* |
|
930 |
* @return the size of the array |
|
931 |
* @apiNote Used to size arrays in circular buffers (rings), usually in |
|
932 |
* order to squeeze extra performance substituting {@code %} operation for |
|
933 |
* {@code &}, which is up to 2 times faster. |
|
934 |
*/ |
|
935 |
public static int pow2Size(int n) { |
|
936 |
if (n < 0) { |
|
937 |
throw new IllegalArgumentException(); |
|
938 |
} else if (n == 0) { |
|
939 |
return 1; |
|
940 |
} else if (n >= (1 << 30)) { // 2^31 is a negative int |
|
941 |
return 1 << 30; |
|
942 |
} else { |
|
943 |
return 1 << (32 - Integer.numberOfLeadingZeros(n - 1)); |
|
944 |
} |
|
48083 | 945 |
} |
49944 | 946 |
|
947 |
// -- toAsciiString-like support to encode path and query URI segments |
|
948 |
||
949 |
private static final char[] hexDigits = { |
|
950 |
'0', '1', '2', '3', '4', '5', '6', '7', |
|
951 |
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F' |
|
952 |
}; |
|
953 |
||
954 |
private static void appendEscape(StringBuilder sb, byte b) { |
|
955 |
sb.append('%'); |
|
956 |
sb.append(hexDigits[(b >> 4) & 0x0f]); |
|
957 |
sb.append(hexDigits[(b >> 0) & 0x0f]); |
|
958 |
} |
|
959 |
||
960 |
// Encodes all characters >= \u0080 into escaped, normalized UTF-8 octets, |
|
961 |
// assuming that s is otherwise legal |
|
962 |
// |
|
963 |
public static String encode(String s) { |
|
964 |
int n = s.length(); |
|
965 |
if (n == 0) |
|
966 |
return s; |
|
967 |
||
968 |
// First check whether we actually need to encode |
|
969 |
for (int i = 0;;) { |
|
970 |
if (s.charAt(i) >= '\u0080') |
|
971 |
break; |
|
972 |
if (++i >= n) |
|
973 |
return s; |
|
974 |
} |
|
975 |
||
976 |
String ns = Normalizer.normalize(s, Normalizer.Form.NFC); |
|
977 |
ByteBuffer bb = null; |
|
978 |
try { |
|
979 |
bb = StandardCharsets.UTF_8.newEncoder() |
|
980 |
.onMalformedInput(CodingErrorAction.REPORT) |
|
981 |
.onUnmappableCharacter(CodingErrorAction.REPORT) |
|
982 |
.encode(CharBuffer.wrap(ns)); |
|
983 |
} catch (CharacterCodingException x) { |
|
984 |
assert false : x; |
|
985 |
} |
|
986 |
||
987 |
StringBuilder sb = new StringBuilder(); |
|
988 |
while (bb.hasRemaining()) { |
|
989 |
int b = bb.get() & 0xff; |
|
990 |
if (b >= 0x80) |
|
991 |
appendEscape(sb, (byte)b); |
|
992 |
else |
|
993 |
sb.append((char)b); |
|
994 |
} |
|
995 |
return sb.toString(); |
|
996 |
} |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
997 |
} |