use malloc_size_of_derive::MallocSizeOf;
use serde::Serialize;
use serde_json::{Map, Value};
use crate::StreamId;
use crate::actor::{Actor, ActorEncode, ActorError, ActorRegistry};
use crate::actors::root::DescriptorTraits;
use crate::protocol::ClientRequest;
#[derive(Serialize)]
struct ListWorkersReply {
from: String,
workers: Vec<u32>, }
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct ProcessActorMsg {
actor: String,
id: u32,
is_parent: bool,
is_windowless_parent: bool,
traits: DescriptorTraits,
}
#[derive(MallocSizeOf)]
pub(crate) struct ProcessActor {
name: String,
}
impl Actor for ProcessActor {
fn name(&self) -> String {
self.name.clone()
}
fn handle_message(
&self,
request: ClientRequest,
_registry: &ActorRegistry,
msg_type: &str,
_msg: &Map<String, Value>,
_id: StreamId,
) -> Result<(), ActorError> {
match msg_type {
"listWorkers" => {
let reply = ListWorkersReply {
from: self.name(),
workers: vec![],
};
request.reply_final(&reply)?
},
_ => return Err(ActorError::UnrecognizedPacketType),
};
Ok(())
}
}
impl ProcessActor {
pub fn new(name: String) -> Self {
Self { name }
}
}
impl ActorEncode<ProcessActorMsg> for ProcessActor {
fn encode(&self, _: &ActorRegistry) -> ProcessActorMsg {
ProcessActorMsg {
actor: self.name(),
id: 0,
is_parent: true,
is_windowless_parent: false,
traits: Default::default(),
}
}
}