From 1bf5868fce251ae83a0c6405ba90f45852caed0b Mon Sep 17 00:00:00 2001 From: Jia Chao Date: Fri, 12 Jul 2024 10:04:01 +0800 Subject: [PATCH] =?UTF-8?q?cli:=20=E5=A2=9E=E5=8A=A0=20--quiet=20=E9=9D=99?= =?UTF-8?q?=E9=BB=98=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jia Chao --- src/cli.rs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/cli.rs b/src/cli.rs index e69de29..4cc52c6 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -0,0 +1,31 @@ +use clap::Parser; + +/// cuweb-syncer 是一个用于从远程 web 服务器同步文件至本地的命令行工具。 +#[derive(Clone, Debug, Parser)] +#[command(author, version, about, long_about = None)] +pub(crate) struct Cli { + /// 在终端输出当前的配置文件内容 + #[arg(long, default_value_t = false)] + pub config: bool, + + /// 是否开启 debug 模式,将打印更详尽的日志信息 + #[arg(long, default_value_t = false)] + pub debug: bool, + + /// 静默模式,如任务运行正常则无任何信息输出 + #[arg(long, default_value_t = false)] + pub quiet: bool, + + /// 可选项,需配合 `dest` 参数使用,只运行一次指定的同步任务,指定服务器地址 + #[arg(short, long)] + pub from: Option, + + /// 可选项,需配合 `from` 参数使用,只运行一次指定的同步任务,指定同步的本地路径 + #[arg(short, long)] + pub dest: Option, +} + +/// 从命令行环境变量读取并转换为 `Cli` +pub(crate) fn parse() -> Cli { + Cli::parse() +} \ No newline at end of file