55 lines
1.5 KiB
Rust
55 lines
1.5 KiB
Rust
//! Implementation of `CallJsFunctionService` for native platforms running QuickJS, served by the
|
|
//! plugin host process to the main app process.
|
|
use async_trait::async_trait;
|
|
|
|
use crate::plugin::service::{
|
|
CallJsFunctionRequest, CallJsFunctionResponse, CallJsFunctionService,
|
|
};
|
|
|
|
use super::{
|
|
plugin::{PluginRequest, PluginResponse},
|
|
plugin_caller::PluginCaller,
|
|
};
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub(super) struct CallJsFunctionServiceImpl {
|
|
plugin_caller: PluginCaller,
|
|
}
|
|
|
|
impl CallJsFunctionServiceImpl {
|
|
pub(super) fn new(plugin_caller: PluginCaller) -> Self {
|
|
Self { plugin_caller }
|
|
}
|
|
}
|
|
|
|
#[async_trait]
|
|
impl ipc::ServiceImpl for CallJsFunctionServiceImpl {
|
|
type Service = CallJsFunctionService;
|
|
|
|
async fn handle_request(&self, request: CallJsFunctionRequest) -> CallJsFunctionResponse {
|
|
let CallJsFunctionRequest {
|
|
id,
|
|
serialized_input,
|
|
} = request;
|
|
|
|
match self
|
|
.plugin_caller
|
|
.send_message(PluginRequest::CallJsFunction {
|
|
id,
|
|
input: serialized_input,
|
|
})
|
|
.await
|
|
{
|
|
Ok(PluginResponse::CallJsFunctionResult { output }) => {
|
|
CallJsFunctionResponse::Success(output)
|
|
}
|
|
Err(e) => {
|
|
log::warn!("Failed to receive result for calling JS function");
|
|
CallJsFunctionResponse::Error {
|
|
message: format!("Failed with error: {e:?}"),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|