65 lines
1.6 KiB
Rust
65 lines
1.6 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::HashSet, path::Path};
|
|
use thiserror::Error;
|
|
|
|
mod parse;
|
|
mod path;
|
|
mod resolve;
|
|
mod store;
|
|
mod util;
|
|
|
|
pub trait Config {
|
|
fn label(&self) -> &str;
|
|
fn match_paths(&self) -> &[String];
|
|
|
|
fn is_match(&self, app: &AppProperties) -> bool;
|
|
}
|
|
|
|
pub trait ConfigStore {
|
|
fn default(&self) -> &dyn Config;
|
|
fn active<'a>(&'a self, app: &AppProperties) -> &'a dyn Config;
|
|
|
|
fn get_all_match_paths(&self) -> HashSet<String>;
|
|
}
|
|
|
|
pub struct AppProperties<'a> {
|
|
pub title: Option<&'a str>,
|
|
pub class: Option<&'a str>,
|
|
pub exec: Option<&'a str>,
|
|
}
|
|
|
|
pub fn load_store(config_dir: &Path) -> Result<impl ConfigStore> {
|
|
store::DefaultConfigStore::load(config_dir)
|
|
}
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum ConfigStoreError {
|
|
#[error("invalid config directory")]
|
|
InvalidConfigDir(),
|
|
|
|
#[error("missing default.yml config")]
|
|
MissingDefault(),
|
|
|
|
#[error("io error")]
|
|
IOError(#[from] std::io::Error),
|
|
}
|