1use crate::base::SettingType;
6use crate::message::base::MessengerType;
7use crate::service::message::Receptor;
8use crate::service_context::ServiceContext;
9use crate::{event, payload_convert, service};
10
11use futures::future::LocalBoxFuture;
12use std::collections::HashSet;
13use std::fmt::Debug;
14use std::rc::Rc;
15use thiserror::Error;
16
17pub(crate) mod camera_watcher;
19
20pub(crate) mod media_buttons;
22
23pub(crate) mod authority;
25
26pub(crate) mod restore_agent;
28
29pub(crate) mod storage_agent;
31
32pub(crate) mod earcons;
34
35pub(crate) mod inspect;
37
38#[derive(Error, Debug, Clone, Copy, PartialEq)]
39pub enum AgentError {
40 #[error("Unhandled Lifespan")]
41 UnhandledLifespan,
42 #[error("Unexpected Error")]
43 UnexpectedError,
44}
45
46pub(crate) type InvocationResult = Result<(), AgentError>;
47
48#[derive(Clone, Copy, Debug, PartialEq)]
52pub(crate) enum Lifespan {
53 Initialization,
54 Service,
55}
56
57#[derive(Clone)]
59pub struct Invocation {
60 pub(crate) lifespan: Lifespan,
61 pub(crate) service_context: Rc<ServiceContext>,
62}
63
64impl Debug for Invocation {
65 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
66 f.debug_struct("Invocation").field("lifespan", &self.lifespan).finish_non_exhaustive()
67 }
68}
69
70impl PartialEq for Invocation {
71 fn eq(&self, other: &Self) -> bool {
72 self.lifespan == other.lifespan
73 }
74}
75
76pub type AgentFuture = LocalBoxFuture<'static, ()>;
77
78pub enum CreationFunc {
80 Static(fn(Context) -> AgentFuture),
88 Dynamic(Rc<dyn Fn(Context) -> AgentFuture>),
101}
102
103pub struct AgentCreator {
105 pub debug_id: &'static str,
106 pub create: CreationFunc,
107}
108
109impl AgentCreator {
110 pub(crate) fn create(&self, context: Context) -> AgentFuture {
111 match &self.create {
112 CreationFunc::Static(f) => (f)(context),
113 CreationFunc::Dynamic(f) => (f)(context),
114 }
115 }
116}
117
118pub struct Context {
120 pub receptor: Receptor,
122
123 publisher: event::Publisher,
125
126 pub delegate: service::message::Delegate,
128
129 pub(crate) available_components: HashSet<SettingType>,
131}
132
133impl Context {
134 pub(crate) async fn new(
135 receptor: Receptor,
136 delegate: service::message::Delegate,
137 available_components: HashSet<SettingType>,
138 ) -> Self {
139 let publisher = event::Publisher::create(&delegate, MessengerType::Unbound).await;
140 Self { receptor, publisher, delegate, available_components }
141 }
142
143 async fn create_messenger(
147 &self,
148 ) -> Result<service::message::Messenger, service::message::MessageError> {
149 Ok(self.delegate.create(MessengerType::Unbound).await?.0)
150 }
151
152 pub(crate) fn get_publisher(&self) -> event::Publisher {
153 self.publisher.clone()
154 }
155}
156
157#[derive(Clone, Debug, PartialEq)]
158pub enum Payload {
159 Invocation(Invocation),
160 Complete(InvocationResult),
161}
162
163payload_convert!(Agent, Payload);