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
use actix::prelude::*;

use crate::audit::AuditScope;

// Helper for internal logging.
// Should only be used at startup/shutdown
#[macro_export]
macro_rules! log_event {
    ($log_addr:expr, $($arg:tt)*) => ({
        use crate::async_log::LogEvent;
        use std::fmt;
        $log_addr.do_send(
            LogEvent {
                msg: fmt::format(
                    format_args!($($arg)*)
                )
            }
        )
    })
}

// We need to pass in config for this later
// Or we need to pass in the settings for it IE level and dest?
// Is there an efficent way to set a log level filter in the macros
// so that we don't msg unless it's the correct level?
// Do we need config in the log macro?

pub fn start() -> actix::Addr<EventLog> {
    SyncArbiter::start(1, move || EventLog {})
}

pub struct EventLog {}

impl Actor for EventLog {
    type Context = SyncContext<Self>;

    /*
    fn started(&mut self, ctx: &mut Self::Context) {
        ctx.set_mailbox_capacity(1 << 31);
    }
    */
}

// What messages can we be sent. Basically this is all the possible
// inputs we *could* recieve.

// Add a macro for easy msg write

pub struct LogEvent {
    pub msg: String,
}

impl Message for LogEvent {
    type Result = ();
}

impl Handler<LogEvent> for EventLog {
    type Result = ();

    fn handle(&mut self, event: LogEvent, _: &mut SyncContext<Self>) -> Self::Result {
        info!("logevent: {}", event.msg);
    }
}

impl Handler<AuditScope> for EventLog {
    type Result = ();

    fn handle(&mut self, event: AuditScope, _: &mut SyncContext<Self>) -> Self::Result {
        debug!("audit: {}", event);
    }
}

/*
impl Handler<Event> for EventLog {
    type Result = ();

    fn handle(&mut self, event: Event, _: &mut SyncContext<Self>) -> Self::Result {
        println!("EVENT: {:?}", event)
    }
}
*/