sysmaster/backport-fix-rename-system.toml-to-system.conf.patch
huyubiao 8936fa02c5 sync patches from upstream,change the path of the unit,modify permissions for some directories and files
(cherry picked from commit ce9ff469b57f60130621bc293783bd3ac1fc92f2)
2023-08-05 18:15:53 +08:00

67 lines
2.4 KiB
Diff

From ec6b1ff816ac6f1f18c441b3ace4069f744cc301 Mon Sep 17 00:00:00 2001
From: licunlong <licunlong1@huawei.com>
Date: Mon, 3 Jul 2023 16:17:34 +0800
Subject: [PATCH] fix: rename system.toml to system.conf
---
config/conf/{system.toml => system.conf} | 0
core/bin/manager/config.rs | 22 ++++++++++++++++------
5 files changed, 20 insertions(+), 10 deletions(-)
rename config/conf/{system.toml => system.conf} (100%)
diff --git a/config/conf/system.toml b/config/conf/system.conf
similarity index 100%
rename from config/conf/system.toml
rename to config/conf/system.conf
diff --git a/core/bin/manager/config.rs b/core/bin/manager/config.rs
index 229537f..94f676a 100644
--- a/core/bin/manager/config.rs
+++ b/core/bin/manager/config.rs
@@ -12,9 +12,9 @@
//
#![allow(non_snake_case)]
-use confique::Config;
+use confique::{Config, FileFormat, Partial};
-pub const SYSTEM_CONFIG: &str = "/etc/sysmaster/system.toml";
+pub const SYSTEM_CONFIG: &str = "/etc/sysmaster/system.conf";
const RELI_HISTORY_MAPSIZE_DEFAULT: usize = 1048576; // 1M
#[derive(Config, Debug)]
@@ -40,9 +40,19 @@ pub struct ManagerConfig {
impl ManagerConfig {
#[allow(dead_code)]
pub fn new(file: Option<&str>) -> ManagerConfig {
- let builder = ManagerConfig::builder().env();
- let manager_config = builder.file(file.unwrap_or(SYSTEM_CONFIG));
- match manager_config.load() {
+ type ConfigPartial = <ManagerConfig as Config>::Partial;
+ let mut partial: ConfigPartial = match Partial::from_env() {
+ Err(_) => return ManagerConfig::default(),
+ Ok(v) => v,
+ };
+ partial = match confique::File::with_format(file.unwrap_or(SYSTEM_CONFIG), FileFormat::Toml)
+ .load()
+ {
+ Err(_) => return ManagerConfig::default(),
+ Ok(v) => partial.with_fallback(v),
+ };
+ partial = partial.with_fallback(ConfigPartial::default_values());
+ match ManagerConfig::from_partial(partial) {
Ok(v) => v,
Err(_) => ManagerConfig::default(),
}
@@ -72,7 +82,7 @@ mod test {
#[test]
fn load() {
let mut file: PathBuf = get_crate_root().unwrap();
- file.push("config/system.toml");
+ file.push("config/system.conf");
let config = ManagerConfig::new(file.to_str());
println!("{config:?}");
assert_eq!(config.DefaultRestartSec, 100);
--
2.33.0