summaryrefslogtreecommitdiff
path: root/src/init/shell.c
blob: d61f46f12d1ae30643bc358f7add10c15fd7304e (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
#include <init/shell.h>
#include <init/stdlib.h>
#include <shared/syscalls.h>

#define PROMPT "$ "

static int tty_fd = 0; // TODO put in stdlib

static int readline(char *buf, size_t max) {
	char c;
	size_t pos = 0;
	while (_syscall_read(tty_fd, &c, 1, 0)) {
		switch (c) {
			case '\b':
			case 0x7f:
				/* for some reason backspace outputs 0x7f (DEL) */
				if (pos != 0) {
					printf("\b \b");
					pos--;
				}
				break;
			case '\r':
				printf("\n");
				buf[pos++] = '\0';
				return pos;
			default:
				if (pos < max) {
					_syscall_write(tty_fd, &c, 1, 0);
					buf[pos] = c;
					pos++;
				}
		}
	}
	return -1; // error
}

void shell_loop(void) {
	static char cmd[256];
	for (;;) {
		printf(PROMPT);
		readline(cmd, 256);
		printf("  %s\n", cmd);
	}
}