aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/commands/command.c
blob: df33a24f3b7518653212a877a0e4ff2c9c874b4e (plain) (blame)
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
#include "../graphics/graphics.h"
#include "../lib/lib.h"
#include "../io/io.h"
#include "../acpi/acpi.h"

int32_t starts_with(const char *a, const char *b) {
    size_t length_pre = strlen(b);
    size_t length_main = strlen(a);
    return length_main < length_pre ? 0 : memory_compare(b, a, length_pre) == 0;
}

void exec_command(char *command) {
    if (starts_with(command, "ls"))
        terminal_write_line("Listing files");
    else if (starts_with(command, "help"))
        terminal_write_line("I can't help you write now");
    else if (starts_with(command, "ping"))
        terminal_write_line("pong!");
    else if (starts_with(command, "clear"))
        terminal_clear();
    else if (starts_with(command, "shutdown"))
        acpi_poweroff();
    else if (starts_with(command, "zzz"))
        terminal_write_line("Not implemented");
    else if (starts_with(command, "reboot"))
        reboot();
    else
        terminal_write_line("Command not found!");
}