jdk-24/jdk/test/java/net/httpclient/http2/server/Http2TestExchange.java
Michael McMahon 2de1b5ce26 8170648: Move java.net.http package out of Java SE to incubator namespace
Co-authored-by: Chris Hegarty <chris.hegarty@oracle.com>
Co-authored-by: Daniel Fuchs <daniel.fuchs@oracle.com>
Co-authored-by: Pavel Rappo <pavel.rappo@oracle.com>
Co-authored-by: Sergey Kuksenko <sergey.kuksenko@oracle.com>
Co-authored-by: Anthony Vanelverdinghe <anthony.vanelverdinghe@gmail.com>
Reviewed-by: chegar, dfuchs, michaelm, prappo, skuksenko
2016-12-09 11:35:02 +00:00

169 lines
5.2 KiB
Java

/*
* Copyright (c) 2016, 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 java.io.InputStream;
import java.io.OutputStream;
import java.io.IOException;
import java.net.URI;
import java.net.InetSocketAddress;
import javax.net.ssl.SSLSession;
import jdk.incubator.http.internal.common.HttpHeadersImpl;
import jdk.incubator.http.internal.frame.HeaderFrame;
import jdk.incubator.http.internal.frame.HeadersFrame;
public class Http2TestExchange {
final HttpHeadersImpl reqheaders;
final HttpHeadersImpl rspheaders;
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;
Http2TestExchange(int streamid,
String method,
HttpHeadersImpl reqheaders,
HttpHeadersImpl rspheaders,
URI uri,
InputStream is,
SSLSession sslSession,
BodyOutputStream os,
Http2TestServerConnection conn,
boolean pushAllowed) {
this.reqheaders = reqheaders;
this.rspheaders = rspheaders;
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;
}
public HttpHeadersImpl getRequestHeaders() {
return reqheaders;
}
public HttpHeadersImpl getResponseHeaders() {
return rspheaders;
}
public URI getRequestURI() {
return uri;
}
public String getRequestMethod() {
return method;
}
public SSLSession getSSLSession() {
return sslSession;
}
public void close() {
try {
is.close();
os.close();
} catch (IOException e) {
System.err.println("TestServer: HttpExchange.close exception: " + e);
e.printStackTrace();
}
}
public InputStream getRequestBody() {
return is;
}
public OutputStream getResponseBody() {
return os;
}
public void sendResponseHeaders(int rCode, long responseLength) throws IOException {
this.responseLength = responseLength;
if (responseLength > 0 || responseLength < 0) {
long clen = responseLength > 0 ? responseLength : 0;
rspheaders.setHeader("Content-length", Long.toString(clen));
}
rspheaders.setHeader(":status", Integer.toString(rCode));
Http2TestServerConnection.ResponseHeaders response
= new Http2TestServerConnection.ResponseHeaders(rspheaders);
response.streamid(streamid);
response.setFlag(HeaderFrame.END_HEADERS);
if (responseLength < 0) {
response.setFlag(HeadersFrame.END_STREAM);
os.closeInternal();
}
conn.outputQ.put(response);
os.goodToGo();
System.err.println("Sent response headers " + rCode);
}
public InetSocketAddress getRemoteAddress() {
return (InetSocketAddress) conn.socket.getRemoteSocketAddress();
}
public int getResponseCode() {
return responseCode;
}
public InetSocketAddress getLocalAddress() {
return server.getAddress();
}
public String getProtocol() {
return "HTTP/2";
}
public boolean serverPushAllowed() {
return pushAllowed;
}
public void serverPush(URI uri, HttpHeadersImpl headers, InputStream content) {
OutgoingPushPromise pp = new OutgoingPushPromise(
streamid, uri, headers, content);
headers.setHeader(":method", "GET");
headers.setHeader(":scheme", uri.getScheme());
headers.setHeader(":authority", uri.getAuthority());
headers.setHeader(":path", uri.getPath());
try {
conn.outputQ.put(pp);
// writeLoop will spin up thread to read the InputStream
} catch (IOException ex) {
System.err.println("TestServer: pushPromise exception: " + ex);
}
}
}