123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- // This file is generated from PrimVector.template. DO NOT EDIT!
- // Copyright (c) 2001, 2002, 2015 Per M.A. Bothner and Brainfood Inc.
- // This is free software; for terms and warranty disclaimer see ./COPYING.
- package gnu.lists;
- import java.io.*;
- import java.nio.ByteOrder;
- /** Simple adjustable-length vector of signed or unsigned 8-bit integers (bytes). */
- public abstract class ByteVector<E> extends PrimIntegerVector<E>
- {
- byte[] data;
- protected static byte[] empty = new byte[0];
- /** Get the allocated length of the data buffer. */
- public int getBufferLength() {
- return data.length;
- }
- public void copyBuffer(int length) {
- int oldLength = data.length;
- if (length == -1)
- length = oldLength;
- if (oldLength != length) {
- byte[] tmp = new byte[length];
- System.arraycopy(data, 0, tmp, 0,
- oldLength < length ? oldLength : length);
- data = tmp;
- }
- }
- public byte[] getBuffer() { return data; }
- protected void setBuffer(Object buffer) { data = (byte[]) buffer; }
- public final byte getByte(int index) {
- return data[effectiveIndex(index)];
- }
- public final byte getByteRaw(int index) {
- return data[index];
- }
- public final void setByte(int index, byte value) {
- checkCanWrite(); // FIXME maybe inline and fold into following
- data[effectiveIndex(index)] = value;
- }
- public final void setByteRaw(int index, byte value) {
- data[index] = value;
- }
- public void add(byte v) {
- int sz = size();
- addSpace(sz, 1);
- setByte(sz, v);
- }
- protected void clearBuffer(int start, int count) {
- byte[] d = data;
- while (--count >= 0)
- d[start++] = 0;
- }
- public int readFrom(int start, int count, InputStream in)
- throws IOException {
- int pos = start;
- while (count > 0) {
- long result = getSegment(pos);
- int where = (int) result;
- int size = (int) (result >> 32);
- if (size > count)
- size = count;
- int n = in.read(data, where, size);
- if (n < 0) {
- if (pos == start)
- return -1;
- break;
- }
- pos += n;
- count -= n;
- }
- return pos - start;
- }
- public void writeTo(OutputStream out)
- throws IOException {
- writeTo(0, size(), out);
- }
- public void writeTo(int start, int count, OutputStream out)
- throws IOException {
- while (count > 0) {
- long result = getSegment(start);
- int where = (int) result;
- int size = (int) (result >> 32);
- if (size > count)
- size = count;
- out.write(data, where, size);
- start += size;
- count -= size;
- }
- }
- public void copyFrom (int index, ByteVector src, int start, int end) {
- int count = end-start;
- int sz = size();
- int src_sz = src.size();
- if (count < 0 || index+count > sz || end > src_sz)
- throw new ArrayIndexOutOfBoundsException();
- int sseg, dseg;
- if ((sseg = src.getSegmentReadOnly(start, count)) >= 0 &&
- (dseg = getSegment(index, count)) >= 0) {
- System.arraycopy(src.data, sseg, data, dseg, count);
- } else {
- for (int i = 0; i < count; i++)
- setByte(index+i, src.getByte(start+i));
- }
- }
- public InputStream getInputStream() {
- int sz = size();
- int seg = getSegmentReadOnly(0, sz);
- if (seg >= 0)
- return new ByteArrayInputStream(data, seg, sz);
- else
- return new ByteVectorInputStream(this);
- }
- static class ByteVectorInputStream extends InputStream {
- ByteVector bvec;
- int pos;
- int mark;
- int size;
- public ByteVectorInputStream(ByteVector bvec) {
- this.bvec = bvec;
- this.size = bvec.size();
- }
- public int read() {
- return pos >= size ? -1 :
- (0xff & bvec.getByte(pos++));
- }
- public boolean markSupported() { return true; }
- public void mark(int readLimit) { mark = pos; }
- public void reset() { pos = mark; }
- public void close() { }
- public int available() { return size-pos; }
- public long skip(long n) {
- if (n < 0) n = 0;
- if (n < size-pos) { pos = size; return size-pos; }
- else { pos += n; return n; }
- }
- }
- /** Covert bytes, interpreted as UTF-8 characters, to a String. */
- public String utf8ToString(int start, int length) {
- if (start+length>size()) throw new IndexOutOfBoundsException();
- int seg = getSegmentReadOnly(start, length);
- byte[] buf;
- if (seg >= 0) {
- buf = data;
- start = seg;
- } else {
- buf = new byte[length];
- for (int i = 0; i < length; i++)
- buf[i] = getByte(start+i);
- }
- return Strings.fromUtf8(buf, start, length);
- }
- static final byte BOM_HI = (byte) 0xFE;
- static final byte BOM_LO = (byte) 0xFF;
- public String utf16ToString(int start, int length) {
- boolean bigEndian = ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN;
- if (length >+ 2) {
- byte b0 = getByte(start);
- byte b1 = getByte(start+1);
- if (b0 == BOM_LO && b1 == BOM_HI) {
- start += 2; length -= 2; bigEndian = false;
- } else if (b0 == BOM_HI && b1 == BOM_LO) {
- start += 2; length -= 2; bigEndian = true;
- }
- }
- return utf16ToString(start, length, bigEndian);
- }
- public String utf16ToString(int start, int length, boolean bigEndian) {
- if (start+length>size()) throw new IndexOutOfBoundsException();
- if ((length & 1) != 0)
- throw new IllegalArgumentException("number of bytes must be even");
- char[] buf = new char[length>>1];
- int hi = bigEndian ? 0 : 1;
- int lo = bigEndian ? 1 : 0;
- for (int i = 0; i < length; i += 2) {
- byte bhi = getByte(start+i+hi);
- byte blo = getByte(start+i+lo);
- buf[i>>1] = (char) (((bhi & 0xFF) << 8) | (blo & 0xFF));
- }
- return new String(buf);
- }
- }
|