2 个版本
0.1.1 | 2019年7月14日 |
---|---|
0.1.0 | 2019年7月14日 |
#729 in 配置
26KB
460 行
ov-config
一个配置解析库,提供生成配置方案、有效性检查、刷新、更新等宏和便利函数。适用于 .toml
和 .ini
格式。
使用方法
- 创建配置方案
extern crate ov_config;
use ov_config::*;
make_config!(
TestConfig,
SECTION1 {
//key: Type: Default Value => Verification closure
a_string: String: "key1".into() => |x: &String| x.len() > 0,
a_vector: Vec<i32>: vec![1, 2, 3] => |x: &Vec<i32>| x.len() < 4
};
// Support for multi section per config
SECTION2 {
a_i32: i32: 15 => |x: &i32| *x < 20,
a_bool: bool: true => |_| true
}
);
fn main() {
let config = TestConfig{..Default::default()};
assert_eq!(config.SECTION1.a_string, "key1");
assert_eq!(config.SECTION1.a_vector, vec![1, 2, 3]);
assert_eq!(config.SECTION2.a_i32, 15);
assert_eq!(config.SECTION2.a_bool, true);
}
- 从文件中获取配置 -- 将自动对每个值进行有效性检查。
extern crate ov_config;
use ov_config::*;
use std::fs::File;
use std::io::prelude::*;
make_config!(
TestConfig,
SECTION1 {
//key: Type: Default Value => Verification closure
a_string: String: "key1".into() => |x: &String| x.len() > 0,
a_vector: Vec<i32>: vec![1, 2, 3] => |x: &Vec<i32>| x.len() < 4
};
// Support for multi section per config
SECTION2 {
a_i32: i32: 15 => |x: &i32| *x < 20,
a_bool: bool: true => |_| true
}
);
fn main() {
let config = r#"
[SECTION1]
a_string: i_am_a_string
a_vector: [1, 2, 3]
[SECTION2]
a_i32: 12
a_bool: true
"#;
let mut file = File::create("PATH_TO_CONFIG.ini").unwrap();
file.write_all(config.as_bytes()).unwrap();
file.sync_all().unwrap();
let config = TestConfig::get_config("PATH_TO_CONFIG.ini").unwrap();
assert_eq!(config.SECTION1.a_string, "i_am_a_string");
assert_eq!(config.SECTION1.a_vector, [1, 2, 3]);
assert_eq!(config.SECTION2.a_i32, 12);
assert_eq!(config.SECTION2.a_bool, true);
}
更多详细信息请参阅文档。
依赖项
~0.5–1MB
~20K SLoC