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
|
#![allow(non_camel_case_types)]
use std::sync::{Arc, Mutex};
use std::{env::*, fs::OpenOptions, path::PathBuf};
use super::{Builtin, BuiltinError as Error, BuiltinResult as Result};
use crate::parse::CmdDisplay;
use crate::*;
pub struct cd;
impl Builtin for cd {
fn name(&self) -> &str {
"cd"
}
fn io(
&self,
se: Arc<Mutex<Session>>,
args: &[BString],
_stdin: &mut dyn Read,
_stdout: &mut dyn Write,
) -> Result {
let mut dir = match current_dir() {
Ok(path) => path.as_os_str().as_bytes().to_vec(),
Err(_) => vec![b'.'],
};
std::mem::swap(&mut dir, &mut se.lock().unwrap().prev_path);
match args.get(0).map(|v| &v[..]) {
Some(b"-") => {
let _ = set_current_dir(OsStr::from_bytes(&dir));
}
Some(path) => {
let _ = set_current_dir(OsStr::from_bytes(path));
}
None => {
if let Some(home) = std::env::var_os("HOME") {
let _ = set_current_dir(home);
}
}
}
Ok(())
}
}
pub struct clear;
impl Builtin for clear {
fn name(&self) -> &str {
"clear"
}
fn io(
&self,
_session: Arc<Mutex<Session>>,
_args: &[BString],
_stdin: &mut dyn Read,
stdout: &mut dyn Write,
) -> Result {
stdout.write_all(b"\x1B[2J\x1B[1;1H")?;
Ok(())
}
}
/// restart shell
pub struct re;
impl Builtin for re {
fn name(&self) -> &str {
"re"
}
fn io(
&self,
session: Arc<Mutex<Session>>,
_args: &[BString],
_stdin: &mut dyn Read,
_stdout: &mut dyn Write,
) -> Result {
session.lock().unwrap().raw.disable();
crate::reload::begin_reload();
session.lock().unwrap().raw.enable(); // something went wrong, let's restore raw mode
Ok(())
}
}
pub struct Sink {
name: &'static str,
append: bool,
}
impl Builtin for Sink {
fn name(&self) -> &str {
self.name
}
fn io(
&self,
_session: Arc<Mutex<Session>>,
args: &[BString],
stdin: &mut dyn Read,
_stdout: &mut dyn Write,
) -> Result {
let Some(path) = args.get(0) else {
// TODO exit code
return Ok(());
};
let path = PathBuf::from(OsStr::from_bytes(path));
let mut file = OpenOptions::new()
.write(true)
.create(true)
.append(self.append)
.open(path)?;
std::io::copy(stdin, &mut file)?;
Ok(())
}
}
pub const fn sink(name: &'static str, append: bool) -> Sink {
Sink { name, append }
}
pub struct from;
impl Builtin for from {
fn name(&self) -> &str {
"from"
}
fn io(
&self,
_session: Arc<Mutex<Session>>,
args: &[BString],
_stdin: &mut dyn Read,
stdout: &mut dyn Write,
) -> Result {
let Some(path) = args.get(0) else {
// TODO exit code
return Ok(());
};
let path = PathBuf::from(OsStr::from_bytes(path));
let mut file = OpenOptions::new().read(true).open(path)?;
std::io::copy(&mut file, stdout)?;
Ok(())
}
}
pub struct _type;
impl Builtin for _type {
fn name(&self) -> &str {
"type"
}
fn io(
&self,
session: Arc<Mutex<Session>>,
args: &[BString],
_stdin: &mut dyn Read,
stdout: &mut dyn Write,
) -> Result {
for arg in args {
let mut kind = String::from("not found");
{
let _se = session.lock().unwrap();
// TODO: look up functions in session
for b in super::BUILTINS {
if b.name().as_bytes() == &arg[..] {
kind = String::from("builtin");
break;
}
}
};
writeln!(stdout, "{} is {}", String::from_utf8_lossy(arg), kind)?;
}
Ok(())
}
}
pub struct builtins;
impl Builtin for builtins {
fn name(&self) -> &str {
"builtins"
}
fn io(
&self,
_session: Arc<Mutex<Session>>,
_args: &[BString],
_stdin: &mut dyn Read,
stdout: &mut dyn Write,
) -> Result {
let mut bs = super::BUILTINS.to_vec();
bs.sort_by_key(|b| b.name());
for b in bs.into_iter() {
write!(stdout, "{} ", b.name())?;
}
writeln!(stdout)?;
Ok(())
}
}
pub struct history;
impl Builtin for history {
fn name(&self) -> &str {
"history"
}
fn io(
&self,
session: Arc<Mutex<Session>>,
_args: &[BString],
_stdin: &mut dyn Read,
stdout: &mut dyn Write,
) -> Result {
// TODO: better history querying
let hist = session.lock().unwrap().history.clone();
for entry in hist {
stdout.write_all(&entry)?;
stdout.write_all(b"\n")?;
}
Ok(())
}
}
pub struct escape;
impl Builtin for escape {
fn name(&self) -> &str {
"escape"
}
fn io(
&self,
_session: Arc<Mutex<Session>>,
args: &[BString],
_stdin: &mut dyn Read,
stdout: &mut dyn Write,
) -> Result {
for arg in args.iter() {
let escaped = arg.escape_ascii().to_string();
stdout.write_all(escaped.as_bytes())?;
stdout.write_all(b" ")?;
}
Ok(())
}
}
pub struct parse;
impl Builtin for parse {
fn name(&self) -> &str {
"parse"
}
fn io(
&self,
_session: Arc<Mutex<Session>>,
args: &[BString],
_stdin: &mut dyn Read,
stdout: &mut dyn Write,
) -> Result {
let mut is_ok = true;
for arg in args {
match crate::parse::do_parse(arg) {
Ok(parsed) => {
write!(stdout, "ok ")?;
parsed.cdisplay(stdout)?;
writeln!(stdout)?;
},
Err(err) => {
is_ok = false;
writeln!(stdout, "err {err:?}")?;
}
}
}
if is_ok { Ok(()) } else { Err(Error::Exit(-1)) }
}
}
|