/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* init.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: lperrey +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/10/08 09:22:12 by lperrey #+# #+# */ /* Updated: 2021/11/25 18:57:59 by hulamy ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" static char *init_prompt_base(void); static char *init_prompt(char *prompt_base); //int init(t_all *c, char *envp[]) int init(t_all *c, char **environ) { (void)environ; g_all = c; ft_bzero(c, sizeof (*c)); // c->envp = ft_dup_2d_arr(envp, (t_dup_f)ft_strdup); // TEST WIP // if (!c->envp) // return (ft_reti_perror(0, "ft_dup_2d_char_arr(envp) error")); //print_matrix(c->envp, "\n --- \n"); // TEST WIP //c->path = retrieve_path(c->envp); // No return check. Its intended. PATH is optional c->path = retrieve_path(environ); // No return check. Its intended. PATH is optional c->prompt_base = init_prompt_base(); if (!c->prompt_base) return (ft_reti_perror(0, "init_prompt_base() error")); c->prompt = init_prompt(c->prompt_base); if (!c->prompt) return (ft_reti_perror(0, "init_prompt() error")); set_signals_handling(&c->signal_behaviour); return (1); } // TODO : Un appel à builtin_export() modifiant $PATH doit aussi entrainer un appel à "c->path = retrieve_path()" char **retrieve_path(char *envp[]) { char *path; char **path_split; (void)envp; //path = search_env_var(envp, "PATH"); // A reprendre du projet pipex si besoin de remplacer getenv() path = getenv("PATH"); if (!path) return (ft_retp_print(NULL, "minishell: Warning, $PATH not set\n", 2)); path_split = ft_split(path, ':'); if (!path_split) return (ft_retp_perror(NULL, "retrieve_path()")); return (path_split); } static char *init_prompt_base(void) // WIP, error return TODO { char *prompt_base; char *tmp; tmp = getenv("USER"); if (!tmp) tmp = getenv("LOGNAME"); if (!tmp) tmp = U_DEFAULT_USER; prompt_base = ft_strjoin(TERM_LIGHT_GREEN, tmp); prompt_base = ft_strjoinfree_s1(prompt_base, "@"); tmp = getenv("NAME"); if (!tmp) tmp = U_DEFAULT_NAME; prompt_base = ft_strjoinfree_s1(prompt_base, tmp); prompt_base = ft_strjoinfree_s1(prompt_base, TERM_RESET":"TERM_LIGHT_BLUE); return (prompt_base); } static char *init_prompt(char *prompt_base) // WIP, error return TODO { char *prompt; prompt = ft_strjoinfree_s2(prompt_base, getcwd(NULL, 0)); prompt = ft_strjoinfree_s1(prompt, TERM_RESET U_PROMPT_END); return (prompt); }