summaryrefslogtreecommitdiff
path: root/src/config/keymap/keymap_store.rs
blob: c782219fdb163926e5755cad1f73f02e5685be9b (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
78
79
80
81
use core::fmt;
use std::{
    collections::HashMap,
    sync::{Arc, Mutex},
};

use mlua::{Function, RegistryKey, Result};
use ratatui::crossterm::event::KeyEvent;

use crate::lua;

#[derive(Default, Clone)]
pub struct KeyMapStore {
    store: Option<HashMap<KeyEvent, Arc<Mutex<dyn Runnable>>>>,
}

impl KeyMapStore {
    pub const fn new() -> Self {
        Self { store: None }
    }

    pub fn get(&mut self, event: KeyEvent) -> Option<Arc<Mutex<dyn Runnable>>> {
        match &self.store {
            Some(store) => match store.get(&event) {
                Some(func) => Some(Arc::clone(func)),
                None => None,
            },
            None => {
                self.store = Some(HashMap::new());
                None
            }
        }
    }

    pub fn map(&mut self, event: KeyEvent, func: impl Runnable + 'static) {
        match &self.store {
            Some(_) => {}
            None => self.store = Some(HashMap::new()),
        }

        if let Some(store) = &mut self.store {
            store.insert(event, Arc::new(Mutex::new(func)));
        }
    }
}

pub trait Runnable
where
    Self: Send,
{
    fn run(&self) -> Result<()>;
}

impl<T> Runnable for T
where
    T: Fn(),
    Self: Send,
{
    fn run(&self) -> Result<()> {
        self();
        Ok(())
    }
}

impl Runnable for RegistryKey
where
    Self: Send,
{
    fn run(&self) -> Result<()> {
        let lua = lua::get();
        let func: Function = lua.registry_value(self)?;
        func.call::<(), ()>(())?;
        Ok(())
    }
}

impl fmt::Debug for KeyMapStore {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "KeyMapStore")
    }
}