mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
89 lines
2.6 KiB
Rust
89 lines
2.6 KiB
Rust
mod c;
|
|
mod model;
|
|
mod protobuf;
|
|
mod util;
|
|
|
|
use crate::{
|
|
c::{extend_front_four_bytes_into_bytes, forget_rust},
|
|
model::{FFIRequest, FFIResponse},
|
|
};
|
|
use flowy_dispatch::prelude::*;
|
|
use flowy_sdk::*;
|
|
use lazy_static::lazy_static;
|
|
use parking_lot::RwLock;
|
|
use std::{ffi::CStr, os::raw::c_char, sync::Arc};
|
|
|
|
lazy_static! {
|
|
static ref FLOWY_SDK: RwLock<Option<Arc<FlowySDK>>> = RwLock::new(None);
|
|
}
|
|
|
|
fn dispatch() -> Arc<EventDispatch> { FLOWY_SDK.read().as_ref().unwrap().dispatch() }
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn init_sdk(path: *mut c_char) -> i64 {
|
|
let c_str: &CStr = unsafe { CStr::from_ptr(path) };
|
|
let path: &str = c_str.to_str().unwrap();
|
|
|
|
let config = FlowySDKConfig::new(path).log_filter("debug");
|
|
*FLOWY_SDK.write() = Some(Arc::new(FlowySDK::new(config)));
|
|
|
|
return 1;
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn async_command(port: i64, input: *const u8, len: usize) {
|
|
let request: ModuleRequest = FFIRequest::from_u8_pointer(input, len).into();
|
|
log::trace!("[FFI]: {} Async Event: {:?} with {} port", &request.id, &request.event, port);
|
|
|
|
let _ = EventDispatch::async_send_with_callback(dispatch(), request, move |resp: EventResponse| {
|
|
log::trace!("[FFI]: Post data to dart through {} port", port);
|
|
Box::pin(post_to_flutter(resp, port))
|
|
});
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn sync_command(input: *const u8, len: usize) -> *const u8 {
|
|
let request: ModuleRequest = FFIRequest::from_u8_pointer(input, len).into();
|
|
log::trace!("[FFI]: {} Sync Event: {:?}", &request.id, &request.event,);
|
|
let _response = EventDispatch::sync_send(dispatch(), request);
|
|
|
|
// FFIResponse { }
|
|
let response_bytes = vec![];
|
|
let result = extend_front_four_bytes_into_bytes(&response_bytes);
|
|
forget_rust(result)
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn set_stream_port(port: i64) -> i32 {
|
|
flowy_observable::dart::RustStreamSender::set_port(port);
|
|
return 0;
|
|
}
|
|
|
|
#[inline(never)]
|
|
#[no_mangle]
|
|
pub extern "C" fn link_me_please() {}
|
|
|
|
use flowy_dispatch::prelude::ToBytes;
|
|
#[inline(always)]
|
|
async fn post_to_flutter(response: EventResponse, port: i64) {
|
|
let isolate = allo_isolate::Isolate::new(port);
|
|
match isolate
|
|
.catch_unwind(async {
|
|
let ffi_resp = FFIResponse::from(response);
|
|
ffi_resp.into_bytes().unwrap().to_vec()
|
|
})
|
|
.await
|
|
{
|
|
Ok(_success) => {
|
|
log::trace!("[FFI]: Post data to dart success");
|
|
},
|
|
Err(e) => {
|
|
if let Some(msg) = e.downcast_ref::<&str>() {
|
|
log::error!("[FFI]: {:?}", msg);
|
|
} else {
|
|
log::error!("[FFI]: allo_isolate post panic");
|
|
}
|
|
},
|
|
}
|
|
}
|