/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* b_unset.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include #include "f_fail.h" #include "s_lvars.h" #include "s_struct.h" #include "u_utils.h" static t_bool check_valid_identifier(const char arg[]) { char *ptr; t_bool r; ptr = (char*)arg; r = TRUE; if (ft_isalpha(ptr[0]) == FALSE) { r = FALSE; } if (ptr[0] == '_') { r = TRUE; } while (*ptr != '\0') { if (*ptr == '=') { r = FALSE; } ptr++; } return (r); } static void b_realloc_env(size_t skip, t_msh *msh) { char **nenvp; size_t i; i = 0; while (msh->envp[i] != NULL) i++; if ((nenvp = (char**)malloc(i * sizeof(char*))) == NULL) f_alloc_and_destroy_msh(msh); i = 0; while (msh->envp[i] != NULL) { if (i == skip) { i += 1; if (msh->envp[i] == NULL) break ; } if ((nenvp[i - (i > skip)] = ft_strdup(msh->envp[i])) == NULL) f_alloc_and_destroy_msh(msh); i++; } nenvp[i - 1] = NULL; ft_delwords(msh->envp); msh->envp = nenvp; } static t_bool b_removed_from_env(const char arg[], t_msh *msh) { char **env_dup; size_t i; env_dup = u_get_env_var_names(msh); i = 0; while (env_dup[i] != NULL) { if (ft_strncmp(arg, env_dup[i], ft_strlen(env_dup[i]) + 1) == 0) { b_realloc_env(i, msh); ft_delwords(env_dup); return (TRUE); } i++; } ft_delwords(env_dup); return (FALSE); } uint8_t b_unset(char *args[], t_msh *msh) { char **ptr; int8_t r; if (args[0] == NULL) return (0); r = 0; ptr = args; while (*ptr != NULL) { if (check_valid_identifier(*ptr) == FALSE) { f_fail_identifier("unset", *ptr); r = 1; ptr++; continue ; } if (b_removed_from_env(*ptr, msh) == FALSE) { lvars_delone(&msh->vars, *ptr); } ptr++; } return (r); }