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
//! ExtraContext is used for passing extra data to Vector's components when Vector is used as a library.
use std::{
    any::{Any, TypeId},
    collections::HashMap,
    marker::{Send, Sync},
    sync::Arc,
};

/// Structure containing any extra data.
/// The data is held in an [`Arc`] so is cheap to clone.
#[derive(Clone, Default)]
pub struct ExtraContext(Arc<HashMap<TypeId, ContextItem>>);

type ContextItem = Box<dyn Any + Send + Sync>;

impl ExtraContext {
    /// Create a new `ExtraContext` that contains the single passed in value.
    pub fn single_value<T: Any + Send + Sync>(value: T) -> Self {
        [Box::new(value) as _].into_iter().collect()
    }

    #[cfg(test)]
    /// This is only available for tests due to panic implications of making an Arc
    /// mutable when there may be multiple references to it.
    fn insert<T: Any + Send + Sync>(&mut self, value: T) {
        Arc::get_mut(&mut self.0)
            .expect("only insert into extra context when there is a single reference to it")
            .insert(value.type_id(), Box::new(value));
    }

    /// Get an object from the context.
    pub fn get<T: 'static>(&self) -> Option<&T> {
        self.0
            .get(&TypeId::of::<T>())
            .and_then(|t| t.downcast_ref())
    }

    /// Get an object from the context, if it doesn't exist return the default.
    pub fn get_or_default<T: Clone + Default + 'static>(&self) -> T {
        self.get().cloned().unwrap_or_default()
    }
}

impl FromIterator<ContextItem> for ExtraContext {
    fn from_iter<T: IntoIterator<Item = ContextItem>>(iter: T) -> Self {
        Self(Arc::new(
            iter.into_iter()
                .map(|item| ((*item).type_id(), item))
                .collect(),
        ))
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[derive(Clone, Eq, PartialEq, Debug, Default)]
    struct Peas {
        beans: usize,
    }

    #[derive(Clone, Eq, PartialEq, Debug, Default)]
    struct Potatoes(usize);

    #[test]
    fn get_fetches_item() {
        let peas = Peas { beans: 42 };
        let potatoes = Potatoes(8);

        let mut context = ExtraContext::default();
        context.insert(peas);
        context.insert(potatoes);

        assert_eq!(&Peas { beans: 42 }, context.get::<Peas>().unwrap());
        assert_eq!(&Potatoes(8), context.get::<Potatoes>().unwrap());
    }

    #[test]
    fn get_or_default_fetches_item() {
        let potatoes = Potatoes(8);

        let mut context = ExtraContext::default();
        context.insert(potatoes);

        assert_eq!(Potatoes(8), context.get_or_default::<Potatoes>());
        assert_eq!(Peas::default(), context.get_or_default::<Peas>());
    }

    #[test]
    fn duplicate_types() {
        let potatoes = Potatoes(8);
        let potatoes99 = Potatoes(99);

        let mut context = ExtraContext::default();
        context.insert(potatoes);
        context.insert(potatoes99);

        assert_eq!(&Potatoes(99), context.get::<Potatoes>().unwrap());
    }
}