2024-08-07 01:44:27 +02:00
|
|
|
use jni::{objects::{JClass, JObject, JValueGen}, sys::{jlong, jobject, jstring}, JNIEnv};
|
2024-08-06 23:55:57 +02:00
|
|
|
|
2024-08-07 00:37:58 +02:00
|
|
|
use crate::api::Controller;
|
2024-08-06 23:55:57 +02:00
|
|
|
|
|
|
|
use super::util::JExceptable;
|
|
|
|
|
|
|
|
#[no_mangle]
|
2024-08-07 01:44:27 +02:00
|
|
|
pub extern "system" fn Java_mp_code_BufferController_get_1name(
|
2024-08-06 23:55:57 +02:00
|
|
|
env: JNIEnv,
|
2024-08-07 01:44:27 +02:00
|
|
|
_class: JClass,
|
2024-08-06 23:55:57 +02:00
|
|
|
self_ptr: jlong,
|
|
|
|
) -> jstring {
|
|
|
|
let controller = unsafe { Box::leak(Box::from_raw(self_ptr as *mut crate::buffer::Controller)) };
|
|
|
|
let content = controller.name();
|
|
|
|
env.new_string(content)
|
|
|
|
.expect("could not create jstring")
|
|
|
|
.as_raw()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2024-08-07 01:44:27 +02:00
|
|
|
pub extern "system" fn Java_mp_code_BufferController_get_1content(
|
2024-08-06 23:55:57 +02:00
|
|
|
env: JNIEnv,
|
2024-08-07 01:44:27 +02:00
|
|
|
_class: JClass,
|
2024-08-06 23:55:57 +02:00
|
|
|
self_ptr: jlong,
|
|
|
|
) -> jstring {
|
|
|
|
let controller = unsafe { Box::leak(Box::from_raw(self_ptr as *mut crate::buffer::Controller)) };
|
|
|
|
let content = controller.content();
|
|
|
|
env.new_string(content)
|
|
|
|
.expect("could not create jstring")
|
|
|
|
.as_raw()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2024-08-07 01:44:27 +02:00
|
|
|
pub extern "system" fn Java_mp_code_BufferController_try_1recv(
|
2024-08-06 23:55:57 +02:00
|
|
|
mut env: JNIEnv,
|
2024-08-07 01:44:27 +02:00
|
|
|
_class: JClass,
|
2024-08-06 23:55:57 +02:00
|
|
|
self_ptr: jlong,
|
|
|
|
) -> jobject {
|
|
|
|
let controller = unsafe { Box::leak(Box::from_raw(self_ptr as *mut crate::buffer::Controller)) };
|
2024-08-07 01:44:27 +02:00
|
|
|
match controller.try_recv().jexcept(&mut env) {
|
|
|
|
None => JObject::null().as_raw(),
|
|
|
|
Some(event) => {
|
|
|
|
let class = env.find_class("mp/code/data/TextChange").expect("Couldn't find class!");
|
|
|
|
env.new_object(
|
|
|
|
class,
|
|
|
|
"(JJLjava/lang/String;)V",
|
|
|
|
&[
|
|
|
|
JValueGen::Long(event.span.start.try_into().unwrap()),
|
|
|
|
JValueGen::Long(event.span.end.try_into().unwrap()),
|
|
|
|
JValueGen::Object(&env.new_string(event.content).expect("Failed to create String!")),
|
|
|
|
]
|
|
|
|
).expect("failed creating object").into_raw()
|
|
|
|
}
|
|
|
|
}
|
2024-08-06 23:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "system" fn Java_mp_code_BufferController_send<'local>(
|
|
|
|
mut env: JNIEnv,
|
|
|
|
_class: JClass<'local>,
|
|
|
|
self_ptr: jlong,
|
|
|
|
input: JObject<'local>
|
|
|
|
) {
|
2024-08-07 01:44:27 +02:00
|
|
|
let start = env.get_field(&input, "start", "J").expect("could not get field").j().expect("field was not of expected type");
|
|
|
|
let end = env.get_field(&input, "end", "J").expect("could not get field").j().expect("field was not of expected type");
|
|
|
|
let content = env.get_field(&input, "content", "Ljava/lang/String;")
|
|
|
|
.expect("could not get field")
|
|
|
|
.l()
|
|
|
|
.expect("field was not of expected type")
|
|
|
|
.into();
|
|
|
|
let content = env.get_string(&content).expect("Failed to get String!").into();
|
|
|
|
|
|
|
|
let controller = unsafe { Box::leak(Box::from_raw(self_ptr as *mut crate::buffer::Controller)) };
|
|
|
|
controller.send(crate::api::TextChange {
|
|
|
|
span: (start as usize)..(end as usize),
|
|
|
|
content
|
|
|
|
}).jexcept(&mut env);
|
2024-08-06 23:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2024-08-07 01:44:27 +02:00
|
|
|
pub extern "system" fn Java_mp_code_BufferController_free(
|
2024-08-06 23:55:57 +02:00
|
|
|
_env: JNIEnv,
|
2024-08-07 01:44:27 +02:00
|
|
|
_class: JClass,
|
2024-08-06 23:55:57 +02:00
|
|
|
self_ptr: jlong,
|
|
|
|
) {
|
2024-08-07 00:37:58 +02:00
|
|
|
let _ = unsafe { Box::from_raw(self_ptr as *mut crate::cursor::Controller) };
|
2024-08-06 23:55:57 +02:00
|
|
|
}
|
|
|
|
|