author | mbaesken |
Thu, 28 Nov 2019 13:02:39 +0100 | |
changeset 59323 | ae2eb76c486d |
parent 58758 | 2b13d126a2d8 |
permissions | -rw-r--r-- |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
1 |
/* |
53521
41fa3e6f2785
8217429: WebSocket over authenticating proxy fails to send Upgrade headers
chegar
parents:
50681
diff
changeset
|
2 |
* Copyright (c) 2015, 2019, 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; |
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 java.io.IOException; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
29 |
import java.net.InetSocketAddress; |
48083 | 30 |
import java.net.Proxy; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
31 |
import java.net.ProxySelector; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
32 |
import java.net.URI; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
33 |
import java.security.AccessControlContext; |
48083 | 34 |
import java.security.AccessController; |
35 |
import java.security.PrivilegedAction; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
36 |
import java.time.Duration; |
48083 | 37 |
import java.util.List; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
38 |
import java.util.Locale; |
49765 | 39 |
import java.util.Objects; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
40 |
import java.util.Optional; |
49765 | 41 |
import java.net.http.HttpClient; |
42 |
import java.net.http.HttpHeaders; |
|
43 |
import java.net.http.HttpRequest; |
|
58758
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
44 |
|
50681 | 45 |
import jdk.internal.net.http.common.HttpHeadersBuilder; |
49765 | 46 |
import jdk.internal.net.http.common.Utils; |
53521
41fa3e6f2785
8217429: WebSocket over authenticating proxy fails to send Upgrade headers
chegar
parents:
50681
diff
changeset
|
47 |
import jdk.internal.net.http.websocket.OpeningHandshake; |
49765 | 48 |
import jdk.internal.net.http.websocket.WebSocketRequest; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
49 |
|
49765 | 50 |
import static jdk.internal.net.http.common.Utils.ALLOWED_HEADERS; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
51 |
|
50681 | 52 |
public class HttpRequestImpl extends HttpRequest implements WebSocketRequest { |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
53 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
54 |
private final HttpHeaders userHeaders; |
50681 | 55 |
private final HttpHeadersBuilder systemHeadersBuilder; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
56 |
private final URI uri; |
49765 | 57 |
private volatile Proxy proxy; // ensure safe publishing |
58 |
private final InetSocketAddress authority; // only used when URI not specified |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
59 |
private final String method; |
48083 | 60 |
final BodyPublisher requestPublisher; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
61 |
final boolean secure; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
62 |
final boolean expectContinue; |
49765 | 63 |
private volatile boolean isWebSocket; |
64 |
private volatile AccessControlContext acc; |
|
48083 | 65 |
private final Duration timeout; // may be null |
44854
5a486e0acd29
8175814: Update default HttpClient protocol version and optional request version
michaelm
parents:
43999
diff
changeset
|
66 |
private final Optional<HttpClient.Version> version; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
67 |
|
48083 | 68 |
private static String userAgent() { |
69 |
PrivilegedAction<String> pa = () -> System.getProperty("java.version"); |
|
70 |
String version = AccessController.doPrivileged(pa); |
|
71 |
return "Java-http-client/" + version; |
|
72 |
} |
|
73 |
||
74 |
/** The value of the User-Agent header for all requests sent by the client. */ |
|
75 |
public static final String USER_AGENT = userAgent(); |
|
76 |
||
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
77 |
/** |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
78 |
* Creates an HttpRequestImpl from the given builder. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
79 |
*/ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
80 |
public HttpRequestImpl(HttpRequestBuilderImpl builder) { |
45713
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
45119
diff
changeset
|
81 |
String method = builder.method(); |
48083 | 82 |
this.method = method == null ? "GET" : method; |
50681 | 83 |
this.userHeaders = HttpHeaders.of(builder.headersBuilder().map(), ALLOWED_HEADERS); |
84 |
this.systemHeadersBuilder = new HttpHeadersBuilder(); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
85 |
this.uri = builder.uri(); |
48083 | 86 |
assert uri != null; |
87 |
this.proxy = null; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
88 |
this.expectContinue = builder.expectContinue(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
89 |
this.secure = uri.getScheme().toLowerCase(Locale.US).equals("https"); |
48083 | 90 |
this.requestPublisher = builder.bodyPublisher(); // may be null |
91 |
this.timeout = builder.timeout(); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
92 |
this.version = builder.version(); |
49765 | 93 |
this.authority = null; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
94 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
95 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
96 |
/** |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
97 |
* Creates an HttpRequestImpl from the given request. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
98 |
*/ |
49765 | 99 |
public HttpRequestImpl(HttpRequest request, ProxySelector ps) { |
45713
ee3f2cbfe23a
8182589: TLS SNI in new Java 9 client is not available
michaelm
parents:
45119
diff
changeset
|
100 |
String method = request.method(); |
49765 | 101 |
if (method != null && !Utils.isValidName(method)) |
102 |
throw new IllegalArgumentException("illegal method \"" |
|
103 |
+ method.replace("\n","\\n") |
|
104 |
.replace("\r", "\\r") |
|
105 |
.replace("\t", "\\t") |
|
106 |
+ "\""); |
|
107 |
URI requestURI = Objects.requireNonNull(request.uri(), |
|
108 |
"uri must be non null"); |
|
109 |
Duration timeout = request.timeout().orElse(null); |
|
48083 | 110 |
this.method = method == null ? "GET" : method; |
50681 | 111 |
this.userHeaders = HttpHeaders.of(request.headers().map(), Utils.VALIDATE_USER_HEADER); |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
112 |
if (request instanceof HttpRequestImpl) { |
49765 | 113 |
// all cases exception WebSocket should have a new system headers |
43999
4cc44dd9f14f
8164625: Pooled HttpConnection should be removed during close
prappo
parents:
42460
diff
changeset
|
114 |
this.isWebSocket = ((HttpRequestImpl) request).isWebSocket; |
49765 | 115 |
if (isWebSocket) { |
50681 | 116 |
this.systemHeadersBuilder = ((HttpRequestImpl)request).systemHeadersBuilder; |
49765 | 117 |
} else { |
50681 | 118 |
this.systemHeadersBuilder = new HttpHeadersBuilder(); |
49765 | 119 |
} |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
120 |
} else { |
49765 | 121 |
HttpRequestBuilderImpl.checkURI(requestURI); |
122 |
checkTimeout(timeout); |
|
50681 | 123 |
this.systemHeadersBuilder = new HttpHeadersBuilder(); |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
124 |
} |
50681 | 125 |
if (!userHeaders.firstValue("User-Agent").isPresent()) { |
126 |
this.systemHeadersBuilder.setHeader("User-Agent", USER_AGENT); |
|
127 |
} |
|
49765 | 128 |
this.uri = requestURI; |
48083 | 129 |
if (isWebSocket) { |
130 |
// WebSocket determines and sets the proxy itself |
|
131 |
this.proxy = ((HttpRequestImpl) request).proxy; |
|
132 |
} else { |
|
133 |
if (ps != null) |
|
134 |
this.proxy = retrieveProxy(ps, uri); |
|
135 |
else |
|
136 |
this.proxy = null; |
|
137 |
} |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
138 |
this.expectContinue = request.expectContinue(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
139 |
this.secure = uri.getScheme().toLowerCase(Locale.US).equals("https"); |
48083 | 140 |
this.requestPublisher = request.bodyPublisher().orElse(null); |
49765 | 141 |
this.timeout = timeout; |
142 |
this.version = request.version(); |
|
143 |
this.authority = null; |
|
144 |
} |
|
145 |
||
146 |
private static void checkTimeout(Duration duration) { |
|
147 |
if (duration != null) { |
|
148 |
if (duration.isNegative() || Duration.ZERO.equals(duration)) |
|
149 |
throw new IllegalArgumentException("Invalid duration: " + duration); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
150 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
151 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
152 |
|
49765 | 153 |
/** Returns a new instance suitable for redirection. */ |
154 |
public static HttpRequestImpl newInstanceForRedirection(URI uri, |
|
155 |
String method, |
|
58758
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
156 |
HttpRequestImpl other, |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
157 |
boolean mayHaveBody) { |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
158 |
return new HttpRequestImpl(uri, method, other, mayHaveBody); |
49765 | 159 |
} |
160 |
||
161 |
/** Returns a new instance suitable for authentication. */ |
|
162 |
public static HttpRequestImpl newInstanceForAuthentication(HttpRequestImpl other) { |
|
58758
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
163 |
HttpRequestImpl request = new HttpRequestImpl(other.uri(), other.method(), other, true); |
53521
41fa3e6f2785
8217429: WebSocket over authenticating proxy fails to send Upgrade headers
chegar
parents:
50681
diff
changeset
|
164 |
if (request.isWebSocket()) { |
41fa3e6f2785
8217429: WebSocket over authenticating proxy fails to send Upgrade headers
chegar
parents:
50681
diff
changeset
|
165 |
Utils.setWebSocketUpgradeHeaders(request); |
41fa3e6f2785
8217429: WebSocket over authenticating proxy fails to send Upgrade headers
chegar
parents:
50681
diff
changeset
|
166 |
} |
41fa3e6f2785
8217429: WebSocket over authenticating proxy fails to send Upgrade headers
chegar
parents:
50681
diff
changeset
|
167 |
return request; |
49765 | 168 |
} |
169 |
||
170 |
/** |
|
171 |
* Creates a HttpRequestImpl using fields of an existing request impl. |
|
172 |
* The newly created HttpRequestImpl does not copy the system headers. |
|
173 |
*/ |
|
174 |
private HttpRequestImpl(URI uri, |
|
175 |
String method, |
|
58758
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
176 |
HttpRequestImpl other, |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
177 |
boolean mayHaveBody) { |
49765 | 178 |
assert method == null || Utils.isValidName(method); |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
179 |
this.method = method == null? "GET" : method; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
180 |
this.userHeaders = other.userHeaders; |
43999
4cc44dd9f14f
8164625: Pooled HttpConnection should be removed during close
prappo
parents:
42460
diff
changeset
|
181 |
this.isWebSocket = other.isWebSocket; |
50681 | 182 |
this.systemHeadersBuilder = new HttpHeadersBuilder(); |
183 |
if (!userHeaders.firstValue("User-Agent").isPresent()) { |
|
184 |
this.systemHeadersBuilder.setHeader("User-Agent", USER_AGENT); |
|
185 |
} |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
186 |
this.uri = uri; |
48083 | 187 |
this.proxy = other.proxy; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
188 |
this.expectContinue = other.expectContinue; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
189 |
this.secure = uri.getScheme().toLowerCase(Locale.US).equals("https"); |
58758
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
190 |
this.requestPublisher = mayHaveBody ? publisher(other) : null; // may be null |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
191 |
this.acc = other.acc; |
48083 | 192 |
this.timeout = other.timeout; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
193 |
this.version = other.version(); |
49765 | 194 |
this.authority = null; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
195 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
196 |
|
58758
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
197 |
private BodyPublisher publisher(HttpRequestImpl other) { |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
198 |
BodyPublisher res = other.requestPublisher; |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
199 |
if (!Objects.equals(method, other.method)) { |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
200 |
res = null; |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
201 |
} |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
202 |
return res; |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
203 |
} |
2b13d126a2d8
8232625: HttpClient redirect policy should be more conservative
dfuchs
parents:
53521
diff
changeset
|
204 |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
205 |
/* used for creating CONNECT requests */ |
49765 | 206 |
HttpRequestImpl(String method, InetSocketAddress authority, HttpHeaders headers) { |
43999
4cc44dd9f14f
8164625: Pooled HttpConnection should be removed during close
prappo
parents:
42460
diff
changeset
|
207 |
// TODO: isWebSocket flag is not specified, but the assumption is that |
4cc44dd9f14f
8164625: Pooled HttpConnection should be removed during close
prappo
parents:
42460
diff
changeset
|
208 |
// such a request will never be made on a connection that will be returned |
4cc44dd9f14f
8164625: Pooled HttpConnection should be removed during close
prappo
parents:
42460
diff
changeset
|
209 |
// to the connection pool (we might need to revisit this constructor later) |
49765 | 210 |
assert "CONNECT".equalsIgnoreCase(method); |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
211 |
this.method = method; |
50681 | 212 |
this.systemHeadersBuilder = new HttpHeadersBuilder(); |
213 |
this.userHeaders = headers; |
|
48083 | 214 |
this.uri = URI.create("socket://" + authority.getHostString() + ":" |
215 |
+ Integer.toString(authority.getPort()) + "/"); |
|
216 |
this.proxy = null; |
|
217 |
this.requestPublisher = null; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
218 |
this.authority = authority; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
219 |
this.secure = false; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
220 |
this.expectContinue = false; |
48083 | 221 |
this.timeout = null; |
222 |
// The CONNECT request sent for tunneling is only used in two cases: |
|
223 |
// 1. websocket, which only supports HTTP/1.1 |
|
224 |
// 2. SSL tunneling through a HTTP/1.1 proxy |
|
225 |
// In either case we do not want to upgrade the connection to the proxy. |
|
226 |
// What we want to possibly upgrade is the tunneled connection to the |
|
227 |
// target server (so not the CONNECT request itself) |
|
228 |
this.version = Optional.of(HttpClient.Version.HTTP_1_1); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
229 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
230 |
|
49765 | 231 |
final boolean isConnect() { |
232 |
return "CONNECT".equalsIgnoreCase(method); |
|
233 |
} |
|
234 |
||
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
235 |
/** |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
236 |
* Creates a HttpRequestImpl from the given set of Headers and the associated |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
237 |
* "parent" request. Fields not taken from the headers are taken from the |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
238 |
* parent. |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
239 |
*/ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
240 |
static HttpRequestImpl createPushRequest(HttpRequestImpl parent, |
50681 | 241 |
HttpHeaders headers) |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
242 |
throws IOException |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
243 |
{ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
244 |
return new HttpRequestImpl(parent, headers); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
245 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
246 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
247 |
// only used for push requests |
50681 | 248 |
private HttpRequestImpl(HttpRequestImpl parent, HttpHeaders headers) |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
249 |
throws IOException |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
250 |
{ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
251 |
this.method = headers.firstValue(":method") |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
252 |
.orElseThrow(() -> new IOException("No method in Push Promise")); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
253 |
String path = headers.firstValue(":path") |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
254 |
.orElseThrow(() -> new IOException("No path in Push Promise")); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
255 |
String scheme = headers.firstValue(":scheme") |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
256 |
.orElseThrow(() -> new IOException("No scheme in Push Promise")); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
257 |
String authority = headers.firstValue(":authority") |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
258 |
.orElseThrow(() -> new IOException("No authority in Push Promise")); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
259 |
StringBuilder sb = new StringBuilder(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
260 |
sb.append(scheme).append("://").append(authority).append(path); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
261 |
this.uri = URI.create(sb.toString()); |
48083 | 262 |
this.proxy = null; |
50681 | 263 |
this.userHeaders = HttpHeaders.of(headers.map(), ALLOWED_HEADERS); |
264 |
this.systemHeadersBuilder = parent.systemHeadersBuilder; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
265 |
this.expectContinue = parent.expectContinue; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
266 |
this.secure = parent.secure; |
48083 | 267 |
this.requestPublisher = parent.requestPublisher; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
268 |
this.acc = parent.acc; |
48083 | 269 |
this.timeout = parent.timeout; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
270 |
this.version = parent.version; |
49765 | 271 |
this.authority = null; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
272 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
273 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
274 |
@Override |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
275 |
public String toString() { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
276 |
return (uri == null ? "" : uri.toString()) + " " + method; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
277 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
278 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
279 |
@Override |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
280 |
public HttpHeaders headers() { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
281 |
return userHeaders; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
282 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
283 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
284 |
InetSocketAddress authority() { return authority; } |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
285 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
286 |
void setH2Upgrade(Http2ClientImpl h2client) { |
50681 | 287 |
systemHeadersBuilder.setHeader("Connection", "Upgrade, HTTP2-Settings"); |
288 |
systemHeadersBuilder.setHeader("Upgrade", "h2c"); |
|
289 |
systemHeadersBuilder.setHeader("HTTP2-Settings", h2client.getSettingsString()); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
290 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
291 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
292 |
@Override |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
293 |
public boolean expectContinue() { return expectContinue; } |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
294 |
|
48083 | 295 |
/** Retrieves the proxy, from the given ProxySelector, if there is one. */ |
296 |
private static Proxy retrieveProxy(ProxySelector ps, URI uri) { |
|
297 |
Proxy proxy = null; |
|
298 |
List<Proxy> pl = ps.select(uri); |
|
299 |
if (!pl.isEmpty()) { |
|
300 |
Proxy p = pl.get(0); |
|
301 |
if (p.type() == Proxy.Type.HTTP) |
|
302 |
proxy = p; |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
303 |
} |
48083 | 304 |
return proxy; |
305 |
} |
|
306 |
||
307 |
InetSocketAddress proxy() { |
|
308 |
if (proxy == null || proxy.type() != Proxy.Type.HTTP |
|
309 |
|| method.equalsIgnoreCase("CONNECT")) { |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
310 |
return null; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
311 |
} |
48083 | 312 |
return (InetSocketAddress)proxy.address(); |
42460
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 |
boolean secure() { return secure; } |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
316 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
317 |
@Override |
48083 | 318 |
public void setProxy(Proxy proxy) { |
319 |
assert isWebSocket; |
|
320 |
this.proxy = proxy; |
|
321 |
} |
|
322 |
||
323 |
@Override |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
324 |
public void isWebSocket(boolean is) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
325 |
isWebSocket = is; |
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 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
328 |
boolean isWebSocket() { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
329 |
return isWebSocket; |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
330 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
331 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
332 |
@Override |
48083 | 333 |
public Optional<BodyPublisher> bodyPublisher() { |
334 |
return requestPublisher == null ? Optional.empty() |
|
335 |
: Optional.of(requestPublisher); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
336 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
337 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
338 |
/** |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
339 |
* Returns the request method for this request. If not set explicitly, |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
340 |
* the default method for any request is "GET". |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
341 |
*/ |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
342 |
@Override |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
343 |
public String method() { return method; } |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
344 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
345 |
@Override |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
346 |
public URI uri() { return uri; } |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
347 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
348 |
@Override |
48083 | 349 |
public Optional<Duration> timeout() { |
350 |
return timeout == null ? Optional.empty() : Optional.of(timeout); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
351 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
352 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
353 |
HttpHeaders getUserHeaders() { return userHeaders; } |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
354 |
|
50681 | 355 |
HttpHeadersBuilder getSystemHeadersBuilder() { return systemHeadersBuilder; } |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
356 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
357 |
@Override |
44854
5a486e0acd29
8175814: Update default HttpClient protocol version and optional request version
michaelm
parents:
43999
diff
changeset
|
358 |
public Optional<HttpClient.Version> version() { return version; } |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
359 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
360 |
void addSystemHeader(String name, String value) { |
50681 | 361 |
systemHeadersBuilder.addHeader(name, value); |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
362 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
363 |
|
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
364 |
@Override |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
365 |
public void setSystemHeader(String name, String value) { |
50681 | 366 |
systemHeadersBuilder.setHeader(name, value); |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
367 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
368 |
|
48083 | 369 |
InetSocketAddress getAddress() { |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
370 |
URI uri = uri(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
371 |
if (uri == null) { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
372 |
return authority(); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
373 |
} |
48083 | 374 |
int p = uri.getPort(); |
375 |
if (p == -1) { |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
376 |
if (uri.getScheme().equalsIgnoreCase("https")) { |
48083 | 377 |
p = 443; |
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
378 |
} else { |
48083 | 379 |
p = 80; |
42460
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 |
} |
48083 | 382 |
final String host = uri.getHost(); |
383 |
final int port = p; |
|
384 |
if (proxy() == null) { |
|
385 |
PrivilegedAction<InetSocketAddress> pa = () -> new InetSocketAddress(host, port); |
|
386 |
return AccessController.doPrivileged(pa); |
|
42460
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
387 |
} else { |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
388 |
return InetSocketAddress.createUnresolved(host, port); |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
389 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
390 |
} |
7133f144981a
8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff
changeset
|
391 |
} |