Compare commits
2 Commits
5cde716b34
...
0f6ade99a1
Author | SHA1 | Date | |
---|---|---|---|
![]() |
0f6ade99a1 | ||
![]() |
0063dc4ae5 |
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "csaf2cusa"
|
||||
version = "0.1.1"
|
||||
version = "0.1.3"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
10
src/cli.rs
10
src/cli.rs
|
@ -74,4 +74,12 @@ pub fn parse() -> Cli {
|
|||
|
||||
#[derive(Clone, Debug, Parser)]
|
||||
#[command(author, version, about, long_about = None)]
|
||||
pub struct AutoCli;
|
||||
pub struct AutoCli {
|
||||
/// 指定 CVRF 公告所在的源路径
|
||||
#[arg(long, short)]
|
||||
pub source: Option<String>,
|
||||
|
||||
/// 转换 CUSA 后存储的目标路径
|
||||
#[arg(long, short)]
|
||||
pub target: Option<String>,
|
||||
}
|
||||
|
|
|
@ -13,6 +13,11 @@ pub(crate) struct AutoConfig {
|
|||
}
|
||||
|
||||
impl AutoConfig {
|
||||
// 新建一个配置结构
|
||||
pub fn new(source: String, target: String) -> Self {
|
||||
Self { source, target }
|
||||
}
|
||||
|
||||
// 从文件中读取配置
|
||||
pub fn from<P: AsRef<Path>>(path: P) -> crate::Result<Self> {
|
||||
let data = std::fs::read_to_string(path)?;
|
||||
|
|
39
src/lib.rs
39
src/lib.rs
|
@ -8,7 +8,7 @@ use regex::Regex;
|
|||
use tracing::{debug, error, info, trace};
|
||||
use tracing_subscriber::{fmt, EnvFilter};
|
||||
|
||||
use config::RepairConfig;
|
||||
use config::{AutoConfig, RepairConfig};
|
||||
use csaf_parser::CSAF;
|
||||
|
||||
pub mod cli;
|
||||
|
@ -37,7 +37,7 @@ pub fn cumain() -> Result<()> {
|
|||
match cli.subcommand {
|
||||
cli::CliSub::Convert(cli) => covert(&cli),
|
||||
cli::CliSub::Db(cli) => sadb(&cli),
|
||||
cli::CliSub::Auto(_) => auto(),
|
||||
cli::CliSub::Auto(cli) => auto(&cli),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -193,20 +193,29 @@ fn walk_dir<P: AsRef<Path>>(path: P, nodir: bool) -> Vec<PathBuf> {
|
|||
}
|
||||
|
||||
/// 从配置文件中读取 csaf 和 cusa 数据库的路径,并执行自动转换操作
|
||||
pub fn auto() -> Result<()> {
|
||||
// 默认配置为,但也可读取执行命令路径下的配置
|
||||
let config = {
|
||||
let default = Path::new("/etc/cuvars/csaf2cusa.json");
|
||||
if default.is_file() {
|
||||
default.to_str().unwrap()
|
||||
} else {
|
||||
"csaf2cusa.json"
|
||||
}
|
||||
pub fn auto(cli: &cli::AutoCli) -> Result<()> {
|
||||
let auto = if cli.source.is_some() && cli.target.is_some() {
|
||||
let auto = AutoConfig::new(
|
||||
cli.source.as_ref().unwrap().to_owned(),
|
||||
cli.target.as_ref().unwrap().to_owned(),
|
||||
);
|
||||
info!("从参数中读取 AutoConfig: {:#?}", auto);
|
||||
auto
|
||||
} else {
|
||||
// 默认配置为,但也可读取执行命令路径下的配置
|
||||
let config = {
|
||||
let default = Path::new("/etc/cuvars/cvrf2cusa.json");
|
||||
if default.is_file() {
|
||||
default.to_str().unwrap()
|
||||
} else {
|
||||
"cvrf2cusa.json"
|
||||
}
|
||||
};
|
||||
info!("Config file is: {}", config);
|
||||
let auto = config::AutoConfig::from(config)?;
|
||||
info!("Load AutoConfig: {:#?}", auto);
|
||||
auto
|
||||
};
|
||||
info!("Config file is: {}", config);
|
||||
|
||||
let auto = config::AutoConfig::from(config)?;
|
||||
info!("Load AutoConfig: {:?}", auto);
|
||||
|
||||
let files = walk_dir(auto.source(), true);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user