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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
use std::{
cmp::Reverse,
collections::{hash_map::DefaultHasher, HashSet},
env,
ffi::OsString,
fs,
hash::{Hash, Hasher},
io::{self, BufRead, BufReader, BufWriter, Read, Write},
iter,
path::{Component, Path, PathBuf},
process::{self, Command, Stdio},
};
use itertools::Itertools;
use {
cerm::{err, warn},
tempfile::tempdir,
};
#[derive(Default)]
struct Flags {
pub dryrun: bool,
pub encode: bool,
pub individual: bool,
pub nul: bool,
pub verbose: bool,
}
fn usage(bad_flags: Option<lexopt::Error>) -> ! {
let p = env::args().next().unwrap();
if let Some(e) = bad_flags {
warn!("{e}");
}
eprintln!("Usage: {p} [-0eiv] command [argument ...]");
process::exit(1);
}
fn main() {
if let Err(e) = work() {
err!("{e}");
}
}
fn work() -> Result<(), io::Error> {
let (flags, rest) = match parse_args() {
Ok(a) => a,
Err(e) => usage(Some(e)),
};
let (cmd, args) = rest.split_first().unwrap_or_else(|| usage(None));
// Collect sources from standard input
let srcs = io::stdin()
.bytes()
.map(|x| {
x.unwrap_or_else(|e| {
err!("{e}");
})
})
.group_by(|b| *b == (b'\0' + b'\n' * !flags.nul as u8));
let srcs = srcs
.into_iter()
.filter(|(x, _)| !x)
.map(|(_, x)| String::from_utf8(x.collect_vec()))
.collect::<Result<Vec<_>, _>>()
.unwrap_or_else(|e| {
err!("{e}");
});
// Spawn the child process
let mut child = Command::new(cmd)
.args(args)
.stdin(Stdio::piped())
.stdout(Stdio::piped())
.spawn()
.unwrap_or_else(|e| {
err!("Failed to spawn utility “{}”: {e}", cmd.to_str().unwrap());
});
// Pass the source files to the child process.
{
let ci = child.stdin.take().unwrap_or_else(|| {
err!("Could not open the child process’ stdin");
});
let mut ci = BufWriter::new(ci);
if flags.encode {
srcs.iter()
.try_for_each(|src| writeln!(ci, "{}", encode_string(src)))?;
} else {
srcs.iter().try_for_each(|src| writeln!(ci, "{}", src))?;
}
}
// Read the destination file list from the process.
let mut dsts = Vec::with_capacity(srcs.len());
{
let co = child.stdout.take().unwrap_or_else(|| {
err!("Count not open the child process’ stdout.");
});
let co = BufReader::new(co);
// TODO: Don’t allocate an intermediary String per line, by using the BufReader buffer.
co.lines().try_for_each(|dst| -> Result<(), io::Error> {
if flags.encode {
dsts.push(decode_string(&dst?));
} else {
dsts.push(dst?);
}
Ok(())
})?;
if dsts.len() != srcs.len() {
err!("Files have been added or removed during editing");
}
}
/* If the process failed, it is expected to print an error message; as such,
we exit directly. */
if !child.wait()?.success() {
process::exit(1);
}
let mut uniq_srcs: HashSet<PathBuf> = HashSet::with_capacity(srcs.len());
let mut uniq_dsts: HashSet<PathBuf> = HashSet::with_capacity(dsts.len());
let dir = tempdir()?;
let mut ps = srcs
.iter()
.zip(dsts)
.map(|(s, d)| -> Result<(PathBuf, PathBuf, PathBuf), io::Error> {
let s = fs::canonicalize(s)?;
let d = env::current_dir()?.join(Path::new(&d));
let d = normalize_path(&d);
if !uniq_srcs.insert(s.clone()) {
err!(
"Input file “{}” specified more than once",
s.to_string_lossy()
);
} else if !uniq_dsts.insert(d.clone()) {
err!(
"Output file “{}” specified more than once",
d.to_string_lossy()
);
} else {
let mut hasher = DefaultHasher::new();
s.hash(&mut hasher);
let file = hasher.finish().to_string();
let t = dir.path().join(&file);
Ok((s, t, d))
}
})
.collect::<Result<Vec<_>, io::Error>>()?;
/* Sort the src/dst pairs so that the sources with the longest componenets
come first. */
ps.sort_by_key(|s| Reverse(s.0.components().count()));
if flags.dryrun {
for (s, _, d) in ps {
println!("{} -> {}", s.as_path().display(), d.as_path().display());
}
} else {
for (s, t, _) in ps.iter() {
move_path(&flags, &s, &t);
}
for (_, t, d) in ps.iter().rev() {
move_path(&flags, &t, &d);
}
}
Ok(())
}
fn parse_args() -> Result<(Flags, Vec<OsString>), lexopt::Error> {
use lexopt::prelude::*;
let mut rest = Vec::with_capacity(env::args().len());
let mut flags = Flags::default();
let mut parser = lexopt::Parser::from_env();
while let Some(arg) = parser.next()? {
match arg {
Short('0') | Long("nul") => flags.nul = true,
Short('d') | Long("dryrun") => flags.dryrun = true,
Short('e') | Long("encode") => flags.encode = true,
Short('i') | Long("individual") => flags.individual = true,
Short('v') | Long("verbose") => flags.verbose = true,
Value(v) => {
rest.push(v);
rest.extend(iter::from_fn(|| parser.value().ok()));
}
_ => return Err(arg.unexpected()),
}
}
Ok((flags, rest))
}
fn encode_string(s: &str) -> String {
s.chars()
.flat_map(|c| {
let cs = match c {
'\\' => ['\\', '\\'],
'\n' => ['\\', 'n'],
_ => [c, '\0'],
};
cs.into_iter()
.enumerate()
.filter(|(i, c)| *i != 1 || *c != '\0')
.map(|(_, c)| c)
})
.collect::<String>()
}
fn decode_string(s: &str) -> String {
let mut pv = false;
s.chars()
.map(|c| {
Ok(match (pv, c) {
(true, '\\') => {
pv = false;
Some('\\')
}
(true, 'n') => {
pv = false;
Some('\n')
}
(true, _) => {
pv = false;
return Err(());
}
(false, '\\') => {
pv = true;
None
}
(false, _) => Some(c),
})
})
.filter_map(Result::transpose)
.collect::<Result<String, ()>>()
.unwrap_or_else(|_| {
err!("Decoding the file “{}” failed", s);
})
}
/* Blatantly stolen from the Cargo source code. This is MIT licensed. */
fn normalize_path(path: &Path) -> PathBuf {
let mut components = path.components().peekable();
let mut ret = if let Some(c @ Component::Prefix(..)) = components.peek().cloned() {
components.next();
PathBuf::from(c.as_os_str())
} else {
PathBuf::new()
};
for component in components {
match component {
Component::Prefix(..) => unreachable!(),
Component::RootDir => {
ret.push(component.as_os_str());
}
Component::CurDir => {}
Component::ParentDir => {
ret.pop();
}
Component::Normal(c) => {
ret.push(c);
}
}
}
ret
}
fn move_path(flags: &Flags, from: &PathBuf, to: &PathBuf) {
if flags.verbose {
println!("{} -> {}", from.as_path().display(), to.as_path().display());
}
if !flags.dryrun {
copy_and_remove_file_or_dir(&from, &to).unwrap_or_else(|(f, e)| {
err!("{}: {e}", f.to_string_lossy());
});
}
}
fn copy_and_remove_file_or_dir<'a>(
from: &'a PathBuf,
to: &'a PathBuf,
) -> Result<(), (&'a PathBuf, io::Error)> {
let data = fs::metadata(&from).map_err(|e| (from, e))?;
if data.is_dir() {
fs::create_dir(&to).map_err(|e| (to, e))?;
fs::remove_dir(&from).map_err(|e| (from, e))?
} else {
fs::copy(&from, &to).map_err(|e| (to, e))?;
fs::remove_file(&from).map_err(|e| (from, e))?
}
Ok(())
}
|