Rust: Filesystems and Command-Line Tools

Rust has found a significant niche in the world of command-line tools.
Rust已经在命令行工具的世界中找到了一个重要的位置。

As a modern, safe, and fast systems programming language, it gives programmers a toolbox they can use to assemble slick command-line interfaces that replicate or extend the functionality of existing tools.
作为一种现代、安全和快速的系统编程语言,它为程序员提供了一个工具箱,他们可以使用它来组装精美的命令行界面,这些界面可以复制或扩展现有工具的功能。

For instance, the bat command provides a syntax- highlighting-aware cat alternative with built-in support for paging tools, and hyperfine can automatically benchmark anything that can be run with a command or pipeline.
例如,bat命令提供了一个支持语法高亮显示的cat替代方案,它内置了对分页工具的支持,而且hyperfine可以自动对任何可以通过命令或管道运行的东西进行基准测试。

cargo new quickreplace
	Created binary (application) `quickreplace` package
cd quickreplace

For our program, we’ll need two other crates: text- colorizer for creating colorful output in the terminal and regex for the actual search-and-replace functionality.
对于我们的程序,我们还需要另外两个crate:用于在终端中创建彩色输出的text- colorizer和用于实际搜索和替换功能的regex。

[package]
 name = "quickreplace"
 version = "0.1.0"
 authors = ["You <you@example.com>"]
 edition = "2024"
 # See more keys and their definitions at
 # https://doc.rust-lang.org/cargo/reference/manifest.html
 [dependencies]
 text-colorizer = "1"
 regex = "1"

The Command-Line Interface
It takes four arguments: a string (or regular expression) to search for, a string (or regular expression) to replace it with, the name of an input file, and the name of an output file.
We’ll start off our main.rs file with a struct containing these arguments:

#[derive(Debug)]
struct Arguments { target: String,
      replacement: String,
      filename: String,
      output: String,
}

The #[derive(Debug)] attribute tells the compiler to generate some extra code that allows us to format the Arguments struct with {:?} in println!.
#[派生(调试)]属性告诉编译器生成一些额外的代码,这些代码允许我们在println!中使用{:?}!

use text_colorizer::*;
fn print_usage() {
	eprintln!("{} - change occurrences of one string into another","quickreplace".green());
    eprintln!("Usage: quickreplace <target> <replacement> <INPUT> <OUTPUT>");
  }

Now we can collect and process the program’s arguments:
现在我们可以收集和处理程序的参数了:

use std::env;
fn parse_args() -> Arguments {
	let args: Vec<String> = env::args().skip(1).collect();
	if args.len() != 4 { print_usage();
	          eprintln!("{} wrong number of arguments: expected 4, got
	  {}.",
	              "Error:".red().bold(), args.len());
	          std::process::exit(1);
	}
	Arguments {
	target: args[0].clone(), replacement: args[1].clone(), filename: args[2].clone(), output: args[3].clone()
} }

.skip(1) skips the iterator’s first value (the name of the program being run) so that the result has only the command-line arguments.
.skip(1)跳过迭代器的第一个值(正在运行的程序的名称),因此结果只有命令行参数。

The collect() method produces a Vec of arguments.
collect()方法产生一个参数集合。

We again colorize part of the message and use .bold() to make the text heavier, as well.
我们再次为部分消息上色,并使用.bold()使文本变粗。

If the right number of arguments is present, we putt them in an Arguments struct, and return it.
如果存在正确数量的参数,则将它们放入arguments结构体中,并返回它。

fn main() {
	let args = parse_args(); println!("{:?}", args);
}
cargo run
Updating crates.io index
  Compiling libc v0.2.82
  Compiling lazy_static v1.4.0
  Compiling memchr v2.3.4
  Compiling regex-syntax v0.6.22
  Compiling thread_local v1.1.0
  Compiling aho-corasick v0.7.15
  Compiling atty v0.2.14
  Compiling text-colorizer v1.0.0
  Compiling regex v1.4.3
  Compiling quickreplace v0.1.0 (/home/jimb/quickreplace)
  Finished dev [unoptimized + debuginfo] target(s) in 6.98s
  Running `target/debug/quickreplace`
  quickreplace - change occurrences of one string into another
  Usage: quickreplace <target> <replacement> <INPUT> <OUTPUT>
  Error: wrong number of arguments: expected 4, got 0

If you give the program some arguments, it will instead print out a representation of the Arguments struct:
如果你给程序一些参数,它会打印出arguments结构体的表示形式:

cargo run "find" "replace" file output
Finished dev [unoptimized + debuginfo] target(s) in 0.01s
       Running `target/debug/quickreplace find replace file output`
  Arguments { target: "find", replacement: "replace", filename:
  "file", output: "output" }
  • 8
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

0010000100

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值