1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
// ┃ Copyright: (c) 2023, Mike 'PhiSyX' S. (https://github.com/PhiSyX)         ┃
// ┃ SPDX-License-Identifier: MPL-2.0                                          ┃
// ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
// ┃                                                                           ┃
// ┃  This Source Code Form is subject to the terms of the Mozilla Public      ┃
// ┃  License, v. 2.0. If a copy of the MPL was not distributed with this      ┃
// ┃  file, You can obtain one at https://mozilla.org/MPL/2.0/.                ┃
// ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛

mod logger;

use std::{fmt, path};

pub use self::logger::LoggerSettings;

// --------- //
// Structure //
// --------- //

#[derive(Debug)]
#[derive(Clone)]
pub struct Settings {
	/// Répertoire racine de l'application utilisateur.
	pub root_dir: path::PathBuf,

	/// Répertoire des fichiers de configurations. Peut être un chemin absolu
	/// ou un chemin relatif à partir de la racine.
	pub config_dir: path::PathBuf,

	/// Extension à utiliser lors de la récupération de la dé-sérialisation des
	/// fichiers de configurations.
	pub loader_extension: SettingsLoaderExtension,

	/// Mode d'execution.
	pub process_env_mode: super::env::EnvProcessMode,
}

// ----------- //
// Énumération //
// ----------- //

/// Les extensions des fichiers de configurations supportées.
#[derive(Debug)]
#[derive(Copy, Clone)]
#[derive(PartialEq, Eq)]
pub enum SettingsLoaderExtension {
	JSON,
	TOML,
	YAML,
}

// -------------- //
// Implémentation // -> Interface
// -------------- //

impl fmt::Display for SettingsLoaderExtension {
	fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
		let ext = match self {
			| SettingsLoaderExtension::JSON => "json",
			| SettingsLoaderExtension::TOML => "toml",
			| SettingsLoaderExtension::YAML => "yml",
		};

		write!(f, "{}", ext)
	}
}