123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /* SPDX-License-Identifier: BSD-3-Clause */
- /*
- * Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
- */
- /* Here's the POSIX specification of sh: */
- /* https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html */
- /* Define feature test macro. It doesn't compile with gcc without that for
- * some reason.
- */
- #define _POSIX_C_SOURCE 200809L
- /* POSIX Header files */
- #include <stdio.h>
- #include <unistd.h>
- #include <string.h>
- #include <stdlib.h>
- #include <fcntl.h>
- #include <errno.h>
- #include <stdint.h>
- #include <sys/wait.h>
- #include <spawn.h>
- #include <libgen.h>
- #include <signal.h>
- /* Our own header files */
- #include "parser.h"
- #include "version.h"
- #ifndef COMPILETIME
- #define COMPILETIME
- #endif
- void commandLoop();
- int getopt(int argc, char *const argv[], const char *optstring);
- char *pathSearch(const char *path, const char *name);
- void printUsage();
- int main(int argc, char *const argv[]) {
- int argument;
- FILE *file;
- struct sigaction signal_action;
- signal_action.sa_handler = SIG_IGN;
- sigemptyset(&signal_action.sa_mask);
- while ((argument = getopt(argc, argv, "c")) != -1) {
- if (argument == '?') {
- printUsage();
- return 1;
- }
- }
- argc -= optind;
- argv += optind;
- sigaction(SIGINT, &signal_action, NULL);
- if (errno) return errno;
- if (argv[0]) {
- file = fopen(argv[0], "r");
- if (errno) return errno;
- commandLoop(file);
- }
- else commandLoop(stdin);
- return 0;
- }
- /* This function is the actual command prompt.
- * It basically enters in a for(;;) loop where it reads the user's input.
- * When the input is NULL, it exits.
- */
- void commandLoop(FILE *filstr) {
- char *prompt = getenv("PS1");
- char *token, *tokenstate;
- char *command[4096];
- char name[4096], tempstr[4096];
- int command_argc;
- if (prompt == NULL) prompt = "$ ";
- for (;;) {
- for (int i = 0; i <= 4096; i++) {
- name[i] = 0; /* (Re)Initialise name and command,
- * very important. */
- command[i] = 0;
- }
- setvbuf(stdout, NULL, _IONBF, 0);
- if (filstr == stdin && isatty(STDIN_FILENO)) printf(prompt);
- if (fgets(name, 4096, filstr) == NULL)
- break;
- //read(fildes, name, 4096);
- if (!strcmp(name, "\n"))
- continue;
- else if (*name == 0 || *name == EOF) {
- putchar('\n');
- break;
- }
- name[strlen(name) - 1] = 0;
- strcpy(tempstr, name); /* We don't want to override `name`. */
- if (strtok(tempstr, ";") != NULL && strtok(NULL, ";") != NULL) {
- /* Hacky wacky hack. */
- strcpy(tempstr, name);
- token = strtok_r(tempstr, ";", &tokenstate);
- for (; token != NULL;) {
- command_argc = splitCommand(token, command); /* See parser.c */
- parseCommand(command_argc, command); /* See parser.c */
- token = strtok_r(NULL, ";", &tokenstate);
- }
- }
- else {
- command_argc = splitCommand(name, command); /* See parser.c */
- parseCommand(command_argc, command); /* See parser.c */
- }
- }
- }
- void printUsage() {
- printf("Ferass' Base System. (%s)\n\n"
- "Usage: sh [-c command_string]\n\n"
- "The standard command language interpreter.\n\n"
- "\t-c command_string\tExecute command_string and exit.\n", COMPILETIME);
- }
|