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可以自动对任何可以通过命令或管道运行的东西进行基准测试。

rust 复制代码
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。

rust 复制代码
[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:

rust 复制代码
#[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!中使用{:?}!

rust 复制代码
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:

现在我们可以收集和处理程序的参数了:

rust 复制代码
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结构体中,并返回它。

rust 复制代码
fn main() {
	let args = parse_args(); println!("{:?}", args);
}
rust 复制代码
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结构体的表示形式:

rust 复制代码
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" }
相关推荐
Chan162 分钟前
JVM从入门到实战:从字节码组成、类生命周期到双亲委派及打破双亲委派机制
java·jvm·spring boot·后端·intellij-idea
dpxiaolong23 分钟前
RK3588 Android12默认移除导航栏
开发语言·python
Pocker_Spades_A1 小时前
Python快速入门专业版(二十九):函数返回值:多返回值、None与函数嵌套调用
服务器·开发语言·python
良木林1 小时前
浅谈原型。
开发语言·javascript·原型模式
烈风1 小时前
004 Rust控制台打印输出
开发语言·后端·rust
用户21411832636021 小时前
用 AI 一键搞定!中医药科普短视频制作升级版
后端
一枝小雨2 小时前
【C++】list 容器操作
开发语言·c++·笔记·list·学习笔记
HMBBLOVEPDX2 小时前
C++(继承和多态)
开发语言·c++·继承和多态
yvya_2 小时前
JVM介绍
java·开发语言·jvm
秋难降2 小时前
零基础学习SQL(十一):SQL 索引结构|从 B+Tree 到 Hash,面试常问的 “为啥选 B+Tree” 有答案了
数据库·后端·mysql