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
use {EXIT_ERROR, EXIT_SUCCESS, POLLED_TWICE};
use env::{AsyncIoEnvironment, FileDescEnvironment, StringWrapper, ReportErrorEnvironment};
use io::FileDesc;
use future::{EnvFuture, Poll};
use spawn::ExitResult;
use std::borrow::Borrow;
use std::iter::Peekable;
use std::cmp;
use void::Void;
impl_generic_builtin_cmd! {
pub struct Echo;
pub fn echo();
pub struct SpawnedEcho;
pub struct EchoFuture;
where T: StringWrapper,
}
#[derive(Debug, Clone, Copy)]
struct Flags {
interpret_escapes: bool,
suppress_newline: bool,
}
impl<T, I, E: ?Sized> EnvFuture<E> for SpawnedEcho<I>
where T: StringWrapper,
I: Iterator<Item = T>,
E: AsyncIoEnvironment + FileDescEnvironment + ReportErrorEnvironment,
E::FileHandle: Borrow<FileDesc>,
{
type Item = ExitResult<EchoFuture<E::WriteAll>>;
type Error = Void;
fn poll(&mut self, env: &mut E) -> Poll<Self::Item, Self::Error> {
let args = self.args.take()
.expect(POLLED_TWICE)
.fuse()
.peekable();
generate_and_print_output!("echo", env, |_| -> Result<_, Void> {
let (flags, args) = parse_args(args);
Ok(generate_output(flags, args.into_iter().flat_map(|a| a)))
})
}
fn cancel(&mut self, _env: &mut E) {
self.args.take();
}
}
fn parse_args<I>(mut args: Peekable<I>) -> (Flags, Option<Peekable<I>>)
where I: Iterator,
I::Item: StringWrapper,
{
let mut flags = Flags {
interpret_escapes: false,
suppress_newline: false,
};
loop {
match args.peek() {
Some(ref arg) => {
if parse_arg(&mut flags, arg.as_str()) {
break;
}
},
None => return (flags, None),
}
let _ = args.next();
};
(flags, Some(args))
}
fn parse_arg(flags: &mut Flags, arg: &str) -> bool {
let mut chars = arg.chars();
if Some('-') != chars.next() {
return true;
}
let mut interpret_escapes = None;
let mut suppress_newline = None;
for c in chars {
match c {
'n' => suppress_newline = Some(true),
'e' => interpret_escapes = Some(true),
'E' => interpret_escapes = Some(false),
_ => return true,
}
}
interpret_escapes.map(|ie| flags.interpret_escapes = ie);
suppress_newline.map(|sn| flags.suppress_newline = sn);
false
}
fn generate_output<I>(flags: Flags, mut args: I) -> Vec<u8>
where I: Iterator,
I::Item: StringWrapper,
{
let mut out = String::new();
let mut suppress_newline = flags.suppress_newline;
macro_rules! push {
($arg:ident) => {{
if flags.interpret_escapes {
suppress_newline |= push_escaped_arg(&mut out, $arg.as_str());
} else {
out.push_str($arg.as_str());
}
}}
}
args.next().map(|first| push!(first));
for arg in args {
out.push_str(" ");
push!(arg);
}
if !suppress_newline {
out.push('\n');
}
out.into_bytes()
}
fn push_escaped_arg(out: &mut String, mut arg: &str) -> bool {
let mut suppress_newline = false;
'outer: loop {
match arg.find('\\') {
Some(idx) => {
let (before, after) = arg.split_at(idx);
out.push_str(before);
arg = after;
}
None => {
out.push_str(arg);
break;
},
};
let mut chars = arg.chars();
chars.next();
macro_rules! parse_numeric {
($max_len:expr, $radix:expr) => {{
let s = chars.as_str();
for i in (0..cmp::min(s.len(), $max_len) + 1).rev() {
if let Ok(val) = u8::from_str_radix(&s[..i], $radix) {
out.push(val as char);
arg = &s[i..];
continue 'outer;
}
}
}};
}
match chars.next() {
Some('a') => out.push('\u{07}'),
Some('b') => out.push('\u{08}'),
Some('c') => suppress_newline = true,
Some('e') => out.push('\u{1B}'),
Some('f') => out.push('\u{0C}'),
Some('n') => out.push('\n'),
Some('r') => out.push('\r'),
Some('t') => out.push('\t'),
Some('v') => out.push('\u{0B}'),
Some('\\') => out.push('\\'),
Some('0') => {
parse_numeric!(3, 8);
out.push_str("\\0");
},
Some('x') => {
parse_numeric!(2, 16);
out.push_str("\\x");
},
Some(c) => {
out.push('\\');
out.push(c);
},
None => {
out.push('\\');
break;
}
}
arg = chars.as_str();
}
suppress_newline
}