aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/event_dispatcher/event.rs
blob: f04839f605b0e166691e7c78bd726fb5060708f8 (plain)
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
//! ref: composer/src/Composer/EventDispatcher/Event.php

use indexmap::IndexMap;
use shirabe_php_shim::PhpMixed;

#[derive(Debug)]
pub struct Event {
    pub(crate) name: String,
    pub(crate) args: Vec<String>,
    pub(crate) flags: IndexMap<String, PhpMixed>,
    propagation_stopped: bool,
}

impl Event {
    pub fn new(name: String, args: Vec<String>, flags: IndexMap<String, PhpMixed>) -> Self {
        Self {
            name,
            args,
            flags,
            propagation_stopped: false,
        }
    }

    pub fn from_name(name: String) -> Self {
        Event::new(name, Vec::new(), IndexMap::new())
    }

    pub fn get_name(&self) -> &str {
        &self.name
    }

    pub fn get_arguments(&self) -> &Vec<String> {
        &self.args
    }

    pub fn get_flags(&self) -> &IndexMap<String, PhpMixed> {
        &self.flags
    }

    pub fn is_propagation_stopped(&self) -> bool {
        self.propagation_stopped
    }

    pub fn stop_propagation(&mut self) {
        self.propagation_stopped = true;
    }
}

pub trait EventInterface: std::fmt::Debug {
    fn get_name(&self) -> &str;
    fn get_arguments(&self) -> &Vec<String>;
    fn get_flags(&self) -> &IndexMap<String, PhpMixed>;
    fn is_propagation_stopped(&self) -> bool;
    fn stop_propagation(&mut self);
}

impl EventInterface for Event {
    fn get_name(&self) -> &str {
        &self.name
    }

    fn get_arguments(&self) -> &Vec<String> {
        &self.args
    }

    fn get_flags(&self) -> &IndexMap<String, PhpMixed> {
        &self.flags
    }

    fn is_propagation_stopped(&self) -> bool {
        self.propagation_stopped
    }

    fn stop_propagation(&mut self) {
        self.propagation_stopped = true;
    }
}