/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* infile.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cchauvet ') { path = ft_env_filler(data, tab[i + 1]); if (path == NULL) return (0); ft_quote_remover(path); if (ft_file_is_writable(path) == 0) { data->exit_code = 1; free(path); ft_freer_tab_ultimate(1, tab); return (0); } if (ft_contain_only_str(path, "| >>")) { free(path); ft_eprintf("minishell: %s: must be followed by an outfile\n", path); ft_freer_tab_ultimate(1, tab); return (0); } free(path); } } ft_freer_tab_ultimate(1, tab); return (1); } static int ft_get_outfile(t_data *data, const char *line) { size_t i; int fd; char **tab; char *path; tab = ft_split_quoted(line, ' '); if (tab == NULL) { ft_eprintf("minishell: malloc failed\n"); return (-2); } fd = -1; i = 0; while (tab[i + 1] != NULL) { if (tab[i][0] == '>') if (fd != 0) close(fd); path = ft_env_filler(data, tab[i + 1]); if (path == NULL) return (-2); ft_quote_remover(path); if (ft_strcmp(">", tab[i]) == 0) fd = open(path, O_TRUNC | O_CREAT | O_WRONLY, 0644); else if (ft_strcmp(">>", tab[i]) == 0) fd = open(path, O_CREAT | O_APPEND, 0644); free(path); i++; } ft_freer_tab_ultimate(1, tab); return (fd); } static int ft_remove_outfile(char *line) { size_t i; size_t y; char **tab; tab = ft_split_quoted(line, ' '); if (tab == NULL) { ft_eprintf("minishell: malloc failed\n"); return (1); } i = 0; y = 0; while (tab[i] != NULL) { if (tab[i][0] == '>') { ft_strshift(line + y, (-1) * (ft_strlen(tab[i]) + ft_strlen(tab[i + 1]) + 1 + (line[ft_strlen(tab[i]) + ft_strlen(tab[i + 1]) + 1] != '\0'))); i++; } else y = y + ft_strlen(tab[i]) + (y != 0); i++; } ft_freer_tab_ultimate(1, tab); return (0); } int ft_outfile(t_data *data, char *line) { int fd; if (ft_outfile_is_valid(data, line) == 0) return (-2); fd = ft_get_outfile(data, line); if (fd == -2) return (-2); ft_remove_outfile(line); return (fd); }