| // 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::JNIEnv; |
| use jni::objects::JByteArray; |
| use jni::objects::JClass; |
| use jni::objects::JObject; |
| use jni::objects::JString; |
| use jni::sys::jbyteArray; |
| use jni::sys::jlong; |
| use jni::sys::jobject; |
| use jni::sys::jobjectArray; |
| use jni::sys::jsize; |
| use opendal::blocking; |
| |
| use crate::Result; |
| use crate::convert::{bytes_to_jbytearray, jstring_to_string}; |
| use crate::make_metadata; |
| use crate::{make_entry, make_list_options, make_stat_options, make_write_options}; |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_disposeInternal( |
| _: JNIEnv, |
| _: JObject, |
| op: *mut blocking::Operator, |
| ) { |
| unsafe { |
| drop(Box::from_raw(op)); |
| } |
| } |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_duplicate( |
| _: JNIEnv, |
| _: JObject, |
| op: *mut blocking::Operator, |
| ) -> jlong { |
| let op = unsafe { &mut *op }; |
| Box::into_raw(Box::new(op.clone())) 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_Operator_read( |
| mut env: JNIEnv, |
| _: JClass, |
| op: *mut blocking::Operator, |
| path: JString, |
| read_options: JObject, |
| ) -> jbyteArray { |
| let op_ref = unsafe { &mut *op }; |
| intern_read(&mut env, op_ref, path, read_options).unwrap_or_else(|e| { |
| e.throw(&mut env); |
| JByteArray::default().into_raw() |
| }) |
| } |
| |
| fn intern_read( |
| env: &mut JNIEnv, |
| op: &mut blocking::Operator, |
| path: JString, |
| options: JObject, |
| ) -> Result<jbyteArray> { |
| use crate::make_read_options; |
| |
| let path = jstring_to_string(env, &path)?; |
| let options = make_read_options(env, &options)?; |
| let content = op.read_options(&path, options)?; |
| |
| let result = bytes_to_jbytearray(env, content.to_bytes())?; |
| Ok(result.into_raw()) |
| } |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_write( |
| mut env: JNIEnv, |
| _: JClass, |
| op: *mut blocking::Operator, |
| path: JString, |
| content: JByteArray, |
| write_options: JObject, |
| ) { |
| let op_ref = unsafe { &mut *op }; |
| intern_write(&mut env, op_ref, path, content, write_options).unwrap_or_else(|e| { |
| e.throw(&mut env); |
| }) |
| } |
| |
| fn intern_write( |
| env: &mut JNIEnv, |
| op: &mut blocking::Operator, |
| path: JString, |
| content: JByteArray, |
| options: JObject, |
| ) -> Result<()> { |
| let path = jstring_to_string(env, &path)?; |
| let content = env.convert_byte_array(content)?; |
| let write_opts = make_write_options(env, &options)?; |
| |
| let _ = op.write_options(&path, content, write_opts)?; |
| Ok(()) |
| } |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_stat( |
| mut env: JNIEnv, |
| _: JClass, |
| op: *mut blocking::Operator, |
| path: JString, |
| stat_options: JObject, |
| ) -> jobject { |
| let op_ref = unsafe { &mut *op }; |
| intern_stat(&mut env, op_ref, path, stat_options).unwrap_or_else(|e| { |
| e.throw(&mut env); |
| JObject::default().into_raw() |
| }) |
| } |
| |
| fn intern_stat( |
| env: &mut JNIEnv, |
| op: &mut blocking::Operator, |
| path: JString, |
| options: JObject, |
| ) -> Result<jobject> { |
| let path = jstring_to_string(env, &path)?; |
| let stat_opts = make_stat_options(env, &options)?; |
| let metadata = op.stat_options(&path, stat_opts)?; |
| Ok(make_metadata(env, metadata)?.into_raw()) |
| } |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_delete( |
| mut env: JNIEnv, |
| _: JClass, |
| op: *mut blocking::Operator, |
| path: JString, |
| ) { |
| let op_ref = unsafe { &mut *op }; |
| intern_delete(&mut env, op_ref, path).unwrap_or_else(|e| { |
| e.throw(&mut env); |
| }) |
| } |
| |
| fn intern_delete(env: &mut JNIEnv, op: &mut blocking::Operator, path: JString) -> Result<()> { |
| let path = jstring_to_string(env, &path)?; |
| Ok(op.delete(&path)?) |
| } |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_createDir( |
| mut env: JNIEnv, |
| _: JClass, |
| op: *mut blocking::Operator, |
| path: JString, |
| ) { |
| let op_ref = unsafe { &mut *op }; |
| intern_create_dir(&mut env, op_ref, path).unwrap_or_else(|e| { |
| e.throw(&mut env); |
| }) |
| } |
| |
| fn intern_create_dir(env: &mut JNIEnv, op: &mut blocking::Operator, path: JString) -> Result<()> { |
| let path = jstring_to_string(env, &path)?; |
| Ok(op.create_dir(&path)?) |
| } |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_copy( |
| mut env: JNIEnv, |
| _: JClass, |
| op: *mut blocking::Operator, |
| source_path: JString, |
| target_path: JString, |
| ) { |
| let op_ref = unsafe { &mut *op }; |
| intern_copy(&mut env, op_ref, source_path, target_path).unwrap_or_else(|e| { |
| e.throw(&mut env); |
| }) |
| } |
| |
| fn intern_copy( |
| env: &mut JNIEnv, |
| op: &mut blocking::Operator, |
| source_path: JString, |
| target_path: JString, |
| ) -> Result<()> { |
| let source_path = jstring_to_string(env, &source_path)?; |
| let target_path = jstring_to_string(env, &target_path)?; |
| |
| Ok(op.copy(&source_path, &target_path)?) |
| } |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_rename( |
| mut env: JNIEnv, |
| _: JClass, |
| op: *mut blocking::Operator, |
| source_path: JString, |
| target_path: JString, |
| ) { |
| let op_ref = unsafe { &mut *op }; |
| intern_rename(&mut env, op_ref, source_path, target_path).unwrap_or_else(|e| { |
| e.throw(&mut env); |
| }) |
| } |
| |
| fn intern_rename( |
| env: &mut JNIEnv, |
| op: &mut blocking::Operator, |
| source_path: JString, |
| target_path: JString, |
| ) -> Result<()> { |
| let source_path = jstring_to_string(env, &source_path)?; |
| let target_path = jstring_to_string(env, &target_path)?; |
| |
| Ok(op.rename(&source_path, &target_path)?) |
| } |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_removeAll( |
| mut env: JNIEnv, |
| _: JClass, |
| op: *mut blocking::Operator, |
| path: JString, |
| ) { |
| let op_ref = unsafe { &mut *op }; |
| intern_remove_all(&mut env, op_ref, path).unwrap_or_else(|e| { |
| e.throw(&mut env); |
| }) |
| } |
| |
| fn intern_remove_all(env: &mut JNIEnv, op: &mut blocking::Operator, path: JString) -> Result<()> { |
| use opendal::options::DeleteOptions; |
| let path = jstring_to_string(env, &path)?; |
| |
| Ok(op.delete_options( |
| &path, |
| DeleteOptions { |
| recursive: true, |
| ..Default::default() |
| }, |
| )?) |
| } |
| |
| /// # Safety |
| /// |
| /// This function should not be called before the Operator is ready. |
| #[unsafe(no_mangle)] |
| pub unsafe extern "system" fn Java_org_apache_opendal_Operator_list( |
| mut env: JNIEnv, |
| _: JClass, |
| op: *mut blocking::Operator, |
| path: JString, |
| options: JObject, |
| ) -> jobjectArray { |
| let op_ref = unsafe { &mut *op }; |
| intern_list(&mut env, op_ref, path, options).unwrap_or_else(|e| { |
| e.throw(&mut env); |
| JObject::default().into_raw() |
| }) |
| } |
| |
| fn intern_list( |
| env: &mut JNIEnv, |
| op: &mut blocking::Operator, |
| path: JString, |
| options: JObject, |
| ) -> Result<jobjectArray> { |
| let path = jstring_to_string(env, &path)?; |
| let list_opts = make_list_options(env, &options)?; |
| let entries = op.list_options(&path, list_opts)?; |
| |
| let jarray = env.new_object_array( |
| entries.len() as jsize, |
| "org/apache/opendal/Entry", |
| JObject::null(), |
| )?; |
| |
| for (idx, entry) in entries.into_iter().enumerate() { |
| let entry = make_entry(env, entry)?; |
| env.set_object_array_element(&jarray, idx as jsize, entry)?; |
| } |
| |
| Ok(jarray.into_raw()) |
| } |