org.apache.parquet.bytes.ByteBufferInputStream Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.parquet.bytes;
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.util.Arrays;
import java.util.List;
public abstract class ByteBufferInputStream extends InputStream {
public static ByteBufferInputStream wrap(ByteBuffer... buffers) {
if (buffers.length == 1) {
return new SingleBufferInputStream(buffers[0]);
} else {
return new MultiBufferInputStream(Arrays.asList(buffers));
}
}
public static ByteBufferInputStream wrap(List buffers) {
if (buffers.size() == 1) {
return new SingleBufferInputStream(buffers.get(0));
} else {
return new MultiBufferInputStream(buffers);
}
}
public abstract long position();
public void skipFully(long n) throws IOException {
long skipped = skip(n);
if (skipped < n) {
throw new EOFException(
"Not enough bytes to skip: " + skipped + " < " + n);
}
}
public abstract int read(ByteBuffer out);
public abstract ByteBuffer slice(int length) throws EOFException;
public abstract List sliceBuffers(long length) throws EOFException;
public ByteBufferInputStream sliceStream(long length) throws EOFException {
return ByteBufferInputStream.wrap(sliceBuffers(length));
}
public abstract List remainingBuffers();
public ByteBufferInputStream remainingStream() {
return ByteBufferInputStream.wrap(remainingBuffers());
}
}