Rewrote command parcing function without strtok for future pipes and command secuences support

This commit is contained in:
Dmitriy Shishkov 2020-07-13 22:02:39 +05:00
parent 265ade348a
commit 05a074795f
4 changed files with 92 additions and 10 deletions

View File

@ -22,4 +22,4 @@ Work is still in porgress, buf when you will see a "finished" topic assigned to
* Replace linux `echo` command with builtin one with support of environmental variables * Replace linux `echo` command with builtin one with support of environmental variables
* Environmental variables * Environmental variables
* `Ctrl+Z` running programm with `fd` * `Ctrl+Z` running programm with `fd`
* Getting commands path from system `PATH` environment variable * ~~Getting commands path from system `PATH` environment variable~~

View File

@ -10,6 +10,7 @@
#include <unistd.h> #include <unistd.h>
#include <termios.h> #include <termios.h>
#include <ifaddrs.h> #include <ifaddrs.h>
#include <stdbool.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/wait.h> #include <sys/wait.h>
@ -40,11 +41,24 @@ struct history
struct hist_sub sub; struct hist_sub sub;
}; };
struct command
{
char *line;
char **args;
bool pipes;
};
struct status {
int s;
bool invert;
};
typedef struct typedef struct
{ {
int last_status;
struct history hist; struct history hist;
char **envs; char **envs;
struct command com;
struct status status;
} t_; } t_;
//Globals defenition //Globals defenition

View File

@ -48,6 +48,11 @@ t_ init_term()
term.hist.sub.pos = -1; term.hist.sub.pos = -1;
term.hist.sub.content = (char **)malloc(sizeof(char *) * 0); term.hist.sub.content = (char **)malloc(sizeof(char *) * 0);
term.status.s = 0;
term.status.invert = 0;
term.com.line = NULL;
signal(SIGINT, SIG_IGN); signal(SIGINT, SIG_IGN);
atexit(exit_shell); atexit(exit_shell);

View File

@ -25,9 +25,36 @@ void process_command()
print_str(prompt, strlen(prompt)); print_str(prompt, strlen(prompt));
char *line = read_line(); char *line = read_line();
line = trim_string(&line);
if (line[strlen(line) - 1] == ' ')
remove_on_pos(&line, strlen(line));
term.com.line = line;
process_line(line, &args); process_line(line, &args);
if (args[0] != NULL)
if (strcmp(args[0], "!") == 0)
{
term.status.invert = true;
args = slice_array(args, 1, -1, true);
}
int status = execute(args); int status = execute(args);
if (term.status.invert)
{
if (status == 0)
term.status.s = 1;
else
term.status.s = 0;
term.status.invert = false;
}
else
term.status.s = status;
free(line); free(line);
free(prompt); free(prompt);
free_str_arr(args); free_str_arr(args);
@ -43,12 +70,27 @@ int process_line(char *line, char ***args)
{ {
int buff_size = ARG_SIZE, pos = 0; int buff_size = ARG_SIZE, pos = 0;
*args = malloc(buff_size * sizeof(char *)); *args = malloc(buff_size * sizeof(char *));
char *tok = NULL, *rest = strdup(line), *free_rest = rest;
while ((tok = strtok_r(rest, " ", &rest)) != NULL) for (int i = 0; i < buff_size; i++)
{ {
(*args)[pos] = strdup(tok); (*args)[i] = NULL;
pos++; }
char *tmp = strdup(line), *free_tmp = tmp;
for (int i = 0; i < strlen(line); i++)
{
if (line[i] == ' ')
{
tmp[i] = '\0';
(*args)[pos] = strdup(tmp);
tmp += strlen((*args)[pos]) + 1;
pos++;
}
else if (line[i] == '#')
{
break;
}
if (pos > buff_size) if (pos > buff_size)
{ {
@ -56,13 +98,25 @@ int process_line(char *line, char ***args)
*args = realloc(*args, buff_size * sizeof(char *)); *args = realloc(*args, buff_size * sizeof(char *));
if (*args == NULL) if (*args == NULL)
{ {
fprintf(stderr, "myshell: allocation error"); fprintf(stderr, "myshell: memory allocation error");
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
} }
} }
free(free_rest); if (tmp[0] != '\0' && tmp[0] != '#')
{
(*args)[pos] = strdup(tmp);
pos++;
}
if ((*args)[0] == NULL && line[0] != '#' && line[0] != '\0')
{
(*args)[0] = strdup(line);
pos++;
}
free(free_tmp);
(*args)[pos] = NULL; (*args)[pos] = NULL;
return pos; return pos;
@ -199,7 +253,7 @@ char *get_ip_addr()
char *compose_prompt() char *compose_prompt()
{ {
// New line // New line
char *prompt = strdup("\n"); char *prompt = strdup("");
// Username // Username
char *username = getenv("USER"); char *username = getenv("USER");
@ -226,9 +280,18 @@ char *compose_prompt()
prompt = strcat(prompt, "\033[92;1m"); prompt = strcat(prompt, "\033[92;1m");
prompt = strcat(prompt, full_path); prompt = strcat(prompt, full_path);
prompt = strcat(prompt, "\033[39;0m"); prompt = strcat(prompt, "\033[39;0m");
free(full_path); free(full_path);
// Previous status
if (term.status.s != 0)
{
char *status = malloc(snprintf(NULL, 0, " \033[91m%d\033[39m", term.status.s));
sprintf(status, " \033[91m%d\033[39m", term.status.s);
prompt = realloc(prompt, strlen(prompt) + strlen(status) + 1);
prompt = strcat(prompt, status);
free(status);
}
// Permissions specific character before user input // Permissions specific character before user input
prompt = realloc(prompt, strlen(prompt) + 4); prompt = realloc(prompt, strlen(prompt) + 4);
if (getuid() == 0) if (getuid() == 0)