actix/registry.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
//! Actors registry
//!
//! An Actor can register itself as a service. A Service can be defined as an
//! `ArbiterService`, which is unique per arbiter, or a `SystemService`, which
//! is unique per system.
use std::{
any::{Any, TypeId},
cell::RefCell,
collections::HashMap,
rc::Rc,
};
use actix_rt::{ArbiterHandle, System};
use once_cell::sync::Lazy;
use parking_lot::Mutex;
use crate::{
actor::{Actor, Supervised},
address::Addr,
context::Context,
supervisor::Supervisor,
};
type AnyMap = HashMap<TypeId, Box<dyn Any>>;
/// Actors registry
///
/// An Actor can register itself as a service. A Service can be defined as an
/// `ArbiterService`, which is unique per arbiter, or a `SystemService`, which
/// is unique per system.
///
/// If an arbiter service is used outside of a running arbiter, it panics.
///
/// # Examples
///
/// ```
/// use actix::prelude::*;
///
/// #[derive(Message)]
/// #[rtype(result = "()")]
/// struct Ping;
///
/// #[derive(Default)]
/// struct MyActor1;
///
/// impl Actor for MyActor1 {
/// type Context = Context<Self>;
/// }
/// impl actix::Supervised for MyActor1 {}
///
/// impl ArbiterService for MyActor1 {
/// fn service_started(&mut self, ctx: &mut Context<Self>) {
/// println!("Service started");
/// }
/// }
///
/// impl Handler<Ping> for MyActor1 {
/// type Result = ();
///
/// fn handle(&mut self, _: Ping, ctx: &mut Context<Self>) {
/// println!("ping");
/// # System::current().stop();
/// }
/// }
///
/// struct MyActor2;
///
/// impl Actor for MyActor2 {
/// type Context = Context<Self>;
///
/// fn started(&mut self, _: &mut Context<Self>) {
/// // get MyActor1 address from the registry
/// let act = MyActor1::from_registry();
/// act.do_send(Ping);
/// }
/// }
///
/// #[actix::main]
/// async fn main() {
/// // Start MyActor2 in new Arbiter
/// Arbiter::new().spawn_fn(|| {
/// MyActor2.start();
/// });
/// # System::current().stop();
/// }
/// ```
#[derive(Clone)]
pub struct Registry {
registry: Rc<RefCell<AnyMap>>,
}
thread_local! {
static AREG: Registry = {
Registry {
registry: Rc::new(RefCell::new(AnyMap::new()))
}
};
}
/// Trait defines arbiter's service.
#[allow(unused_variables)]
pub trait ArbiterService: Actor<Context = Context<Self>> + Supervised + Default {
/// Construct and start arbiter service
fn start_service() -> Addr<Self> {
Supervisor::start(|ctx| {
let mut act = Self::default();
act.service_started(ctx);
act
})
}
/// Method is called during service initialization.
fn service_started(&mut self, ctx: &mut Context<Self>) {}
/// Get actor's address from arbiter registry
fn from_registry() -> Addr<Self> {
AREG.with(|reg| reg.get_or_start_default())
}
}
impl Registry {
/// Queries registry for a type of actor (`A`), returning its address.
///
/// If actor is not registered, a new actor is started and its address is returned.
#[deprecated(since = "0.13.5", note = "Renamed to `get_or_start_default()`.")]
#[inline]
pub fn get<A: ArbiterService + Actor<Context = Context<A>>>(&self) -> Addr<A> {
self.get_or_start_default()
}
/// Queries registry for an actor, returning its address.
///
/// If actor of type `A` is not registered, a new actor is started and its address is returned.
pub fn get_or_start_default<A: ArbiterService + Actor<Context = Context<A>>>(&self) -> Addr<A> {
let addr = self.try_get::<A>().unwrap_or_else(A::start_service);
self.registry
.borrow_mut()
.insert(TypeId::of::<A>(), Box::new(addr.clone()));
addr
}
/// Queries registry for specific actor, returning its address.
///
/// Returns `None` if an actor of type `A` is not registered.
pub fn try_get<A: Actor<Context = Context<A>>>(&self) -> Option<Addr<A>> {
let id = TypeId::of::<A>();
if let Some(addr) = self.registry.borrow().get(&id) {
if let Some(addr) = addr.downcast_ref::<Addr<A>>() {
return Some(addr.clone());
}
}
None
}
/// Returns actor's address if it is in the registry.
pub fn query<A: Actor<Context = Context<A>>>(&self) -> Option<Addr<A>> {
let id = TypeId::of::<A>();
if let Some(addr) = self.registry.borrow().get(&id) {
if let Some(addr) = addr.downcast_ref::<Addr<A>>() {
return Some(addr.clone());
}
}
None
}
/// Adds an unregistered actor type to the registry by address.
///
/// # Panics
///
/// Panics if actor is already running
pub fn set<A: Actor<Context = Context<A>>>(addr: Addr<A>) {
AREG.with(|reg| {
let id = TypeId::of::<A>();
if let Some(addr) = reg.registry.borrow().get(&id) {
if addr.downcast_ref::<Addr<A>>().is_some() {
panic!("Actor already started");
}
}
reg.registry.borrow_mut().insert(id, Box::new(addr));
})
}
}
/// System wide actors registry
///
/// System registry serves same purpose as [Registry](struct.Registry.html),
/// except it is shared across all arbiters.
///
/// # Examples
///
/// ```
/// use actix::prelude::*;
///
/// #[derive(Message)]
/// #[rtype(result = "()")]
/// struct Ping;
///
/// #[derive(Default)]
/// struct MyActor1;
///
/// impl Actor for MyActor1 {
/// type Context = Context<Self>;
/// }
/// impl actix::Supervised for MyActor1 {}
///
/// impl SystemService for MyActor1 {
/// fn service_started(&mut self, ctx: &mut Context<Self>) {
/// println!("Service started");
/// }
/// }
///
/// impl Handler<Ping> for MyActor1 {
/// type Result = ();
///
/// fn handle(&mut self, _: Ping, ctx: &mut Context<Self>) {
/// println!("ping");
/// # System::current().stop();
/// }
/// }
///
/// struct MyActor2;
///
/// impl Actor for MyActor2 {
/// type Context = Context<Self>;
///
/// fn started(&mut self, _: &mut Context<Self>) {
/// let act = MyActor1::from_registry();
/// act.do_send(Ping);
/// }
/// }
///
/// #[actix::main]
/// async fn main() {
/// // Start MyActor2
/// let addr = MyActor2.start();
/// }
/// ```
#[derive(Debug)]
pub struct SystemRegistry {
system: ArbiterHandle,
registry: HashMap<TypeId, Box<dyn Any + Send>>,
}
static SREG: Lazy<Mutex<HashMap<usize, SystemRegistry>>> = Lazy::new(|| Mutex::new(HashMap::new()));
/// Trait defines system's service.
#[allow(unused_variables)]
pub trait SystemService: Actor<Context = Context<Self>> + Supervised + Default {
/// Construct and start system service
fn start_service(wrk: &ArbiterHandle) -> Addr<Self> {
Supervisor::start_in_arbiter(wrk, |ctx| {
let mut act = Self::default();
act.service_started(ctx);
act
})
}
/// Method is called during service initialization.
fn service_started(&mut self, ctx: &mut Context<Self>) {}
/// Get actor's address from system registry
fn from_registry() -> Addr<Self> {
let sys = System::current();
let mut sreg = SREG.lock();
let reg = sreg
.entry(sys.id())
.or_insert_with(|| SystemRegistry::new(sys.arbiter().clone()));
if let Some(addr) = reg.registry.get(&TypeId::of::<Self>()) {
if let Some(addr) = addr.downcast_ref::<Addr<Self>>() {
return addr.clone();
}
}
let addr = Self::start_service(System::current().arbiter());
reg.registry
.insert(TypeId::of::<Self>(), Box::new(addr.clone()));
addr
}
}
impl SystemRegistry {
pub(crate) fn new(system: ArbiterHandle) -> Self {
Self {
system,
registry: HashMap::default(),
}
}
/// Return address of the service. If service actor is not running
/// it get started in the system.
pub fn get<A: SystemService + Actor<Context = Context<A>>>(&mut self) -> Addr<A> {
if let Some(addr) = self.registry.get(&TypeId::of::<A>()) {
match addr.downcast_ref::<Addr<A>>() {
Some(addr) => return addr.clone(),
None => panic!("Got unknown value: {:?}", addr),
}
}
let addr = A::start_service(&self.system);
self.registry
.insert(TypeId::of::<A>(), Box::new(addr.clone()));
addr
}
/// Check if actor is in registry, if so, return its address
pub fn query<A: SystemService + Actor<Context = Context<A>>>(&self) -> Option<Addr<A>> {
if let Some(addr) = self.registry.get(&TypeId::of::<A>()) {
match addr.downcast_ref::<Addr<A>>() {
Some(addr) => return Some(addr.clone()),
None => return None,
}
}
None
}
/// Add new actor to the registry by address, panic if actor is already running
pub fn set<A: SystemService + Actor<Context = Context<A>>>(addr: Addr<A>) {
let sys = System::current();
let mut sreg = SREG.lock();
let reg = sreg
.entry(sys.id())
.or_insert_with(|| SystemRegistry::new(sys.arbiter().clone()));
if let Some(addr) = reg.registry.get(&TypeId::of::<A>()) {
if addr.downcast_ref::<Addr<A>>().is_some() {
panic!("Actor already started");
}
}
reg.registry.insert(TypeId::of::<A>(), Box::new(addr));
}
}