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
use crate::service_actor::{ServiceActor, ServiceActorContext};
use crate::{RoomActor, Server};
use actix::dev::channel::channel;
use actix::{Addr, Arbiter, Context};
use actix_web::Result;
use jamsocket::{JamsocketService, JamsocketServiceFactory};

const MAILBOX_SIZE: usize = 16;

pub struct ServerState {
    pub room_addr: Addr<RoomActor>,
    pub settings: Server,
}

impl ServerState {
    pub fn new<J>(
        service_factory: impl JamsocketServiceFactory<ServiceActorContext, Service = J>,
        settings: Server,
    ) -> Result<Self>
    where
        J: JamsocketService,
    {
        let arbiter = Arbiter::new();
        let (room_tx, room_rx) = channel(MAILBOX_SIZE);
        let (service_tx, service_rx) = channel(MAILBOX_SIZE);
        let room_addr = Addr::new(room_tx);
        let service_addr = Addr::new(service_tx);

        {
            let room_addr = room_addr.clone();

            arbiter.spawn_fn(move || {
                let room_ctx = Context::with_receiver(room_rx);
                let service_ctx = Context::with_receiver(service_rx);

                let service_actor = ServiceActor::<J>::new(
                    &service_ctx,
                    service_factory,
                    room_addr.clone().recipient(),
                );

                let room_actor = RoomActor::new(service_addr.recipient());

                room_ctx.run(room_actor);
                if let Some(service_actor) = service_actor {
                    service_ctx.run(service_actor);
                } else {
                    tracing::error!("Could not create service actor for room");
                }
            });
        }

        Ok(ServerState {
            settings,
            room_addr,
        })
    }
}