blob: 57a7299791db3f0abfea341eb5bff00265e2e5c3 [file]
// 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.
use jni::Env;
use jni::EnvUnowned;
use jni::objects::JByteArray;
use jni::objects::JClass;
use jni::objects::JObject;
use jni::objects::JString;
use jni::sys::jlong;
use opendal::blocking;
use opendal::blocking::StdBytesIterator;
use crate::convert::jstring_to_string;
use crate::error::ThrowException;
/// # Safety
///
/// This function should not be called before the Operator is ready.
#[unsafe(no_mangle)]
pub unsafe extern "system" fn Java_org_apache_opendal_OperatorInputStream_constructReader<
'local,
>(
mut env: EnvUnowned<'local>,
_: JClass<'local>,
op: *mut blocking::Operator,
path: JString<'local>,
options: JObject<'local>,
) -> jlong {
env.with_env(|env| {
let op_ref = unsafe { &mut *op };
intern_construct_reader(env, op_ref, path, options)
})
.resolve::<ThrowException>()
}
fn intern_construct_reader(
env: &mut Env,
op: &mut blocking::Operator,
path: JString,
options: JObject,
) -> crate::Result<jlong> {
use crate::convert;
use crate::make_reader_options;
let path = jstring_to_string(env, &path)?;
let reader_options = make_reader_options(env, &options)?;
let offset = convert::read_int64_field(env, &options, "offset")?;
let length = convert::read_int64_field(env, &options, "length")?;
let range = convert::offset_length_to_range(offset, length)?;
let reader = op
.reader_options(&path, reader_options)?
.into_bytes_iterator(range)?;
Ok(Box::into_raw(Box::new(reader)) as jlong)
}
/// # Safety
///
/// This function should not be called before the Operator is ready.
#[unsafe(no_mangle)]
pub unsafe extern "system" fn Java_org_apache_opendal_OperatorInputStream_disposeReader<'local>(
_: EnvUnowned<'local>,
_: JClass<'local>,
reader: *mut StdBytesIterator,
) {
unsafe {
drop(Box::from_raw(reader));
}
}
/// # Safety
///
/// This function should not be called before the Operator is ready.
#[unsafe(no_mangle)]
pub unsafe extern "system" fn Java_org_apache_opendal_OperatorInputStream_readNextBytes<'local>(
mut env: EnvUnowned<'local>,
_: JClass<'local>,
reader: *mut StdBytesIterator,
) -> JByteArray<'local> {
env.with_env(|env| {
let reader_ref = unsafe { &mut *reader };
intern_read_next_bytes(env, reader_ref)
})
.resolve::<ThrowException>()
}
fn intern_read_next_bytes<'local>(
env: &mut Env<'local>,
reader: &mut StdBytesIterator,
) -> crate::Result<JByteArray<'local>> {
match reader
.next()
.transpose()
.map_err(|err| opendal::Error::new(opendal::ErrorKind::Unexpected, err.to_string()))?
{
None => Ok(JByteArray::default()),
Some(content) => Ok(env.byte_array_from_slice(&content)?),
}
}