mirror of
https://github.com/veeso/termscp.git
synced 2025-12-07 09:36:00 -08:00
124 lines
3.3 KiB
Rust
124 lines
3.3 KiB
Rust
//! ## Context
|
|
//!
|
|
//! `Context` is the module which provides all the functionalities related to the UI data holder, called Context
|
|
|
|
// Locals
|
|
use tuirealm::terminal::{CrosstermTerminalAdapter, TerminalBridge};
|
|
|
|
use super::store::Store;
|
|
use crate::filetransfer::{FileTransferParams, HostBridgeParams};
|
|
use crate::system::bookmarks_client::BookmarksClient;
|
|
use crate::system::config_client::ConfigClient;
|
|
use crate::system::theme_provider::ThemeProvider;
|
|
|
|
/// Context holds data structures shared by the activities
|
|
pub struct Context {
|
|
host_bridge_params: Option<HostBridgeParams>,
|
|
remote_params: Option<FileTransferParams>,
|
|
bookmarks_client: Option<BookmarksClient>,
|
|
config_client: ConfigClient,
|
|
pub(crate) store: Store,
|
|
pub(crate) terminal: TerminalBridge<CrosstermTerminalAdapter>,
|
|
theme_provider: ThemeProvider,
|
|
error: Option<String>,
|
|
}
|
|
|
|
impl Context {
|
|
/// Instantiates a new Context
|
|
pub fn new(
|
|
bookmarks_client: Option<BookmarksClient>,
|
|
config_client: ConfigClient,
|
|
theme_provider: ThemeProvider,
|
|
error: Option<String>,
|
|
) -> Context {
|
|
let mut terminal = TerminalBridge::init_crossterm().expect("Could not initialize terminal");
|
|
let _ = terminal.disable_mouse_capture();
|
|
|
|
Context {
|
|
bookmarks_client,
|
|
config_client,
|
|
host_bridge_params: None,
|
|
remote_params: None,
|
|
store: Store::init(),
|
|
terminal,
|
|
theme_provider,
|
|
error,
|
|
}
|
|
}
|
|
|
|
// -- getters
|
|
|
|
pub fn remote_params(&self) -> Option<&FileTransferParams> {
|
|
self.remote_params.as_ref()
|
|
}
|
|
|
|
pub fn host_bridge_params(&self) -> Option<&HostBridgeParams> {
|
|
self.host_bridge_params.as_ref()
|
|
}
|
|
|
|
pub fn bookmarks_client(&self) -> Option<&BookmarksClient> {
|
|
self.bookmarks_client.as_ref()
|
|
}
|
|
|
|
pub fn bookmarks_client_mut(&mut self) -> Option<&mut BookmarksClient> {
|
|
self.bookmarks_client.as_mut()
|
|
}
|
|
|
|
pub fn config(&self) -> &ConfigClient {
|
|
&self.config_client
|
|
}
|
|
|
|
pub fn config_mut(&mut self) -> &mut ConfigClient {
|
|
&mut self.config_client
|
|
}
|
|
|
|
pub(crate) fn store(&self) -> &Store {
|
|
&self.store
|
|
}
|
|
|
|
pub(crate) fn store_mut(&mut self) -> &mut Store {
|
|
&mut self.store
|
|
}
|
|
|
|
pub fn theme_provider(&self) -> &ThemeProvider {
|
|
&self.theme_provider
|
|
}
|
|
|
|
pub fn theme_provider_mut(&mut self) -> &mut ThemeProvider {
|
|
&mut self.theme_provider
|
|
}
|
|
|
|
pub fn terminal(&mut self) -> &mut TerminalBridge<CrosstermTerminalAdapter> {
|
|
&mut self.terminal
|
|
}
|
|
|
|
// -- setter
|
|
|
|
pub fn set_remote_params(&mut self, params: FileTransferParams) {
|
|
self.remote_params = Some(params);
|
|
}
|
|
|
|
pub fn set_host_bridge_params(&mut self, params: HostBridgeParams) {
|
|
self.host_bridge_params = Some(params);
|
|
}
|
|
|
|
// -- error
|
|
|
|
/// Get error message and remove it from the context
|
|
pub fn error(&mut self) -> Option<String> {
|
|
self.error.take()
|
|
}
|
|
|
|
pub fn set_error(&mut self, error: String) {
|
|
self.error = Some(error);
|
|
}
|
|
}
|
|
|
|
impl Drop for Context {
|
|
fn drop(&mut self) {
|
|
if let Err(err) = self.terminal.restore() {
|
|
error!("Could not restore terminal: {err}");
|
|
}
|
|
}
|
|
}
|