crossterm 0.3.0

An crossplatform terminal library for manipulating terminals.
Documentation
//! A wrapper for executing and undoing commands.

use super::commands::IStateCommand;
use std::rc::Rc;
use std::sync::Mutex;
use Context;

/// Simple wrapper for executing an command.
pub struct CommandManager;

impl CommandManager {
    /// execute an certain command by id.
    pub fn execute(context: Rc<Context>, command_id: u16) -> bool {
        let mut mutex: Rc<Mutex<Box<IStateCommand>>>;

        let mut state = context.state_manager.lock().unwrap();
        {
            mutex = state.get(command_id);
        }

        let mut command = mutex.lock().unwrap();
        let has_succeeded = command.execute();
        return has_succeeded;
    }

    /// undo an certain command by id.
    pub fn undo(context: Rc<Context>, command_id: u16) -> bool {
        let mut mutex: Rc<Mutex<Box<IStateCommand>>>;

        let mut state = context.state_manager.lock().unwrap();
        {
            mutex = state.get(command_id);
        }

        let mut command = mutex.lock().unwrap();
        let has_succeeded = command.undo();
        return has_succeeded;
    }
}