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
use crate::ast::{ArgSep, Expr, VarType};
use crate::console::Console;
use crate::exec::{self, BuiltinCommand, Machine};
use async_trait::async_trait;
use std::cell::RefCell;
use std::collections::HashMap;
use std::rc::Rc;
const LANG_REFERENCE: &str = r"
Variable types and references:
name? Boolean variable (TRUE and FALSE).
name% Integer variable (32 bits).
name$ String variable.
name Automatic variable (type determined by its value).
Assignments:
varref = expr
Expressions:
a + b a - b a * b a / b a MOD b -a
a AND b NOT a a OR b a XOR b
a = b a <> b a < b a <= b a > b a >= b
(a) varref
Flow control:
IF expr THEN: ...: ELSE IF expr THEN: ...: ELSE: ...: END IF
WHILE expr: ...: END WHILE
Misc:
st1: st2 Separates statements (same as a newline).
REM text Comment until end of line.
' text Comment until end of line.
, Long separator for arguments to builtin call.
; Short separator for arguments to builtin call.
";
pub struct HelpCommand {
console: Rc<RefCell<dyn Console>>,
}
impl HelpCommand {
pub fn new(console: Rc<RefCell<dyn Console>>) -> Self {
Self { console }
}
fn summary(
&self,
builtins: &HashMap<&'static str, Rc<dyn BuiltinCommand>>,
) -> exec::Result<()> {
let mut names = vec![];
let mut max_length = 0;
for name in builtins.keys() {
names.push(name);
if name.len() > max_length {
max_length = name.len();
}
}
names.sort();
let mut console = self.console.borrow_mut();
console.print("")?;
for name in names {
let filler = " ".repeat(max_length - name.len());
let builtin = builtins.get(name).unwrap();
let blurb = builtin.description().lines().next().unwrap();
console.print(&format!(" {}{} {}", builtin.name(), filler, blurb))?;
}
console.print("")?;
console.print(" Type HELP followed by a command name for details on that command.")?;
console.print(" Type HELP LANG for a quick reference guide about the language.")?;
console.print("")?;
Ok(())
}
fn describe(&self, builtin: &Rc<dyn BuiltinCommand>) -> exec::Result<()> {
let mut console = self.console.borrow_mut();
console.print("")?;
if builtin.syntax().is_empty() {
console.print(&format!(" {}", builtin.name()))?;
} else {
console.print(&format!(" {} {}", builtin.name(), builtin.syntax()))?;
}
for line in builtin.description().lines() {
console.print("")?;
console.print(&format!(" {}", line))?;
}
console.print("")?;
Ok(())
}
fn describe_lang(&self) -> exec::Result<()> {
let mut console = self.console.borrow_mut();
for line in LANG_REFERENCE.lines() {
console.print(line)?;
}
console.print("")?;
Ok(())
}
}
#[async_trait(?Send)]
impl BuiltinCommand for HelpCommand {
fn name(&self) -> &'static str {
"HELP"
}
fn syntax(&self) -> &'static str {
"[commandname]"
}
fn description(&self) -> &'static str {
"Prints interactive help.
Without arguments, shows a summary of all available commands.
With a single argument, shows detailed information about the given command."
}
async fn exec(
&self,
args: &[(Option<Expr>, ArgSep)],
machine: &mut Machine,
) -> exec::Result<()> {
let builtins = machine.get_builtins();
match args {
[] => {
self.summary(builtins)?;
}
[(Some(Expr::Symbol(vref)), ArgSep::End)] => {
if vref.ref_type() != VarType::Auto {
return exec::new_usage_error("Command name cannot have a type annotation");
}
let name = vref.name().to_ascii_uppercase();
if name == "LANG" {
self.describe_lang()?;
} else {
match &builtins.get(name.as_str()) {
Some(builtin) => self.describe(builtin)?,
None => {
return exec::new_usage_error(format!(
"Cannot describe unknown builtin {}",
name
))
}
}
}
}
_ => return exec::new_usage_error("HELP takes zero or only one argument"),
}
Ok(())
}
}
#[cfg(test)]
pub(crate) mod testutils {
use super::*;
pub(crate) struct DoNothingCommand {}
#[async_trait(?Send)]
impl BuiltinCommand for DoNothingCommand {
fn name(&self) -> &'static str {
"DO_NOTHING"
}
fn syntax(&self) -> &'static str {
"this [would] <be|the> syntax \"specification\""
}
fn description(&self) -> &'static str {
"This is the blurb.
First paragraph of the extended description.
Second paragraph of the extended description."
}
async fn exec(
&self,
_args: &[(Option<Expr>, ArgSep)],
_machine: &mut Machine,
) -> exec::Result<()> {
Ok(())
}
}
}
#[cfg(test)]
mod tests {
use super::testutils::*;
use super::*;
use crate::console::testutils::*;
use crate::exec::MachineBuilder;
use futures_lite::future::block_on;
use std::cell::RefCell;
fn flatten_captured_out(output: &[CapturedOut]) -> String {
output.iter().fold(String::new(), |result, o| match o {
CapturedOut::Print(text) => result + &text + "\n",
_ => panic!("Unexpected element in output"),
})
}
fn do_error_test(input: &str, expected_err: &str) {
let console = Rc::from(RefCell::from(MockConsoleBuilder::new().build()));
let mut machine = MachineBuilder::default()
.add_builtin(Rc::from(HelpCommand { console: console.clone() }))
.add_builtin(Rc::from(DoNothingCommand {}))
.build();
assert_eq!(
expected_err,
format!(
"{}",
block_on(machine.exec(&mut input.as_bytes())).expect_err("Execution did not fail")
)
);
assert!(console.borrow().captured_out().is_empty());
}
#[test]
fn test_help_summary() {
let console = Rc::from(RefCell::from(MockConsoleBuilder::new().build()));
let mut machine = MachineBuilder::default()
.add_builtin(Rc::from(HelpCommand { console: console.clone() }))
.add_builtin(Rc::from(DoNothingCommand {}))
.build();
block_on(machine.exec(&mut b"HELP".as_ref())).unwrap();
let text = flatten_captured_out(console.borrow().captured_out());
assert_eq!(
"
DO_NOTHING This is the blurb.
HELP Prints interactive help.
Type HELP followed by a command name for details on that command.
Type HELP LANG for a quick reference guide about the language.
",
text
);
}
#[test]
fn test_help_describe() {
let console = Rc::from(RefCell::from(MockConsoleBuilder::new().build()));
let mut machine = MachineBuilder::default()
.add_builtin(Rc::from(HelpCommand { console: console.clone() }))
.add_builtin(Rc::from(DoNothingCommand {}))
.build();
block_on(machine.exec(&mut b"help Do_Nothing".as_ref())).unwrap();
let text = flatten_captured_out(console.borrow().captured_out());
assert_eq!(
"
DO_NOTHING this [would] <be|the> syntax \"specification\"
This is the blurb.
First paragraph of the extended description.
Second paragraph of the extended description.
",
&text
);
}
#[test]
fn test_help_lang() {
let console = Rc::from(RefCell::from(MockConsoleBuilder::new().build()));
let mut machine = MachineBuilder::default()
.add_builtin(Rc::from(HelpCommand { console: console.clone() }))
.add_builtin(Rc::from(DoNothingCommand {}))
.build();
block_on(machine.exec(&mut b"help lang".as_ref())).unwrap();
let text = flatten_captured_out(console.borrow().captured_out());
assert_eq!(String::from(LANG_REFERENCE) + "\n", text);
}
#[test]
fn test_help_errors() {
do_error_test("HELP foo bar", "Unexpected value in expression");
do_error_test("HELP foo, bar", "HELP takes zero or only one argument");
do_error_test("HELP foo$", "Command name cannot have a type annotation");
do_error_test("HELP lang%", "Command name cannot have a type annotation");
do_error_test("HELP foo", "Cannot describe unknown builtin FOO");
}
}