codemp/src/ffi/js/cursor.rs

80 lines
2.1 KiB
Rust
Raw Normal View History

2024-03-10 12:42:56 +01:00
use napi_derive::napi;
use napi::threadsafe_function::{ThreadsafeFunction, ThreadSafeCallContext, ThreadsafeFunctionCallMode, ErrorStrategy};
use crate::api::Controller;
use crate::cursor::controller::CursorController;
2024-03-10 12:42:56 +01:00
#[napi(object, js_name = "Cursor")]
pub struct JsCursor {
/// range of text change, as char indexes in buffer previous state
pub start_row: i32,
pub start_col: i32,
pub end_row: i32,
pub end_col: i32,
pub buffer: String,
pub user: Option<String>,
}
impl From<JsCursor> for crate::api::Cursor {
fn from(value: JsCursor) -> Self {
crate::api::Cursor {
start : (value.start_row, value.start_col),
end: (value.end_row, value.end_col),
buffer: value.buffer,
user: value.user.map(|x| uuid::Uuid::parse_str(&x).expect("invalid uuid")),
}
2024-03-10 12:42:56 +01:00
}
}
impl From<crate::api::Cursor> for JsCursor {
fn from(value: crate::api::Cursor) -> Self {
JsCursor {
start_row : value.start.0,
start_col : value.start.1,
end_row : value.end.0,
end_col: value.end.1,
buffer: value.buffer,
user: value.user.map(|x| x.to_string())
}
}
}
2024-03-10 12:42:56 +01:00
#[napi]
impl CursorController {
#[napi(js_name = "callback", ts_args_type = "fun: (event: Cursor) => void")]
pub fn jscallback(&self, fun: napi::JsFunction) -> napi::Result<()>{
let tsfn : ThreadsafeFunction<JsCursor, ErrorStrategy::Fatal> =
2024-03-10 12:42:56 +01:00
fun.create_threadsafe_function(0,
|ctx : ThreadSafeCallContext<JsCursor>| {
Ok(vec![ctx.value])
2024-03-10 12:42:56 +01:00
}
)?;
let _controller = self.clone();
2024-03-10 12:42:56 +01:00
tokio::spawn(async move {
loop {
match _controller.recv().await {
Ok(event) => {
tsfn.call(event.into(), ThreadsafeFunctionCallMode::NonBlocking); //check this shit with tracing also we could use Ok(event) to get the error
2024-03-10 12:42:56 +01:00
},
Err(crate::Error::Deadlocked) => continue,
Err(e) => break tracing::warn!("error receiving: {}", e),
}
}
});
Ok(())
}
#[napi(js_name = "send")]
pub async fn js_send(&self, pos: JsCursor) -> napi::Result<()> {
Ok(self.send(crate::api::Cursor::from(pos)).await?)
2024-03-10 12:42:56 +01:00
}
#[napi(js_name= "try_recv")]
pub async fn js_try_recv(&self) -> napi::Result<Option<JsCursor>> {
Ok(self.try_recv().await?
.map(|x| JsCursor::from(x)))
2024-03-10 12:42:56 +01:00
}
}