1
1
/*
2
- * Copyright (c) 1994, 2017 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1994, 2020 , 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
25
25
26
26
package sun .net .www ;
27
27
28
- import java .net .URL ;
29
- import java .util .*;
30
28
import java .io .*;
29
+ import java .util .concurrent .locks .ReentrantLock ;
31
30
import sun .net .ProgressSource ;
32
31
import sun .net .www .http .ChunkedInputStream ;
33
32
@@ -44,6 +43,7 @@ public class MeteredStream extends FilterInputStream {
44
43
protected long markedCount = 0 ;
45
44
protected int markLimit = -1 ;
46
45
protected ProgressSource pi ;
46
+ private final ReentrantLock readLock = new ReentrantLock ();
47
47
48
48
public MeteredStream (InputStream is , ProgressSource pi , long expected )
49
49
{
@@ -57,7 +57,9 @@ public MeteredStream(InputStream is, ProgressSource pi, long expected)
57
57
}
58
58
}
59
59
60
- private final void justRead (long n ) throws IOException {
60
+ private final void justRead (long n ) throws IOException {
61
+ assert isLockHeldByCurrentThread ();
62
+
61
63
if (n == -1 ) {
62
64
63
65
/*
@@ -99,6 +101,7 @@ private final void justRead(long n) throws IOException {
99
101
* Returns true if the mark is valid, false otherwise
100
102
*/
101
103
private boolean isMarked () {
104
+ assert isLockHeldByCurrentThread ();
102
105
103
106
if (markLimit < 0 ) {
104
107
return false ;
@@ -113,94 +116,130 @@ private boolean isMarked() {
113
116
return true ;
114
117
}
115
118
116
- public synchronized int read () throws java .io .IOException {
117
- if (closed ) {
118
- return -1 ;
119
- }
120
- int c = in .read ();
121
- if (c != -1 ) {
122
- justRead (1 );
123
- } else {
124
- justRead (c );
119
+ public int read () throws java .io .IOException {
120
+ lock ();
121
+ try {
122
+ if (closed ) return -1 ;
123
+ int c = in .read ();
124
+ if (c != -1 ) {
125
+ justRead (1 );
126
+ } else {
127
+ justRead (c );
128
+ }
129
+ return c ;
130
+ } finally {
131
+ unlock ();
125
132
}
126
- return c ;
127
133
}
128
134
129
- public synchronized int read (byte b [], int off , int len )
135
+ public int read (byte b [], int off , int len )
130
136
throws java .io .IOException {
131
- if (closed ) {
132
- return -1 ;
133
- }
134
- int n = in .read (b , off , len );
135
- justRead (n );
136
- return n ;
137
- }
138
-
139
- public synchronized long skip (long n ) throws IOException {
137
+ lock ();
138
+ try {
139
+ if (closed ) return -1 ;
140
140
141
- // REMIND: what does skip do on EOF????
142
- if (closed ) {
143
- return 0 ;
141
+ int n = in .read (b , off , len );
142
+ justRead (n );
143
+ return n ;
144
+ } finally {
145
+ unlock ();
144
146
}
147
+ }
145
148
146
- if (in instanceof ChunkedInputStream ) {
147
- n = in .skip (n );
148
- }
149
- else {
150
- // just skip min(n, num_bytes_left)
151
- long min = (n > expected - count ) ? expected - count : n ;
152
- n = in .skip (min );
149
+ public long skip (long n ) throws IOException {
150
+ lock ();
151
+ try {
152
+ // REMIND: what does skip do on EOF????
153
+ if (closed ) return 0 ;
154
+
155
+ if (in instanceof ChunkedInputStream ) {
156
+ n = in .skip (n );
157
+ } else {
158
+ // just skip min(n, num_bytes_left)
159
+ long min = (n > expected - count ) ? expected - count : n ;
160
+ n = in .skip (min );
161
+ }
162
+ justRead (n );
163
+ return n ;
164
+ } finally {
165
+ unlock ();
153
166
}
154
- justRead (n );
155
- return n ;
156
167
}
157
168
158
169
public void close () throws IOException {
159
- if ( closed ) {
160
- return ;
161
- }
162
- if (pi != null )
163
- pi .finishTracking ();
170
+ lock ();
171
+ try {
172
+ if ( closed ) return ;
173
+ if (pi != null )
174
+ pi .finishTracking ();
164
175
165
- closed = true ;
166
- in .close ();
176
+ closed = true ;
177
+ in .close ();
178
+ } finally {
179
+ unlock ();
180
+ }
167
181
}
168
182
169
- public synchronized int available () throws IOException {
170
- return closed ? 0 : in .available ();
183
+ public int available () throws IOException {
184
+ lock ();
185
+ try {
186
+ return closed ? 0 : in .available ();
187
+ } finally {
188
+ unlock ();
189
+ }
171
190
}
172
191
173
- public synchronized void mark (int readLimit ) {
174
- if ( closed ) {
175
- return ;
176
- }
177
- super .mark (readLimit );
192
+ public void mark (int readLimit ) {
193
+ lock ();
194
+ try {
195
+ if ( closed ) return ;
196
+ super .mark (readLimit );
178
197
179
- /*
180
- * mark the count to restore upon reset
181
- */
182
- markedCount = count ;
183
- markLimit = readLimit ;
198
+ /*
199
+ * mark the count to restore upon reset
200
+ */
201
+ markedCount = count ;
202
+ markLimit = readLimit ;
203
+ } finally {
204
+ unlock ();
205
+ }
184
206
}
185
207
186
- public synchronized void reset () throws IOException {
187
- if (closed ) {
188
- return ;
189
- }
208
+ public void reset () throws IOException {
209
+ lock ();
210
+ try {
211
+ if (closed ) return ;
212
+ if (!isMarked ()) {
213
+ throw new IOException ("Resetting to an invalid mark" );
214
+ }
190
215
191
- if (!isMarked ()) {
192
- throw new IOException ("Resetting to an invalid mark" );
216
+ count = markedCount ;
217
+ super .reset ();
218
+ } finally {
219
+ unlock ();
193
220
}
194
-
195
- count = markedCount ;
196
- super .reset ();
197
221
}
198
222
199
223
public boolean markSupported () {
200
- if (closed ) {
201
- return false ;
224
+ lock ();
225
+ try {
226
+ if (closed ) return false ;
227
+ return super .markSupported ();
228
+ } finally {
229
+ unlock ();
202
230
}
203
- return super .markSupported ();
231
+ }
232
+
233
+ public final void lock () {
234
+ readLock .lock ();
235
+ }
236
+
237
+ public final void unlock () {
238
+ readLock .unlock ();
239
+ }
240
+
241
+ public final boolean isLockHeldByCurrentThread () {
242
+ return readLock .isHeldByCurrentThread ();
204
243
}
205
244
206
245
@ SuppressWarnings ("deprecation" )
0 commit comments