From fcd73c9187cfd8960f15f2ee183f80f25bd5dd3a Mon Sep 17 00:00:00 2001 From: Dm1tr1y147 Date: Wed, 15 Jul 2020 20:26:00 +0500 Subject: [PATCH] Added wildcard explanation for builtin commands --- include/shell.h | 1 + src/input.c | 7 +++++ src/shell.c | 73 ++++++++++++++++++++++++++++++++----------------- src/utils.c | 13 +++++++++ 4 files changed, 69 insertions(+), 25 deletions(-) diff --git a/include/shell.h b/include/shell.h index 913c970..3e0fa8a 100644 --- a/include/shell.h +++ b/include/shell.h @@ -87,6 +87,7 @@ int sh_exec(char **args); char *compose_prompt(); cmds_p *new_cmd(); +int expand_wildcatrd(char ***arr, char *input); #define BUILTIN_NUM sizeof(builtin) / sizeof(char *) diff --git a/src/input.c b/src/input.c index 68dd16b..e80bc94 100644 --- a/src/input.c +++ b/src/input.c @@ -185,6 +185,13 @@ int process_keypress(char c) } } +/** + * @brief Frees user input display + * + * @param pos + * @param n + * @param line + */ void free_input(int *pos, int *n, char **line) { char *buff = strdup(""); diff --git a/src/shell.c b/src/shell.c index 92656ae..f321687 100644 --- a/src/shell.c +++ b/src/shell.c @@ -172,9 +172,14 @@ int process_line(char *line, cmds_p **coms) { free_tmp[i] = '\0'; - append_to_str_arr(&(curr_cmd->args), &args_am, trim_string(tmp, false)); + char *ap_string = trim_string(tmp, false), **exp = malloc(0); - tmp += strlen(curr_cmd->args[args_am - 1]) + 1; + int sz = expand_wildcatrd(&exp, ap_string); + + for (int l = 0; l < sz; l++) + append_to_str_arr(&(curr_cmd->args), &args_am, exp[l]); + + tmp += strlen(ap_string) + 1; } else if (line[i] == '#') { @@ -184,7 +189,17 @@ int process_line(char *line, cmds_p **coms) if (tmp[0] != '\0' && tmp[0] != '#') { - append_to_str_arr(&(curr_cmd->args), &args_am, trim_string(tmp, false)); + if (tmp[strlen(tmp) - 1] != '"') + { + char *ap_string = trim_string(tmp, false), **exp = malloc(0); + + int sz = expand_wildcatrd(&exp, ap_string); + + for (int l = 0; l < sz; l++) + append_to_str_arr(&(curr_cmd->args), &args_am, exp[l]); + } + else + append_to_str_arr(&(curr_cmd->args), &args_am, trim_string(tmp, false)); } if (curr_cmd->args[0] != NULL) @@ -215,7 +230,7 @@ int execute(cmds_p *command) char **args = command->args; - if (strcmp(command->args[0], "!") == 0) + if (strcmp(args[0], "!") == 0) args = slice_array(args, 1, -1, true); for (int i = 0; i < BUILTIN_NUM; i++) @@ -297,27 +312,7 @@ int sh_exec(char **args) if (strcmp(args[0], "exec") == 0) args = slice_array(args, 1, -1, 1); - int amount = get_null_term_arr_size(args) - 1, k = 0; - char **ex_args = malloc(0); - - for (int i = 0; i < amount; i++) - { - if (strchr(args[i], '*') || strchr(args[i], '~')) - { - glob_t globbuf; - glob(args[i], GLOB_DOOFFS, NULL, &globbuf); - - for (int j = 0; j < globbuf.gl_pathc; j++) - append_to_str_arr(&ex_args, &k, globbuf.gl_pathv[j]); - } - else - append_to_str_arr(&ex_args, &k, args[i]); - } - - ex_args = realloc(ex_args, sizeof(char *) * ++k); - ex_args[k - 1] = NULL; - - if (execvp(ex_args[0], ex_args) < 0) + if (execvp(args[0], args) < 0) { perror("myshell3"); } @@ -325,6 +320,11 @@ int sh_exec(char **args) exit(EXIT_FAILURE); } +/** + * @brief Get IP adress of system + * + * @return char* + */ char *get_ip_addr() { struct ifaddrs *host, *tmp; @@ -409,6 +409,11 @@ char *compose_prompt() return prompt; } +/** + * @brief Initialize command structure + * + * @return cmds_p* + */ cmds_p *new_cmd() { cmds_p *new = malloc(sizeof(cmds_p)); @@ -419,4 +424,22 @@ cmds_p *new_cmd() new->next = NULL; return new; +} + +int expand_wildcatrd(char ***arr, char *input) +{ + int size = 0; + + if (strchr(input, '*') || strchr(input, '~') || strchr(input, '?')) + { + glob_t globbuf; + int t = glob(input, GLOB_TILDE, NULL, &globbuf); + + for (int j = 0; j < globbuf.gl_pathc; j++) + append_to_str_arr(arr, &size, globbuf.gl_pathv[j]); + } + else + append_to_str_arr(arr, &size, input); + + return size; } \ No newline at end of file diff --git a/src/utils.c b/src/utils.c index dab4163..9f17eaa 100644 --- a/src/utils.c +++ b/src/utils.c @@ -153,6 +153,14 @@ int get_null_term_arr_size(char **arr) return ++k; } +/** + * @brief Append string to the end of array + * + * @param arr + * @param sz + * @param str + * @return int + */ int append_to_str_arr(char ***arr, int *sz, char *str) { (*sz)++; @@ -170,6 +178,11 @@ int append_to_str_arr(char ***arr, int *sz, char *str) return 0; } +/** + * @brief Get the current location + * + * @return char* + */ char *get_curr_dir_name() { char *pwd = malloc(FILENAME_MAX);