summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 408a69b994ec6b69ae3db7b2024554fbb37d429b (plain)
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
use crossterm::{cursor, execute, terminal};
use eyre::{Result, bail};
use regex::Regex;
use rustyline::DefaultEditor;
use rustyline::error::ReadlineError;
use std::collections::{LinkedList, VecDeque};
use std::io;
use std::io::Write;
use std::path::{Component, Path, PathBuf};
use std::sync::mpsc::{Receiver, SyncSender, sync_channel};
use std::thread::spawn;

const STDOUT_BUFFER_SIZE: usize = 1024;
const STDERR_BUFFER_SIZE: usize = 1024;

fn main() -> Result<()> {
    color_eyre::install()?;

    let mut line_editor = DefaultEditor::new()?;
    let mut prompt_spec = "$p$g";

    loop {
        let cwd = std::env::current_dir()?;
        let full_cwd = format_path(&cwd);
        let mut interpolated_prompt = prompt_spec.replace("$p", &full_cwd).replace("$g", ">");
        interpolated_prompt.push_str(" ");

        let line = match line_editor.readline(&interpolated_prompt) {
            Ok(line) => line,
            Err(ReadlineError::Eof) => break,
            Err(err) => return Err(err.into()),
        };

        let Ok(command) = Command::parse(&line) else {
            eprintln!("unrecognized command: {}", line);
            continue;
        };

        line_editor.add_history_entry(&line)?;
        let Ok(CommandReceivers {
            stdout,
            stderr,
            exit_status,
        }) = command.run()
        else {
            eprintln!("unimplemented command: {}", line);
            continue;
        };

        // print stdout, stderr interleaved until exit_status produces something
        let stdout_writer = spawn(move || {
            loop {
                let Ok(bytes) = stdout.recv() else {
                    break;
                };
                let mut out = io::stderr();
                out.write_all(bytes.as_slice())
                    .expect("stdout write failed");
                out.flush().expect("stdout flush failed");
            }
        });

        let stderr_writer = spawn(move || {
            loop {
                let Ok(bytes) = stderr.recv() else {
                    break;
                };
                let mut out = io::stderr();
                out.write_all(bytes.as_slice())
                    .expect("stderr write failed");
                out.flush().expect("stdout flush failed");
            }
        });

        stdout_writer.join().expect("stdout writer thread failed");
        stderr_writer.join().expect("stderr writer thread failed");

        let _exit_status = exit_status
            .recv()
            .expect("failed to receive exit status from command");
    }

    Ok(())
}

/// Turns "/home/mulk/foo/longfilenames/excellent.text" into "C:\\HOME\\MULK\\FOO\\LONGFILE~1\\EXCELL~1.TEX"
fn format_path(p: &Path) -> String {
    use std::path::Component::*;

    let mut prefix: Option<String> = None;
    let mut components = Vec::new();

    for component in p.components() {
        match component {
            Normal(c) => {
                let s = c.to_string_lossy().to_uppercase();
                let s_parts: Vec<&str> = s.splitn(2, '.').collect();

                let mut name: String;
                let mut ext: Option<String>;
                if s_parts.len() == 1 {
                    name = s.clone();
                    ext = None;
                } else {
                    name = s_parts[0].into();
                    ext = Some(s_parts[1].into());
                }

                let mut result = String::new();

                if name.len() > 8 || ext.as_ref().map_or(false, |e| e.len() > 3) {
                    name = name.chars().take(6).collect::<String>();
                    name.push_str("~1");
                }
                result.push_str(&name.to_uppercase());

                if let Some(mut e) = ext {
                    if e.len() > 3 {
                        e = e.chars().take(3).collect::<String>();
                    }
                    result.push_str(".");
                    result.push_str(&e.to_uppercase());
                }

                components.push(result);
            }

            Prefix(c) => prefix = Some(component.as_os_str().to_string_lossy().to_uppercase()),

            RootDir => {
                if prefix.is_none() {
                    prefix = Some("C:".into())
                }
                components.push("".into());
            }

            CurDir => components.push(".".into()),

            ParentDir => components.push("..".into()),
        }
    }

    let mut result = String::new();
    if let Some(p) = prefix {
        result.push_str(&p)
    };
    result.push_str(&components.join("\\"));
    result
}

#[derive(Debug)]
enum FileSpec {
    Con,
    Lpt1,
    Lpt2,
    Lpt3,
    Prn,
    Path(PathBuf),
}

#[derive(Debug)]
enum Command {
    Pipe {
        left: Box<Command>,
        right: Box<Command>,
    },
    Redirect {
        command: Box<Command>,
        target: FileSpec,
    },
    External {
        program: String,
        args: Vec<String>,
    },
    Builtin(BuiltinCommand),
    Empty,
}

struct CommandReceivers {
    stdout: Receiver<Vec<u8>>,
    stderr: Receiver<Vec<u8>>,
    exit_status: Receiver<u16>,
}

struct CommandSenders {
    stdout: SyncSender<Vec<u8>>,
    stderr: SyncSender<Vec<u8>>,
    exit_status: SyncSender<u16>,
}

struct CommandContext {
    senders: CommandSenders,
    receivers: CommandReceivers,
}

impl CommandContext {
    fn new() -> Self {
        let (sout, rout) = sync_channel(STDOUT_BUFFER_SIZE);
        let (serr, rerr) = sync_channel(STDERR_BUFFER_SIZE);
        let (sexit, rexit) = sync_channel(1);

        Self {
            senders: CommandSenders {
                stdout: sout,
                stderr: serr,
                exit_status: sexit,
            },
            receivers: CommandReceivers {
                stdout: rout,
                stderr: rerr,
                exit_status: rexit,
            },
        }
    }

    fn split(self) -> (CommandSenders, CommandReceivers) {
        (self.senders, self.receivers)
    }
}

impl Command {
    pub(crate) fn run(&self) -> Result<CommandReceivers> {
        use crate::BuiltinCommand::*;
        use crate::Command::*;

        let (senders, receivers) = CommandContext::new().split();
        let CommandSenders {
            stdout,
            stderr,
            exit_status,
        } = senders;

        match self {
            Empty => {
                exit_status.send(0)?;
            }

            Builtin(EchoText { message }) => {
                stdout.send(message.bytes().collect())?;
                stdout.send(b"\n".into())?;
                exit_status.send(0)?;
            }

            Builtin(Cls) => {
                let mut stdout_handle = io::stdout();
                execute!(stdout_handle, terminal::Clear(terminal::ClearType::All))?;
                execute!(stdout_handle, cursor::MoveTo(0, 0))?;
                exit_status.send(0)?;
            }

            _ => bail!("Command::run not implemented for {:?}", self),
        }

        Ok(receivers)
    }
}

#[derive(Debug)]
enum BuiltinCommand {
    // File-oriented
    Copy {
        from: FileSpec,
        to: FileSpec,
    },
    Deltree {
        path: PathBuf,
    },
    Dir {
        path: PathBuf,
    },
    Fc,
    Find,
    Mkdir {
        path: PathBuf,
    },
    Move,
    Remove {
        path: PathBuf,
    },
    Rename {
        from: FileSpec,
        to: FileSpec,
    },
    Replace,
    Rmdir {
        path: PathBuf,
    },
    Sort,
    Tree {
        path: PathBuf,
    },
    Type {
        file: FileSpec,
    },
    Xcopy {
        from: FileSpec,
        to: FileSpec,
        recursive: bool,
    },

    // Shell-oriented
    Append,
    Chdir {
        path: PathBuf,
    },
    EchoOff,
    EchoOn,
    EchoPlain,
    EchoText {
        message: String,
    },
    Exit,
    PathGet,
    PathSet {
        value: String,
    },
    PromptGet,
    PromptSet {
        message: String,
    },
    Set {
        name: String,
        value: String,
    },
    Setver,
    Ver,

    // Utilities
    Date,
    Time,

    // Screen-oriented
    Cls,
    More,

    // Dummies
    Verify,
    Fastopen,
    Smartdrv,
    Sizer,

    // For later
    Assign,
    Attrib,
    Chkdsk,
    Doskey,
    Dosshell,
    Edit,
    Fasthelp,
    Help,
    Join,
    Mem,
    Power,
    Subst,
    Truename,

    // For much later, if ever
    Break,
    Chcp,
    Ctty,
    Defrag,
    Diskcopy,
    Emm386,
    Fdisk,
    Format,
    Interlnk,
    Keyb,
    Label,
    Mode,
    Msav,
    Msbackup,
    Mscdex,
    Msd,
    Print,
    Qbasic,
    Restore,
    Scandisk,
    Share,
    Sys,
    Undelete,
    Unformat,
    Vol,
    Vsafe,

    // Scripting
    Call,
    Choice,
    Echo,
    For,
    Goto,
    If,
    Pause,
    Prompt,
    Rem {
        message: String,
    },
    Shift,
}

impl Command {
    fn parse(input: &str) -> Result<Command> {
        use BuiltinCommand::*;
        use Command::*;

        let whitespace = Regex::new(r"\s+")?;
        let mut split_input = whitespace.splitn(input, 2);
        let Some(name) = split_input.next() else {
            return Ok(Empty);
        };
        let args = split_input.next().unwrap_or("");

        match name.to_uppercase().as_str() {
            "" => Ok(Empty),

            "ECHO" => Ok(Builtin(match args.to_uppercase().as_str() {
                "ON" => EchoOn,
                "OFF" => EchoOff,
                "" => EchoPlain,
                _ => EchoText {
                    message: args.to_string(),
                },
            })),

            "CLS" => Ok(Builtin(Cls)),

            _ => Err(eyre::eyre!("parse not implemented for {:?}", input)),
        }
    }
}