/* * Licensed to ElasticSearch and Shay Banon under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. ElasticSearch licenses this * file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.fastcatsearch.common.io; import java.io.EOFException; import java.io.IOException; import org.fastcatsearch.common.BytesArray; import org.fastcatsearch.common.BytesReference; import org.fastcatsearch.ir.io.DataInput; /** * */ public class BytesStreamInput extends StreamInput { protected byte buf[]; protected int pos; protected int count; private final boolean unsafe; public BytesStreamInput(BytesReference bytes) { if (!bytes.hasArray()) { bytes = bytes.toBytesArray(); } this.buf = bytes.array(); this.pos = bytes.arrayOffset(); this.count = bytes.length(); this.unsafe = false; } public BytesStreamInput(byte buf[], boolean unsafe) { this(buf, 0, buf.length, unsafe); } public BytesStreamInput(byte buf[], int offset, int length, boolean unsafe) { this.buf = buf; this.pos = offset; this.count = Math.min(offset + length, buf.length); this.unsafe = unsafe; } @Override public BytesReference readBytesReference(int length) throws IOException { if (unsafe) { return super.readBytesReference(length); } BytesArray bytes = new BytesArray(buf, pos, length); pos += length; return bytes; } @Override public long skip(long n) throws IOException { if (pos + n > count) { n = count - pos; } if (n < 0) { return 0; } pos += n; return n; } @Override public long position() { return this.pos; } @Override public int read() throws IOException { return (pos < count) ? (buf[pos++] & 0xff) : -1; } @Override public int read(byte[] b, int off, int len) throws IOException { if (b == null) { throw new NullPointerException(); } else if (off < 0 || len < 0 || len > b.length - off) { throw new IndexOutOfBoundsException(); } if (pos >= count) { return -1; } if (pos + len > count) { len = count - pos; } if (len <= 0) { return 0; } System.arraycopy(buf, pos, b, off, len); pos += len; return len; } public byte[] underlyingBuffer() { return buf; } @Override public byte readByte() throws IOException { if (pos >= count) { throw new EOFException(); } return buf[pos++]; } @Override public void readBytes(byte[] b, int offset, int len) throws IOException { if (len == 0) { return; } if (pos >= count) { throw new EOFException(); } if (pos + len > count) { len = count - pos; } if (len <= 0) { throw new EOFException(); } System.arraycopy(buf, pos, b, offset, len); pos += len; } @Override public void reset() throws IOException { pos = 0; } @Override public void close() throws IOException { // nothing to do here... } @Override public void seek(long p) throws IOException { pos = (int) p; } @Override public long length() throws IOException { return count; } }