1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -144,14 +144,45 @@ static final class ConnectionAborter {
144
144
private volatile boolean closeRequested ;
145
145
146
146
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 );
149
160
}
150
161
151
162
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 ) {
155
186
if (connection != null ) {
156
187
try {
157
188
connection .close ();
@@ -160,11 +191,6 @@ void closeConnection() {
160
191
}
161
192
}
162
193
}
163
-
164
- void disable () {
165
- connection = null ;
166
- closeRequested = false ;
167
- }
168
194
}
169
195
170
196
// Called for 204 response - when no body is permitted
@@ -524,8 +550,11 @@ HttpResponse.BodySubscriber<T> ignoreBody(HttpResponse.ResponseInfo hdrs) {
524
550
client .client2 (),
525
551
this , e ::drainLeftOverBytes )
526
552
.thenCompose ((Http2Connection c ) -> {
553
+ HttpConnection connection = connectionAborter .disable ();
527
554
boolean cached = c .offerConnection ();
528
- if (cached ) connectionAborter .disable ();
555
+ if (!cached && connection != null ) {
556
+ connectionAborter .connection (connection );
557
+ }
529
558
Stream <T > s = c .getStream (1 );
530
559
531
560
if (s == null ) {
0 commit comments