90 lines
2.8 KiB
Rust
90 lines
2.8 KiB
Rust
/*
|
|
* This file is part of espanso.
|
|
*
|
|
* Copyright (C) 2019-2021 Federico Terzi
|
|
*
|
|
* espanso is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* espanso is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with espanso. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
use anyhow::Result;
|
|
use std::{collections::BTreeMap, convert::TryInto, path::Path};
|
|
use thiserror::Error;
|
|
|
|
mod yaml;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Default)]
|
|
pub(crate) struct ParsedConfig {
|
|
pub label: Option<String>,
|
|
|
|
pub backend: Option<String>,
|
|
pub enable: Option<bool>,
|
|
pub clipboard_threshold: Option<usize>,
|
|
pub auto_restart: Option<bool>,
|
|
pub preserve_clipboard: Option<bool>,
|
|
pub toggle_key: Option<String>,
|
|
pub paste_shortcut: Option<String>,
|
|
pub disable_x11_fast_inject: Option<bool>,
|
|
pub word_separators: Option<Vec<String>>,
|
|
pub backspace_limit: Option<usize>,
|
|
pub apply_patch: Option<bool>,
|
|
pub search_trigger: Option<String>,
|
|
pub search_shortcut: Option<String>,
|
|
pub undo_backspace: Option<bool>,
|
|
pub show_notifications: Option<bool>,
|
|
pub show_icon: Option<bool>,
|
|
pub secure_input_notification: Option<bool>,
|
|
pub post_form_delay: Option<usize>,
|
|
pub post_search_delay: Option<usize>,
|
|
pub win32_exclude_orphan_events: Option<bool>,
|
|
pub win32_keyboard_layout_cache_interval: Option<i64>,
|
|
pub x11_use_xclip_backend: Option<bool>,
|
|
|
|
pub pre_paste_delay: Option<usize>,
|
|
pub restore_clipboard_delay: Option<usize>,
|
|
pub paste_shortcut_event_delay: Option<usize>,
|
|
pub inject_delay: Option<usize>,
|
|
pub key_delay: Option<usize>,
|
|
pub keyboard_layout: Option<BTreeMap<String, String>>,
|
|
pub evdev_modifier_delay: Option<usize>,
|
|
|
|
// Includes
|
|
pub includes: Option<Vec<String>>,
|
|
pub excludes: Option<Vec<String>>,
|
|
pub extra_includes: Option<Vec<String>>,
|
|
pub extra_excludes: Option<Vec<String>>,
|
|
pub use_standard_includes: Option<bool>,
|
|
|
|
// Filters
|
|
pub filter_title: Option<String>,
|
|
pub filter_class: Option<String>,
|
|
pub filter_exec: Option<String>,
|
|
pub filter_os: Option<String>,
|
|
}
|
|
|
|
impl ParsedConfig {
|
|
pub fn load(path: &Path) -> Result<Self> {
|
|
let content = std::fs::read_to_string(path)?;
|
|
match yaml::YAMLConfig::parse_from_str(&content) {
|
|
Ok(config) => Ok(config.try_into()?),
|
|
Err(err) => Err(ParsedConfigError::LoadFailed(err).into()),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum ParsedConfigError {
|
|
#[error("can't load config `{0}`")]
|
|
LoadFailed(#[from] anyhow::Error),
|
|
}
|