Mercurial Hosting > luan
annotate src/org/eclipse/jetty/io/ByteArrayBuffer.java @ 1046:a8c92b0a08ed
add JBuffer
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 07 Nov 2016 22:39:39 -0700 |
parents | dd71a59fcf72 |
children |
rev | line source |
---|---|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
2 // ======================================================================== |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
3 // Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
4 // ------------------------------------------------------------------------ |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
5 // All rights reserved. This program and the accompanying materials |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
6 // are made available under the terms of the Eclipse Public License v1.0 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
7 // and Apache License v2.0 which accompanies this distribution. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
8 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
9 // The Eclipse Public License is available at |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
10 // http://www.eclipse.org/legal/epl-v10.html |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
11 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
12 // The Apache License v2.0 is available at |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
13 // http://www.opensource.org/licenses/apache2.0.php |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
14 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
15 // You may elect to redistribute this code under either of these licenses. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
16 // ======================================================================== |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
17 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
18 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
19 package org.eclipse.jetty.io; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
20 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
21 import java.io.IOException; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
22 import java.io.InputStream; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
23 import java.io.OutputStream; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
24 import java.io.UnsupportedEncodingException; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
25 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
26 import org.eclipse.jetty.util.StringUtil; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
27 |
1018 | 28 |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
29 public class ByteArrayBuffer extends AbstractBuffer |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
30 { |
1010 | 31 // Set a maximum size to a write for the writeTo method, to ensure that very large content is not |
32 // written as a single write (which may fall foul to write timeouts if consumed slowly). | |
33 final static int MAX_WRITE=Integer.getInteger("org.eclipse.jetty.io.ByteArrayBuffer.MAX_WRITE",128*1024); | |
34 final protected byte[] _bytes; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
35 |
1030
80cad9086593
remove Buffer.isVolatile()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1029
diff
changeset
|
36 protected ByteArrayBuffer(int size, int access) |
1010 | 37 { |
1030
80cad9086593
remove Buffer.isVolatile()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1029
diff
changeset
|
38 this(new byte[size],0,0,access); |
1010 | 39 } |
40 | |
41 public ByteArrayBuffer(byte[] bytes) | |
42 { | |
43 this(bytes, 0, bytes.length, READWRITE); | |
44 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
45 |
1010 | 46 public ByteArrayBuffer(byte[] bytes, int index, int length) |
47 { | |
48 this(bytes, index, length, READWRITE); | |
49 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
50 |
1010 | 51 public ByteArrayBuffer(byte[] bytes, int index, int length, int access) |
52 { | |
1039
a7319f14ba1e
remove Buffer.isImmutable()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1038
diff
changeset
|
53 super(access); |
1010 | 54 _bytes = bytes; |
55 setPutIndex(index + length); | |
56 setGetIndex(index); | |
57 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
58 |
1010 | 59 public ByteArrayBuffer(int size) |
60 { | |
61 this(new byte[size], 0, 0, READWRITE); | |
62 setPutIndex(0); | |
63 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
64 |
1010 | 65 public ByteArrayBuffer(String value) |
66 { | |
1039
a7319f14ba1e
remove Buffer.isImmutable()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1038
diff
changeset
|
67 super(READONLY); |
1010 | 68 _bytes = StringUtil.getBytes(value); |
69 setGetIndex(0); | |
70 setPutIndex(_bytes.length); | |
71 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
72 |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
73 @Override |
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
74 public final byte[] array() |
1010 | 75 { |
76 return _bytes; | |
77 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
78 |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
79 @Override |
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
80 public final int capacity() |
1010 | 81 { |
82 return _bytes.length; | |
83 } | |
84 | |
85 @Override | |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
86 public final void compact() |
1010 | 87 { |
88 if (isReadOnly()) | |
89 throw new IllegalStateException(__READONLY); | |
1044
dd71a59fcf72
remove buffer marking
Franklin Schmidt <fschmidt@gmail.com>
parents:
1039
diff
changeset
|
90 int s = getIndex(); |
1010 | 91 if (s > 0) |
92 { | |
93 int length = putIndex() - s; | |
94 if (length > 0) | |
95 { | |
96 System.arraycopy(_bytes, s,_bytes, 0, length); | |
97 } | |
98 setGetIndex(getIndex() - s); | |
99 setPutIndex(putIndex() - s); | |
100 } | |
101 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
102 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
103 |
1010 | 104 @Override |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
105 public final boolean equals(Object obj) |
1010 | 106 { |
107 if (obj==this) | |
108 return true; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
109 |
1010 | 110 if (obj == null || !(obj instanceof Buffer)) |
111 return false; | |
112 | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
113 |
1010 | 114 Buffer b = (Buffer) obj; |
115 | |
116 // reject different lengths | |
1038
b71ad168fe34
rename Buffer.length() to remaining()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1030
diff
changeset
|
117 if (b.remaining() != remaining()) |
1010 | 118 return false; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
119 |
1010 | 120 // reject AbstractBuffer with different hash value |
121 if (_hash != 0 && obj instanceof AbstractBuffer) | |
122 { | |
123 AbstractBuffer ab = (AbstractBuffer) obj; | |
124 if (ab._hash != 0 && _hash != ab._hash) | |
125 return false; | |
126 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
127 |
1010 | 128 // Nothing for it but to do the hard grind. |
129 int get=getIndex(); | |
130 int bi=b.putIndex(); | |
131 for (int i = putIndex(); i-->get;) | |
132 { | |
133 byte b1 = _bytes[i]; | |
134 byte b2 = b.peek(--bi); | |
135 if (b1 != b2) return false; | |
136 } | |
137 return true; | |
138 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
139 |
1010 | 140 @Override |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
141 public final byte get() |
1010 | 142 { |
143 return _bytes[_get++]; | |
144 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
145 |
1010 | 146 @Override |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
147 public final int hashCode() |
1010 | 148 { |
149 if (_hash == 0 || _hashGet!=_get || _hashPut!=_put) | |
150 { | |
151 int get=getIndex(); | |
152 for (int i = putIndex(); i-- >get;) | |
153 { | |
154 byte b = _bytes[i]; | |
155 if ('a' <= b && b <= 'z') | |
156 b = (byte) (b - 'a' + 'A'); | |
157 _hash = 31 * _hash + b; | |
158 } | |
159 if (_hash == 0) | |
160 _hash = -1; | |
161 _hashGet=_get; | |
162 _hashPut=_put; | |
163 } | |
164 return _hash; | |
165 } | |
166 | |
167 | |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
168 @Override |
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
169 public final byte peek(int index) |
1010 | 170 { |
171 return _bytes[index]; | |
172 } | |
173 | |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
174 @Override |
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
175 public final int peek(int index, byte[] b, int offset, int length) |
1010 | 176 { |
177 int l = length; | |
178 if (index + l > capacity()) | |
179 { | |
180 l = capacity() - index; | |
181 if (l==0) | |
182 return -1; | |
183 } | |
184 | |
185 if (l < 0) | |
186 return -1; | |
187 | |
188 System.arraycopy(_bytes, index, b, offset, l); | |
189 return l; | |
190 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
191 |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
192 @Override |
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
193 public final void poke(int index, byte b) |
1010 | 194 { |
195 /* | |
196 if (isReadOnly()) | |
197 throw new IllegalStateException(__READONLY); | |
198 | |
199 if (index < 0) | |
200 throw new IllegalArgumentException("index<0: " + index + "<0"); | |
201 if (index > capacity()) | |
202 throw new IllegalArgumentException("index>capacity(): " + index + ">" + capacity()); | |
203 */ | |
204 _bytes[index] = b; | |
205 } | |
206 | |
207 @Override | |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
208 public final int poke(int index, Buffer src) |
1010 | 209 { |
210 _hash=0; | |
211 | |
212 /* | |
213 if (isReadOnly()) | |
214 throw new IllegalStateException(__READONLY); | |
215 if (index < 0) | |
216 throw new IllegalArgumentException("index<0: " + index + "<0"); | |
217 */ | |
218 | |
1038
b71ad168fe34
rename Buffer.length() to remaining()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1030
diff
changeset
|
219 int length=src.remaining(); |
1010 | 220 if (index + length > capacity()) |
221 { | |
222 length=capacity()-index; | |
223 /* | |
224 if (length<0) | |
225 throw new IllegalArgumentException("index>capacity(): " + index + ">" + capacity()); | |
226 */ | |
227 } | |
228 | |
229 byte[] src_array = src.array(); | |
230 if (src_array != null) | |
231 System.arraycopy(src_array, src.getIndex(), _bytes, index, length); | |
232 else | |
233 { | |
234 int s=src.getIndex(); | |
235 for (int i=0;i<length;i++) | |
236 _bytes[index++]=src.peek(s++); | |
237 } | |
238 | |
239 return length; | |
240 } | |
241 | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
242 |
1010 | 243 @Override |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
244 public final int poke(int index, byte[] b, int offset, int length) |
1010 | 245 { |
246 _hash=0; | |
247 /* | |
248 if (isReadOnly()) | |
249 throw new IllegalStateException(__READONLY); | |
250 if (index < 0) | |
251 throw new IllegalArgumentException("index<0: " + index + "<0"); | |
252 */ | |
253 | |
254 if (index + length > capacity()) | |
255 { | |
256 length=capacity()-index; | |
257 /* if (length<0) | |
258 throw new IllegalArgumentException("index>capacity(): " + index + ">" + capacity()); | |
259 */ | |
260 } | |
261 | |
262 System.arraycopy(b, offset, _bytes, index, length); | |
263 | |
264 return length; | |
265 } | |
266 | |
267 @Override | |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
268 public final int readFrom(InputStream in,int max) throws IOException |
1010 | 269 { |
270 if (max<0||max>space()) | |
271 max=space(); | |
272 int p = putIndex(); | |
273 | |
274 int len=0, total=0, available=max; | |
275 while (total<max) | |
276 { | |
277 len=in.read(_bytes,p,available); | |
278 if (len<0) | |
279 break; | |
280 else if (len>0) | |
281 { | |
282 p += len; | |
283 total += len; | |
284 available -= len; | |
285 setPutIndex(p); | |
286 } | |
287 if (in.available()<=0) | |
288 break; | |
289 } | |
290 if (len<0 && total==0) | |
291 return -1; | |
292 return total; | |
293 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
294 |
1010 | 295 @Override |
1029
4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
Franklin Schmidt <fschmidt@gmail.com>
parents:
1026
diff
changeset
|
296 public final int space() |
1010 | 297 { |
298 return _bytes.length - _put; | |
299 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
300 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
301 } |