Skip to content

Commit 710653c

Browse files
committedMar 15, 2022
8254786: java/net/httpclient/CancelRequestTest.java failing intermittently
Reviewed-by: jpai, michaelm
1 parent 34d4ffc commit 710653c

File tree

4 files changed

+56
-19
lines changed

4 files changed

+56
-19
lines changed
 

‎src/java.net.http/share/classes/jdk/internal/net/http/Exchange.java

+41-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -144,14 +144,45 @@ static final class ConnectionAborter {
144144
private volatile boolean closeRequested;
145145

146146
void connection(HttpConnection connection) {
147-
this.connection = connection;
148-
if (closeRequested) closeConnection();
147+
boolean closeRequested;
148+
synchronized (this) {
149+
// check whether this new connection should be
150+
// closed
151+
closeRequested = this.closeRequested;
152+
if (!closeRequested) {
153+
this.connection = connection;
154+
} else {
155+
// assert this.connection == null
156+
this.closeRequested = false;
157+
}
158+
}
159+
if (closeRequested) closeConnection(connection);
149160
}
150161

151162
void closeConnection() {
152-
closeRequested = true;
153-
HttpConnection connection = this.connection;
154-
this.connection = null;
163+
HttpConnection connection;
164+
synchronized (this) {
165+
connection = this.connection;
166+
if (connection == null) {
167+
closeRequested = true;
168+
} else {
169+
this.connection = null;
170+
}
171+
}
172+
closeConnection(connection);
173+
}
174+
175+
HttpConnection disable() {
176+
HttpConnection connection;
177+
synchronized (this) {
178+
connection = this.connection;
179+
this.connection = null;
180+
this.closeRequested = false;
181+
}
182+
return connection;
183+
}
184+
185+
private static void closeConnection(HttpConnection connection) {
155186
if (connection != null) {
156187
try {
157188
connection.close();
@@ -160,11 +191,6 @@ void closeConnection() {
160191
}
161192
}
162193
}
163-
164-
void disable() {
165-
connection = null;
166-
closeRequested = false;
167-
}
168194
}
169195

170196
// Called for 204 response - when no body is permitted
@@ -524,8 +550,11 @@ HttpResponse.BodySubscriber<T> ignoreBody(HttpResponse.ResponseInfo hdrs) {
524550
client.client2(),
525551
this, e::drainLeftOverBytes)
526552
.thenCompose((Http2Connection c) -> {
553+
HttpConnection connection = connectionAborter.disable();
527554
boolean cached = c.offerConnection();
528-
if (cached) connectionAborter.disable();
555+
if (!cached && connection != null) {
556+
connectionAborter.connection(connection);
557+
}
529558
Stream<T> s = c.getStream(1);
530559

531560
if (s == null) {

‎src/java.net.http/share/classes/jdk/internal/net/http/Http2ClientImpl.java

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,7 +28,6 @@
2828
import java.io.EOFException;
2929
import java.io.IOException;
3030
import java.io.UncheckedIOException;
31-
import java.net.ConnectException;
3231
import java.net.InetSocketAddress;
3332
import java.net.URI;
3433
import java.util.Base64;
@@ -101,7 +100,7 @@ CompletableFuture<Http2Connection> getConnectionFor(HttpRequestImpl req,
101100
Http2Connection connection = connections.get(key);
102101
if (connection != null) {
103102
try {
104-
if (connection.closed || !connection.reserveStream(true)) {
103+
if (!connection.isOpen() || !connection.reserveStream(true)) {
105104
if (debug.on())
106105
debug.log("removing found closed or closing connection: %s", connection);
107106
deleteConnection(connection);
@@ -153,14 +152,19 @@ CompletableFuture<Http2Connection> getConnectionFor(HttpRequestImpl req,
153152
*/
154153
boolean offerConnection(Http2Connection c) {
155154
if (debug.on()) debug.log("offering to the connection pool: %s", c);
156-
if (c.closed || c.finalStream()) {
155+
if (!c.isOpen() || c.finalStream()) {
157156
if (debug.on())
158157
debug.log("skipping offered closed or closing connection: %s", c);
159158
return false;
160159
}
161160

162161
String key = c.key();
163162
synchronized(this) {
163+
if (!c.isOpen()) {
164+
if (debug.on())
165+
debug.log("skipping offered closed or closing connection: %s", c);
166+
return false;
167+
}
164168
Http2Connection c1 = connections.putIfAbsent(key, c);
165169
if (c1 != null) {
166170
c.setFinalStream();

‎src/java.net.http/share/classes/jdk/internal/net/http/Http2Connection.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -880,6 +880,10 @@ private void handleConnectionFrame(Http2Frame frame)
880880
}
881881
}
882882

883+
boolean isOpen() {
884+
return !closed && connection.channel().isOpen();
885+
}
886+
883887
void resetStream(int streamid, int code) {
884888
try {
885889
if (connection.channel().isOpen()) {

‎test/jdk/java/net/httpclient/CancelRequestTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8245462 8229822
26+
* @bug 8245462 8229822 8254786
2727
* @summary Tests cancelling the request.
2828
* @library /test/lib http2/server
2929
* @key randomness

0 commit comments

Comments
 (0)
Please sign in to comment.