mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
128 lines
4.0 KiB
C
128 lines
4.0 KiB
C
//----------------------------------------------------------------------------//
|
|
// GNU GPL OS/K //
|
|
// //
|
|
// Desc: Kernel shell //
|
|
// //
|
|
// //
|
|
// Copyright © 2018-2019 The OS/K Team //
|
|
// //
|
|
// This file is part of OS/K. //
|
|
// //
|
|
// OS/K is free software: you can redistribute it and/or modify //
|
|
// it under the terms of the GNU General Public License as published by //
|
|
// the Free Software Foundation, either version 3 of the License, or //
|
|
// any later version. //
|
|
// //
|
|
// OS/K is distributed in the hope that it will be useful, //
|
|
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
// GNU General Public License for more details. //
|
|
// //
|
|
// You should have received a copy of the GNU General Public License //
|
|
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
|
|
//----------------------------------------------------------------------------//
|
|
|
|
#include "shell.h"
|
|
|
|
void ExecuteCommand(char *cmdbuf)
|
|
{
|
|
error_t rc;
|
|
Command_t *cmd;
|
|
bool found = false;
|
|
|
|
memzero(*shargv, ARG_MAX);
|
|
rc = KalCmdLineToArgVec(cmdbuf, &shargc, shargv);
|
|
if (rc) KeStartPanic("Shell: Couldn't parse command line: %d", rc);
|
|
|
|
for (cmd = cmdtable; cmd->name != NULL; cmd++) {
|
|
if (!strcmp(cmd->name, shargv[0])) {
|
|
cmd->func(shargc, shargv);
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (found == false) {
|
|
KernLog("err: command not found: '%s'\n", shargv[0]);
|
|
}
|
|
}
|
|
|
|
void KeStartShell(void)
|
|
{
|
|
uchar ch;
|
|
error_t rc;
|
|
|
|
char cmdbuf[CMDBUFSIZE] = { 0 };
|
|
char *bufptr = cmdbuf;
|
|
|
|
argv0 = malloc(ARG_MAX);
|
|
shargv = &argv0;
|
|
|
|
KernLog("\nshell> ");
|
|
BFlushBuf(BStdOut);
|
|
|
|
while ((rc = bgetc(BStdIn, &ch)) == EOK || rc == EENDF) {
|
|
// Reset BStdIn's content
|
|
if (rc == EENDF) {
|
|
if (!(BStdIn->flags & BF_ERR)) {
|
|
*bufptr = 0;
|
|
bufptr = cmdbuf;
|
|
ExecuteCommand(cmdbuf);
|
|
|
|
memzero(cmdbuf, sizeof(cmdbuf));
|
|
BFlushBuf(BStdIn);
|
|
KernLog("shell> ");
|
|
BFlushBuf(BStdOut);
|
|
}
|
|
else break;
|
|
}
|
|
|
|
switch (ch) {
|
|
|
|
case KEY_BEL:
|
|
if (rand() % 64 == 0) {
|
|
IoDoStarWars();
|
|
}
|
|
else IoDoBeep();
|
|
break;
|
|
|
|
case KEY_DC1:
|
|
IoScrollUp();
|
|
break;
|
|
|
|
case KEY_DC2:
|
|
IoScrollDown();
|
|
break;
|
|
|
|
case KEY_ESC:
|
|
PoShutdownQemu();
|
|
break;
|
|
|
|
default:
|
|
*bufptr++ = (char)ch;
|
|
|
|
// End of buffer?
|
|
if (bufptr != cmdbuf+CMDBUFSIZE-1) {
|
|
break; // No
|
|
}
|
|
|
|
KernLog("\n");
|
|
// Else, fallthrough to case '\n'
|
|
|
|
case '\n':
|
|
*bufptr = 0;
|
|
bufptr = cmdbuf;
|
|
ExecuteCommand(cmdbuf);
|
|
|
|
memzero(cmdbuf, sizeof(cmdbuf));
|
|
KernLog("shell> ");
|
|
BFlushBuf(BStdIn);
|
|
BFlushBuf(BStdOut);
|
|
break;
|
|
}
|
|
|
|
KePauseCPU();
|
|
}
|
|
}
|
|
|