添加一些说明(
This commit is contained in:
parent
09273881a6
commit
e30a9629da
13
run.conf
Normal file
13
run.conf
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# 这是一个范例
|
||||||
|
|
||||||
|
# 除了 true 都会被认为是 false
|
||||||
|
show_console = true
|
||||||
|
|
||||||
|
# 就是 chdir (默认 ./lib)
|
||||||
|
chdir = ../lib
|
||||||
|
|
||||||
|
# 运行的可执行文件名称 (默认 ./main)
|
||||||
|
bin = ./main
|
||||||
|
|
||||||
|
# 运行的参数 (默认 "")
|
||||||
|
arg = aaa
|
@ -2,21 +2,56 @@ use std::fmt::Display;
|
|||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
|
|
||||||
pub const HELP_MESSAGE: &str = r#"call [options] [--] [arguments]
|
pub const HELP_MESSAGE_EN: &str = r#"call [options] [--] [arguments]
|
||||||
Options:
|
Options:
|
||||||
--hide Hide console window (default)
|
--hide Hide console window (default)
|
||||||
--show Show console window
|
--show Show console window
|
||||||
--chdir Change working directory to lib (default)
|
|
||||||
--chdir=xxx Change working directory to xxx
|
--chdir=xxx Change working directory to xxx
|
||||||
--bin=xxx Specify executable file
|
--bin=xxx Specify executable file
|
||||||
--config=xxx Specify configuration file
|
--config=xxx Specify configuration file
|
||||||
--help Print this help message
|
--help Print this help message(based on system language)
|
||||||
|
--help-zh Print this help message(but in Chinese)
|
||||||
|
--help-en Print this help message
|
||||||
Defaults:
|
Defaults:
|
||||||
hide console
|
hide console
|
||||||
chdir ./lib
|
chdir ./lib
|
||||||
run ./main
|
run ./main
|
||||||
"#;
|
"#;
|
||||||
|
|
||||||
|
pub const HELP_MESSAGE_ZH: &str = r#"call [选项] [--] [参数]
|
||||||
|
选项:
|
||||||
|
--hide 隐藏控制台窗口 (默认)
|
||||||
|
--show 显示控制台窗口
|
||||||
|
--chdir=xxx 切换工作目录到 xxx
|
||||||
|
--bin=xxx 指定可执行文件
|
||||||
|
--config=xxx 指定配置文件
|
||||||
|
--help 输出这一堆东西(根据系统语言)
|
||||||
|
--help-zh 输出这一堆东西
|
||||||
|
--help-en 输出这一堆东西(但是英文)
|
||||||
|
默认:
|
||||||
|
隐藏控制台
|
||||||
|
切换工作目录到 ./lib
|
||||||
|
运行 ./main
|
||||||
|
"#;
|
||||||
|
|
||||||
|
pub fn show_help() {
|
||||||
|
println!("version: {}", crate::VERSION);
|
||||||
|
match std::env::var("LANG") {
|
||||||
|
Ok(lang) => {
|
||||||
|
println!("{}", lang);
|
||||||
|
if lang.contains("en") {
|
||||||
|
println!("{}", HELP_MESSAGE_EN);
|
||||||
|
} else {
|
||||||
|
println!("{}", HELP_MESSAGE_ZH);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Err(_) => {
|
||||||
|
println!("{}", HELP_MESSAGE_ZH);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Config {
|
pub struct Config {
|
||||||
pub show_console: bool,
|
pub show_console: bool,
|
||||||
@ -96,16 +131,29 @@ impl Config {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
let mut iter = line.splitn(2, "=");
|
let mut iter = line.splitn(2, "=");
|
||||||
let key = iter.next().unwrap();
|
let key = iter.next().unwrap_or("").trim();
|
||||||
let value = iter.next().unwrap();
|
let value = iter.next().unwrap_or("").trim();
|
||||||
if key == "show_console" {
|
match key {
|
||||||
show_console = value == "true";
|
"show_console" => {
|
||||||
} else if key == "chdir" {
|
show_console = value == "true";
|
||||||
chdir = Some(value.to_string());
|
}
|
||||||
} else if key == "bin" {
|
"chdir" => {
|
||||||
bin = Some(value.to_string());
|
chdir = Some(value.to_string());
|
||||||
} else if key == "arg" {
|
}
|
||||||
arg = Some(value.to_string());
|
"bin" => {
|
||||||
|
bin = Some(value.to_string());
|
||||||
|
}
|
||||||
|
"arg" => {
|
||||||
|
arg = Some(value.to_string());
|
||||||
|
}
|
||||||
|
"" => continue,
|
||||||
|
_ => {
|
||||||
|
// 警告一下
|
||||||
|
println!("Warning: unknown config key: {}", key);
|
||||||
|
if !value.is_empty() {
|
||||||
|
print!("value: {}", value)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 处理一下 bin
|
// 处理一下 bin
|
||||||
@ -131,8 +179,7 @@ impl Config {
|
|||||||
let args: Vec<String> = std::env::args().collect();
|
let args: Vec<String> = std::env::args().collect();
|
||||||
// 先检查有没有 --help
|
// 先检查有没有 --help
|
||||||
if args.contains(&"--help".to_string()) {
|
if args.contains(&"--help".to_string()) {
|
||||||
println!("v {}", crate::VERSION);
|
show_help();
|
||||||
println!("{}", HELP_MESSAGE);
|
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user