1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
mod commands;
mod dirs;
mod edit;
mod load;
mod model;
mod template;
mod vsort;
use std::path::PathBuf;
use clap::{Parser, Subcommand};
use crate::dirs::BaseDirs;
use crate::model::{CacheTarget, Format, PathType, SortBy};
#[derive(Parser)]
#[command(
name = "qpath",
version,
about = "Register and list frequently used paths"
)]
struct Cli {
#[command(subcommand)]
command: Command,
}
#[derive(Subcommand)]
enum Command {
/// List registered paths
#[command(alias = "list")]
Ls {
/// Filter by path type (directory, file, existent)
#[arg(long = "type", value_name = "TYPE", value_parser = PathType::parse,
default_value = "existent")]
type_: PathType,
/// Output format
#[arg(long, value_enum, default_value = "tsv")]
format: Format,
/// Output expanded absolute paths
#[arg(long)]
expand: bool,
},
/// Show a single path definition by exact abbreviation
Show {
abbr: String,
/// Filter by path type (directory, file, existent)
#[arg(long = "type", value_name = "TYPE", value_parser = PathType::parse,
default_value = "existent")]
type_: PathType,
/// Output format
#[arg(long, value_enum, default_value = "tsv")]
format: Format,
/// Output expanded absolute paths
#[arg(long)]
expand: bool,
},
/// Add or update a path definition
Add {
abbr: String,
path: String,
/// Path type (directory, file, existent)
#[arg(long = "type", value_name = "TYPE", value_parser = PathType::parse)]
type_: Option<PathType>,
/// Description
#[arg(long)]
desc: Option<String>,
/// Definition file to edit
#[arg(long)]
file: Option<PathBuf>,
/// Sort entries by this field after editing
#[arg(long, value_enum, default_value = "abbr")]
sort_by: SortBy,
/// Update an existing entry with the same abbreviation
#[arg(long)]
overwrite: bool,
/// Save the path as an expanded absolute path
#[arg(long)]
expand: bool,
},
/// Update an existing path definition
Update {
abbr: String,
path: Option<String>,
/// Path type (directory, file, existent)
#[arg(long = "type", value_name = "TYPE", value_parser = PathType::parse)]
type_: Option<PathType>,
/// Description
#[arg(long)]
desc: Option<String>,
/// Definition file to edit
#[arg(long)]
file: Option<PathBuf>,
/// Sort entries by this field after editing
#[arg(long, value_enum, default_value = "abbr")]
sort_by: SortBy,
/// Save the path as an expanded absolute path
#[arg(long)]
expand: bool,
},
/// Rename a path abbreviation
Rename {
abbr: String,
new_abbr: String,
/// Definition file to edit
#[arg(long)]
file: Option<PathBuf>,
/// Sort entries by this field after editing
#[arg(long, value_enum, default_value = "abbr")]
sort_by: SortBy,
},
/// Remove a path definition
#[command(alias = "remove")]
Rm {
abbr: String,
/// Definition file to edit
#[arg(long)]
file: Option<PathBuf>,
/// Sort entries by this field after editing
#[arg(long, value_enum, default_value = "abbr")]
sort_by: SortBy,
},
/// Sort and reformat a definition file
#[command(alias = "fmt")]
Format {
/// Definition file to edit
#[arg(long)]
file: Option<PathBuf>,
/// Sort entries by this field
#[arg(long, value_enum, default_value = "abbr")]
sort_by: SortBy,
},
/// Manage cache files
Cache {
#[command(subcommand)]
command: CacheCommand,
},
}
#[derive(Subcommand)]
enum CacheCommand {
/// Remove cache files
Clear {
/// Cache to clear; all caches when omitted
#[arg(value_enum)]
target: Option<CacheTarget>,
},
}
fn main() {
let cli = Cli::parse();
if let Err(e) = run(cli) {
eprintln!("qpath: {e:#}");
std::process::exit(1);
}
}
fn run(cli: Cli) -> anyhow::Result<()> {
let dirs = BaseDirs::from_env()?;
match cli.command {
Command::Ls {
type_,
format,
expand,
} => commands::ls(&dirs, type_, format, expand),
Command::Show {
abbr,
type_,
format,
expand,
} => commands::show(&dirs, &abbr, type_, format, expand),
Command::Add {
abbr,
path,
type_,
desc,
file,
sort_by,
overwrite,
expand,
} => commands::add(
&dirs,
commands::AddOpts {
abbr,
path,
type_,
desc,
file,
sort_by,
overwrite,
expand,
},
),
Command::Update {
abbr,
path,
type_,
desc,
file,
sort_by,
expand,
} => commands::update(
&dirs,
commands::UpdateOpts {
abbr,
path,
type_,
desc,
file,
sort_by,
expand,
},
),
Command::Rename {
abbr,
new_abbr,
file,
sort_by,
} => commands::rename(&dirs, &abbr, &new_abbr, file, sort_by),
Command::Rm {
abbr,
file,
sort_by,
} => commands::rm(&dirs, &abbr, file, sort_by),
Command::Format { file, sort_by } => commands::format(&dirs, file, sort_by),
Command::Cache {
command: CacheCommand::Clear { target },
} => commands::cache_clear(&dirs, target),
}
}