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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
|
use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::{Arc, Mutex};
use crate::parse::{Ast, PostExpansion, PreExpansion};
use crate::*;
mod builtin;
enum ExecError {
UnknownVariable(BString),
ExecError(i32),
}
struct Executor {
se: Arc<Mutex<Session>>,
}
#[derive(Clone)]
struct ArcWriter {
inner: Arc<Mutex<Vec<u8>>>,
}
impl ArcWriter {
pub fn new() -> Self {
Self {
inner: Arc::new(Mutex::new(Vec::new())),
}
}
pub fn into_inner(self) -> Vec<u8> {
self.inner.lock().unwrap().clone()
}
}
impl std::io::Write for ArcWriter {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.inner.lock().unwrap().extend_from_slice(buf);
Ok(buf.len())
}
fn flush(&mut self) -> io::Result<()> {
Ok(())
}
}
impl Executor {
fn execute_pipeline(
&mut self,
pipes: parse::Pipes<parse::PostExpansion>,
capture: Option<&mut Vec<u8>>,
) -> Result<(), ExecError> {
let mut children = Vec::new();
let mut threads = Vec::new();
let mut prev_reader = None;
let mut spawn_error = false;
let last_output = ArcWriter::new();
let mut last_is_command = false;
let pipelen = pipes.cmds.len();
for (i, cmd) in pipes.cmds.into_iter().enumerate() {
let (reader, writer) = if i < pipelen - 1 {
let (r, w) = io::pipe().unwrap();
(Some(r), Some(w))
} else {
(None, None)
};
let dc = self.se.lock().unwrap().dispatch.get(&cmd.cmd[..]);
match dc {
CommandKind::Path(path) => {
last_is_command = true;
let mut command = Command::new(&path);
for arg in cmd.args.iter() {
command.arg(OsStr::from_bytes(arg));
}
if let Some(r) = prev_reader.take() {
command.stdin(Stdio::from(r));
} else if capture.is_some() {
command.stdin(Stdio::null());
}
if let Some(w) = writer {
command.stdout(Stdio::from(w));
} else if capture.is_some() {
command.stdout(Stdio::piped());
}
let child = match command.spawn() {
Ok(c) => c,
Err(e) => {
let cmd = path.to_string_lossy();
let msg = match e.kind() {
io::ErrorKind::NotFound => format!("{cmd} not found"),
io::ErrorKind::PermissionDenied => {
format!("{cmd} is not executable")
}
io::ErrorKind::FileTooLarge => format!("{cmd} is too massive"),
io::ErrorKind::ResourceBusy | io::ErrorKind::ExecutableFileBusy => {
format!("{cmd} is busy")
}
io::ErrorKind::TooManyLinks => {
format!("{cmd} could not be resolved")
}
io::ErrorKind::InvalidFilename => {
format!("{cmd} is not a valid file name")
}
io::ErrorKind::ArgumentListTooLong => format!("too many arguments"),
io::ErrorKind::Interrupted => format!("got interrupted"),
io::ErrorKind::Unsupported => format!("{cmd} is not supported"),
e => format!("I am surprised you can get this error here: {e:?}"),
};
println!("pish: {msg}");
spawn_error = true;
break;
}
};
children.push(child);
}
CommandKind::Builtin(builtin) => {
last_is_command = false;
let mut input: Box<dyn io::Read + Send> = match prev_reader.take() {
Some(r) => Box::new(r),
None if capture.is_some() => Box::new(io::empty()),
None => Box::new(io::stdin()),
};
let mut output: Box<dyn io::Write + Send> = match writer {
Some(w) => Box::new(w),
None if capture.is_some() => Box::new(last_output.clone()),
None => Box::new(io::stdout()),
};
// currently only required for `re`, cannot happen in background thread
builtin.special(self.se.clone(), &cmd.args);
let cloned_session = self.se.clone();
let handle = std::thread::spawn(move || {
builtin.io(cloned_session, &cmd.args, &mut input, &mut output)
});
threads.push(handle);
}
}
prev_reader = reader;
}
if spawn_error {
for child in children.iter_mut() {
if let Err(e) = child.kill() {
println!("failed to kill child - {e:?}");
}
}
Err(ExecError::ExecError(127))
} else {
let mut code = 0;
for jh in threads {
match jh.join() {
Ok(Ok(())) => (),
Ok(Err(e)) => match e {
BuiltinError::IO(_) => code = -1,
BuiltinError::Exit(c) => code = c,
},
Err(_) => code = 127,
}
}
for child in children.iter_mut() {
match child.wait() {
Ok(ec) => {
if let Some(c) = ec.code() {
code = c;
}
}
Err(e) => {
println!("failed to wait for child - {e:?}")
}
}
}
if let Some(cap) = capture {
if last_is_command {
let child = children.into_iter().last().unwrap();
let out = child.wait_with_output().unwrap();
*cap = out.stdout;
} else {
*cap = last_output.into_inner();
}
}
if code == 0 {
Ok(())
} else {
Err(ExecError::ExecError(code))
}
}
}
fn execute_var_assign(&mut self, va: parse::VarAssign<PostExpansion>) -> Result<(), ExecError> {
self.se.lock().unwrap().vars.insert(va.var, va.val);
Ok(())
}
fn execute_fun_decl(&mut self, fd: parse::FunDecl<PostExpansion>) -> Result<(), ExecError> {
self.se.lock().unwrap().funs.insert(fd.name, *fd.body.body);
Ok(())
}
fn execute(
&mut self,
ast: Ast<parse::PostExpansion>,
capture: Option<&mut Vec<u8>>,
) -> Result<(), ExecError> {
match ast {
Ast::FunDecl(fd) => self.execute_fun_decl(fd),
Ast::VarAssign(va) => self.execute_var_assign(va),
Ast::Pipes(pipes) => self.execute_pipeline(pipes, capture),
}
}
}
impl parse::Expander for Executor {
type Error = ExecError;
fn expand_var(&mut self, var: BString) -> Result<BString, Self::Error> {
if let Some(val) = self.se.lock().unwrap().vars.get(&var) {
return Ok(val.clone())
}
match std::env::var_os(OsStr::from_bytes(&var)) {
Some(val) => Ok(val.as_bytes().to_vec()),
None => Err(ExecError::UnknownVariable(var)),
}
}
fn expand_cmd(&mut self, ast: Ast<parse::PostExpansion>) -> Result<BString, Self::Error> {
let mut out = Vec::new();
self.execute(ast, Some(&mut out))?;
if out.last() == Some(&b'\n') {
out.pop();
}
Ok(out)
}
}
fn exec(se: Arc<Mutex<Session>>, ast: Ast<PreExpansion>) -> Result<(), ExecError> {
let mut exec = Executor { se };
let ast = ast.expand(&mut exec)?;
exec.execute(ast, None)
}
pub fn run(se: Arc<Mutex<Session>>, cmd: Vec<u8>) {
let parsed = parse::do_parse(&cmd);
let parsed = match parsed {
Ok(p) => p,
Err(err) => {
se.lock().unwrap().raw.disable();
println!("{:?}: {}", err.0, String::from_utf8_lossy(&err.1));
print!("{}", se.lock().unwrap().prompt());
std::io::stdout().lock().flush().unwrap();
se.lock().unwrap().raw.enable();
return;
}
};
se.lock().unwrap().raw.disable();
let result = exec(se.clone(), parsed);
se.lock().unwrap().raw.enable();
let status_string = match result {
Ok(_) => String::new(),
Err(ExecError::UnknownVariable(var)) => {
format!("unbound variable: {}", String::from_utf8_lossy(&var))
}
Err(ExecError::ExecError(i)) => i.to_string(),
};
print!("\r{status_string}\r\n{}", se.lock().unwrap().prompt());
let _ = std::io::stdout().lock().flush();
}
#[derive(Debug)]
pub enum BuiltinError {
IO(std::io::Error),
Exit(i32),
}
impl From<std::io::Error> for BuiltinError {
fn from(value: std::io::Error) -> Self {
Self::IO(value)
}
}
type BuiltinResult = Result<(), BuiltinError>;
#[allow(unused_variables)]
pub trait Builtin: Send + Sync {
fn name(&self) -> &str;
fn special(&self, session: Arc<Mutex<Session>>, args: &[BString]) {}
fn io(
&self,
session: Arc<Mutex<Session>>,
args: &[BString],
stdin: &mut dyn Read,
stdout: &mut dyn Write,
) -> BuiltinResult;
}
const BUILTINS: &[&'static dyn Builtin] = &[
&builtin::cd,
&builtin::clear,
#[cfg(debug_assertions)]
&builtin::re,
&builtin::sink("to", false),
&builtin::sink("into", false),
&builtin::sink("append", true),
&builtin::from,
&builtin::builtins,
&builtin::_type,
&builtin::history,
&builtin::escape,
&builtin::parse,
];
pub struct CommandDispatch {
map: HashMap<BString, CommandKind>,
}
impl CommandDispatch {
pub fn new() -> Self {
let mut map = HashMap::new();
// builtins
for &b in BUILTINS {
map.insert(b.name().as_bytes().to_vec(), CommandKind::Builtin(b));
}
Self { map }
}
fn get(&self, cmd: &bstr) -> CommandKind {
let path_cmd = CommandKind::Path(PathBuf::from(OsStr::from_bytes(cmd)));
if cmd.contains(&b'/') {
path_cmd
} else if let Some(cmd) = self.map.get(cmd) {
cmd.clone()
} else {
path_cmd
}
}
}
#[derive(Clone)]
pub enum CommandKind {
Builtin(&'static dyn Builtin),
Path(PathBuf),
}
|