Skip to content

Commit

Permalink
Slight rework of config loading.
Browse files Browse the repository at this point in the history
Merges the cli and file configuration
  • Loading branch information
a-kenji committed May 12, 2021
1 parent 2c2ab15 commit 362ead1
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 20 deletions.
4 changes: 0 additions & 4 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ pub struct CliArgs {
#[structopt(long)]
pub max_panes: Option<usize>,

/// Speficy, if a simplified layout should be used that is compatible with more fonts
#[structopt(long)]
pub simplified: bool,

/// Change where zellij looks for layouts and plugins
#[structopt(long)]
pub data_dir: Option<PathBuf>,
Expand Down
5 changes: 4 additions & 1 deletion src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ use crate::common::{
errors::{ClientContext, ContextType},
input::config::Config,
input::handler::input_loop,
input::options::{ConfigOptions, Options},
os_input_output::ClientOsApi,
thread_bus::{SenderType, SenderWithContext, SyncChannelWithContext},
};
Expand All @@ -40,12 +41,14 @@ pub fn start_client(mut os_input: Box<dyn ClientOsApi>, opts: CliArgs, config: C

let mut command_is_executing = CommandIsExecuting::new();

let config_options: ConfigOptions = Options::from_cli(&config.options, opts.option.clone()).into();

let full_screen_ws = os_input.get_terminal_size_using_fd(0);
os_input.connect_to_server();
os_input.send_to_server(ServerInstruction::NewClient(
full_screen_ws,
opts,
config.options.clone(),
config_options,
));
os_input.set_raw_mode(0);

Expand Down
42 changes: 41 additions & 1 deletion src/common/input/options.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
//! Handles cli and configuration options
use crate::cli::ConfigCli;
use serde::{Deserialize, Serialize};
use structopt::StructOpt;

#[derive(Clone, Default, Debug, PartialEq, Deserialize, Serialize, StructOpt)]
/// Options that can be set either through the config file,
/// or cli flags
/// intermediate struct
pub struct Options {
/// Allow plugins to use a more compatible font type
/// Allow plugins to use a more simplified layout
/// that is compatible with more fonts
#[structopt(long)]
pub simplified_ui: Option<bool>,
}

#[derive(Clone, Default, Debug, PartialEq, Deserialize, Serialize)]
/// Merged version of the [`Options`] struct
// TODO: Maybe a good candidate for a macro?
pub struct ConfigOptions {
pub simplified_ui: bool,
}

Expand All @@ -18,4 +29,33 @@ impl Options {
Options::default()
}
}

/// Merges two [`Options`] structs, a `Some` in `other`
/// will supercede a `Some` in `self`
// TODO: Maybe a good candidate for a macro?
pub fn merge(&self, other: Options) -> Options {
let simplified_ui = if let Some(bool) = other.simplified_ui {
Some(bool)
} else { self.simplified_ui };

Options { simplified_ui }
}

pub fn from_cli(&self, other: Option<ConfigCli>) -> Options {
if let Some(ConfigCli::Options(options)) = other {
Options::merge(&self, options)
} else {
self.to_owned()
}
}
}

impl From<Options> for ConfigOptions {
fn from(options: Options) -> ConfigOptions {
let simplified_ui = options.simplified_ui;

ConfigOptions {
simplified_ui: simplified_ui.unwrap_or_default(),
}
}
}
13 changes: 4 additions & 9 deletions src/common/screen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ use std::collections::BTreeMap;
use std::os::unix::io::RawFd;
use std::str;

use crate::cli::ConfigCli;
use crate::common::input::options::Options;
use crate::common::input::options::ConfigOptions;
use crate::common::pty::{PtyInstruction, VteBytes};
use crate::common::thread_bus::Bus;
use crate::errors::{ContextType, ScreenContext};
Expand Down Expand Up @@ -330,15 +329,11 @@ pub fn screen_thread_main(
bus: Bus<ScreenInstruction>,
max_panes: Option<usize>,
full_screen_ws: PositionAndSize,
options: Option<ConfigCli>,
config_options: Options,
config_options: ConfigOptions,
) {
let colors = bus.os_input.as_ref().unwrap().load_palette();
let capabilities = if let Some(ConfigCli::Options(options)) = options {
options.simplified_ui
} else {
config_options.simplified_ui
};
let capabilities = config_options.simplified_ui;

let mut screen = Screen::new(
bus,
&full_screen_ws,
Expand Down
8 changes: 3 additions & 5 deletions src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::client::ClientInstruction;
use crate::common::thread_bus::{Bus, ThreadSenders};
use crate::common::{
errors::{ContextType, ServerContext},
input::{actions::Action, options::Options},
input::{actions::Action, options::ConfigOptions},
os_input_output::{set_permissions, ServerOsApi},
pty::{pty_thread_main, Pty, PtyInstruction},
screen::{screen_thread_main, ScreenInstruction},
Expand All @@ -30,7 +30,7 @@ use route::route_thread_main;
#[derive(Serialize, Deserialize, Debug, Clone)]
pub enum ServerInstruction {
TerminalResize(PositionAndSize),
NewClient(PositionAndSize, CliArgs, Options),
NewClient(PositionAndSize, CliArgs, ConfigOptions),
Action(Action),
Render(Option<String>),
UnblockInputThread,
Expand Down Expand Up @@ -155,7 +155,7 @@ pub fn start_server(os_input: Box<dyn ServerOsApi>) -> thread::JoinHandle<()> {
fn init_session(
os_input: Box<dyn ServerOsApi>,
opts: CliArgs,
config_options: Options,
config_options: ConfigOptions,
to_server: SenderWithContext<ServerInstruction>,
full_screen_ws: PositionAndSize,
) -> SessionMetaData {
Expand Down Expand Up @@ -214,14 +214,12 @@ fn init_session(
Some(os_input.clone()),
);
let max_panes = opts.max_panes;
let options = opts.option;

move || {
screen_thread_main(
screen_bus,
max_panes,
full_screen_ws,
options,
config_options,
);
}
Expand Down

0 comments on commit 362ead1

Please sign in to comment.