htsjdk.samtools.cram.encoding.ExternalByteArrayCodec Maven / Gradle / Ivy
/**
* ****************************************************************************
* Copyright 2013 EMBL-EBI
*
* Licensed 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 inputStream 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 htsjdk.samtools.cram.encoding;
import htsjdk.samtools.cram.io.BitInputStream;
import htsjdk.samtools.cram.io.BitOutputStream;
import htsjdk.samtools.cram.io.InputStreamUtils;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
class ExternalByteArrayCodec extends AbstractBitCodec {
private final OutputStream outputStream;
private final InputStream inputStream;
public ExternalByteArrayCodec(final OutputStream outputStream, final InputStream inputStream) {
this.outputStream = outputStream;
this.inputStream = inputStream;
}
@Override
public byte[] read(final BitInputStream bitInputStream, final int length) throws IOException {
return InputStreamUtils.readFully(inputStream, length);
}
@Override
public void readInto(final BitInputStream bitInputStream, final byte[] array, final int offset,
final int valueLen) throws IOException {
InputStreamUtils.readFully(inputStream, array, offset, valueLen);
}
@Override
public void skip(final BitInputStream bitInputStream) throws IOException {
//noinspection ResultOfMethodCallIgnored
inputStream.skip(1);
}
@Override
public void skip(final BitInputStream bitInputStream, final int length) throws IOException {
//noinspection ResultOfMethodCallIgnored
inputStream.skip(length);
}
@Override
public long write(final BitOutputStream bitOutputStream, final byte[] object) throws IOException {
outputStream.write(object);
return numberOfBits(object);
}
@Override
public long numberOfBits(final byte[] object) {
return object.length * 8;
}
@Override
public byte[] read(final BitInputStream bitInputStream) throws IOException {
throw new RuntimeException("Cannot read byte array of unknown length.");
}
}