
com.couchbase.lite.internal.core.C4BlobReadStream Maven / Gradle / Ivy
//
// Copyright (c) 2020, 2017 Couchbase, Inc All rights reserved.
//
// 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 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 com.couchbase.lite.internal.core;
import android.support.annotation.NonNull;
import com.couchbase.lite.LiteCoreException;
/**
* An open stream for reading data from a blob.
*/
public class C4BlobReadStream extends C4NativePeer {
//-------------------------------------------------------------------------
// Constructor
//-------------------------------------------------------------------------
C4BlobReadStream(long handle) { super(handle); }
//-------------------------------------------------------------------------
// public methods
//-------------------------------------------------------------------------
/**
* Reads from an open stream.
*
* @param maxBytesToRead The maximum number of bytes to read to the buffer
*/
@NonNull
public byte[] read(long maxBytesToRead) throws LiteCoreException { return read(getPeer(), maxBytesToRead); }
public int read(byte[] b, int offset, long maxBytesToRead) throws LiteCoreException {
return read(getPeer(), b, offset, maxBytesToRead);
}
/**
* Returns the exact length in bytes of the stream.
*/
public long getLength() throws LiteCoreException { return getLength(getPeer()); }
/**
* Moves to a random location in the stream; the next c4stream_read call will read from that
* location.
*/
public void seek(long position) throws LiteCoreException { seek(getPeer(), position); }
/**
* Closes a read-stream.
*/
public void close() {
final long handle = getPeerAndClear();
if (handle == 0L) { return; }
close(handle);
}
//-------------------------------------------------------------------------
// protected methods
//-------------------------------------------------------------------------
@SuppressWarnings("NoFinalizer")
@Override
protected void finalize() throws Throwable {
try { close(); }
finally { super.finalize(); }
}
//-------------------------------------------------------------------------
// native methods
//-------------------------------------------------------------------------
private static native byte[] read(long readStream, long maxBytesToRead) throws LiteCoreException;
private static native int read(long readStream, byte[] b, int offset, long maxBytesToRead) throws LiteCoreException;
private static native long getLength(long readStream) throws LiteCoreException;
private static native void seek(long readStream, long position) throws LiteCoreException;
private static native void close(long readStream);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy