2011-07-13 17:53:17 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
|
* Copyright (c) 2011 Ziver Koc
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
* THE SOFTWARE.
|
|
|
|
|
******************************************************************************/
|
2010-08-14 15:22:02 +00:00
|
|
|
package zutil.io;
|
2009-02-26 17:10:57 +00:00
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
|
|
public class DynamicByteArrayStream extends InputStream{
|
|
|
|
|
/** The byte array container */
|
|
|
|
|
private ArrayList<byte[]> bytes;
|
|
|
|
|
/** The current size of the stream */
|
|
|
|
|
private int size;
|
2009-08-22 18:18:54 +00:00
|
|
|
/** points to the current index in the ArrayList */
|
|
|
|
|
private int byteArrayIndex;
|
|
|
|
|
/** points locally in the current index in the ArrayList */
|
2009-02-26 17:10:57 +00:00
|
|
|
private int localPointer;
|
|
|
|
|
/** The current position */
|
2009-08-22 18:18:54 +00:00
|
|
|
private int pos;
|
2009-02-26 17:10:57 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new instance of DynamicByteArrayStream
|
|
|
|
|
*/
|
|
|
|
|
public DynamicByteArrayStream(){
|
|
|
|
|
bytes = new ArrayList<byte[]>();
|
|
|
|
|
size = 0;
|
2009-08-22 18:18:54 +00:00
|
|
|
byteArrayIndex = 0;
|
2009-02-26 17:10:57 +00:00
|
|
|
localPointer = 0;
|
2009-08-22 18:18:54 +00:00
|
|
|
pos = 0;
|
2009-02-26 17:10:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Append an byte array to the stream
|
|
|
|
|
* @param b The byte array to add
|
|
|
|
|
*/
|
|
|
|
|
public synchronized void add(byte[] b){
|
|
|
|
|
bytes.add(b);
|
|
|
|
|
size += b.length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public synchronized int read() throws IOException {
|
2009-08-22 18:18:54 +00:00
|
|
|
if(pos >= size) return -1;
|
|
|
|
|
|
|
|
|
|
int ret = bytes.get(byteArrayIndex)[localPointer] & 0xff;
|
|
|
|
|
pos++;
|
2009-02-26 17:10:57 +00:00
|
|
|
localPointer++;
|
2009-08-22 18:18:54 +00:00
|
|
|
if(localPointer >= bytes.get(byteArrayIndex).length){
|
|
|
|
|
byteArrayIndex++;
|
2009-02-26 17:10:57 +00:00
|
|
|
localPointer = 0;
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2009-08-22 18:18:54 +00:00
|
|
|
|
2009-02-26 17:10:57 +00:00
|
|
|
public synchronized int read(byte b[], int off, int len) {
|
2009-08-22 18:18:54 +00:00
|
|
|
//System.out.println("*****************************************************");
|
|
|
|
|
//System.out.println("off: "+off+" len: "+len);
|
|
|
|
|
//System.out.println("size: "+size+" arraylen: "+bytes.size());
|
|
|
|
|
//System.out.println("pos: "+pos+" localPointer: "+localPointer);
|
|
|
|
|
if(len <= 0) return 0;
|
|
|
|
|
if(pos >= size) return -1;
|
|
|
|
|
|
|
|
|
|
int bytes_read = 0;
|
|
|
|
|
if(pos+len >= size) len = size - pos;
|
|
|
|
|
for(int i=0; i<len ;i++){
|
|
|
|
|
byte[] src = bytes.get(byteArrayIndex);
|
|
|
|
|
if(localPointer+len-i >= src.length){
|
|
|
|
|
//System.out.println("1");
|
|
|
|
|
int length = src.length-localPointer;
|
|
|
|
|
System.arraycopy(src, localPointer, b, off+i, length);
|
|
|
|
|
|
|
|
|
|
localPointer = 0;
|
|
|
|
|
byteArrayIndex++;
|
|
|
|
|
bytes_read += length;
|
|
|
|
|
i += length;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
//System.out.println("2");
|
|
|
|
|
int length = len-i;
|
|
|
|
|
System.arraycopy(src, localPointer, b, off+i, length);
|
|
|
|
|
|
|
|
|
|
localPointer += length;
|
|
|
|
|
bytes_read += length;
|
|
|
|
|
i += length;
|
2009-02-26 17:10:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
2009-08-22 18:18:54 +00:00
|
|
|
pos += len;
|
|
|
|
|
//System.out.println("new_pos: "+pos+" read: "+bytes_read);
|
|
|
|
|
return bytes_read;
|
|
|
|
|
}
|
2009-02-26 17:10:57 +00:00
|
|
|
|
2009-08-22 18:18:54 +00:00
|
|
|
public synchronized int available() {
|
|
|
|
|
return size - pos;
|
|
|
|
|
}
|
2009-02-26 17:10:57 +00:00
|
|
|
|
2009-08-22 18:18:54 +00:00
|
|
|
/**
|
|
|
|
|
* Clears this stream from the byte arrays
|
|
|
|
|
*/
|
|
|
|
|
public synchronized void clear(){
|
|
|
|
|
size = 0;
|
|
|
|
|
reset();
|
|
|
|
|
bytes.clear();
|
|
|
|
|
}
|
2009-02-26 17:10:57 +00:00
|
|
|
|
|
|
|
|
public synchronized void reset() {
|
2009-08-22 18:18:54 +00:00
|
|
|
byteArrayIndex = 0;
|
2009-02-26 17:10:57 +00:00
|
|
|
localPointer = 0;
|
2009-08-22 18:18:54 +00:00
|
|
|
pos = 0;
|
2009-02-26 17:10:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void close() throws IOException {
|
2009-08-22 18:18:54 +00:00
|
|
|
//bytes = null;
|
2009-02-26 17:10:57 +00:00
|
|
|
}
|
|
|
|
|
}
|