/
githubmirror
/
jdk11u-dev
Обзор
Документация
Войти
/
githubmirror
/
jdk11u-dev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/jdk/java/net/httpclient/http2/server/Http2TestExchangeImpl.java
220 строк
7 KB
Alexey Bakhtin
8328286: Enhance HTTP client
03 окт 2024, 22:53
03 окт 2024, 22:53
2d393d8
Код
Авторство
О чём код?
/* * Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ import jdk.internal.net.http.common.HttpHeadersBuilder; import jdk.internal.net.http.frame.HeaderFrame; import jdk.internal.net.http.frame.HeadersFrame; import jdk.internal.net.http.frame.Http2Frame; import javax.net.ssl.SSLSession; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.InetSocketAddress; import java.net.URI; import java.net.http.HttpHeaders; import java.util.List; import java.util.Map; import java.util.concurrent.CompletableFuture; import java.util.function.BiPredicate; public class Http2TestExchangeImpl implements Http2TestExchange { static final String HEAD = "HEAD"; final HttpHeaders reqheaders; final HttpHeadersBuilder rspheadersBuilder; final URI uri; final String method; final InputStream is; final BodyOutputStream os; final SSLSession sslSession; final int streamid; final boolean pushAllowed; final Http2TestServerConnection conn; final Http2TestServer server; int responseCode = -1; long responseLength; Http2TestExchangeImpl(int streamid, String method, HttpHeaders reqheaders, HttpHeadersBuilder rspheadersBuilder, URI uri, InputStream is, SSLSession sslSession, BodyOutputStream os, Http2TestServerConnection conn, boolean pushAllowed) { this.reqheaders = reqheaders; this.rspheadersBuilder = rspheadersBuilder; this.uri = uri; this.method = method; this.is = is; this.streamid = streamid; this.os = os; this.sslSession = sslSession; this.pushAllowed = pushAllowed; this.conn = conn; this.server = conn.server; } @Override public HttpHeaders getRequestHeaders() { return reqheaders; } @Override public CompletableFuture<Long> sendPing() { return conn.sendPing(); } @Override public HttpHeadersBuilder getResponseHeaders() { return rspheadersBuilder; } @Override public URI getRequestURI() { return uri; } @Override public String getRequestMethod() { return method; } @Override public SSLSession getSSLSession() { return sslSession; } @Override public void close() { try { is.close(); os.close(); } catch (IOException e) { System.err.println("TestServer: HttpExchange.close exception: " + e); e.printStackTrace(); } } @Override public InputStream getRequestBody() { return is; } @Override public OutputStream getResponseBody() { return os; } public void sendResponseHeaders(int rCode, long responseLength) throws IOException { sendResponseHeaders(rCode, responseLength, (n,v) -> false); } @Override public void sendResponseHeaders(int rCode, long responseLength, BiPredicate<CharSequence, CharSequence> insertionPolicy) throws IOException { this.responseLength = responseLength; if (responseLength !=0 && rCode != 204 && !isHeadRequest()) { long clen = responseLength > 0 ? responseLength : 0; rspheadersBuilder.setHeader("Content-length", Long.toString(clen)); } rspheadersBuilder.setHeader(":status", Integer.toString(rCode)); HttpHeaders headers = rspheadersBuilder.build(); Http2TestServerConnection.ResponseHeaders response = new Http2TestServerConnection.ResponseHeaders(headers, insertionPolicy); response.streamid(streamid); response.setFlag(HeaderFrame.END_HEADERS); if (responseLength < 0 || rCode == 204) { response.setFlag(HeadersFrame.END_STREAM); os.closeInternal(); } conn.outputQ.put(response); os.goodToGo(); System.err.println("Sent response headers " + rCode); } @Override public void sendFrames(List<Http2Frame> frames) throws IOException { conn.sendFrames(frames); } @Override public InetSocketAddress getRemoteAddress() { return (InetSocketAddress) conn.socket.getRemoteSocketAddress(); } @Override public int getResponseCode() { return responseCode; } @Override public InetSocketAddress getLocalAddress() { return server.getAddress(); } @Override public String getProtocol() { return "HTTP/2"; } @Override public boolean serverPushAllowed() { return pushAllowed; } @Override public void serverPush(URI uri, HttpHeaders headers, InputStream content) { HttpHeadersBuilder headersBuilder = new HttpHeadersBuilder(); headersBuilder.setHeader(":method", "GET"); headersBuilder.setHeader(":scheme", uri.getScheme()); headersBuilder.setHeader(":authority", uri.getAuthority()); headersBuilder.setHeader(":path", uri.getPath()); for (Map.Entry<String,List<String>> entry : headers.map().entrySet()) { for (String value : entry.getValue()) headersBuilder.addHeader(entry.getKey(), value); } HttpHeaders combinedHeaders = headersBuilder.build(); OutgoingPushPromise pp = new OutgoingPushPromise(streamid, uri, combinedHeaders, content); pp.setFlag(HeaderFrame.END_HEADERS); try { conn.outputQ.put(pp); // writeLoop will spin up thread to read the InputStream } catch (IOException ex) { System.err.println("TestServer: pushPromise exception: " + ex); } } private boolean isHeadRequest() { return HEAD.equalsIgnoreCase(getRequestMethod()); } }