/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* infile.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cchauvet exit_code = 1; return_code = -1; } } if (ft_contain_only_str(tab[i + 1], "| <>")) return_code = 0; } } if (return_code == 0) ft_eprintf("minishell: %s: must be followed by an infile\n", tab[i]); ft_freer_tab_ultimate(1, tab); return (return_code); } static int ft_get_infile(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); if (ft_strcmp("<", tab[i]) == 0) { path = ft_env_filler(data, tab[i + 1]); if (path == NULL) return (-2); ft_quote_remover(path); fd = open(path, O_RDONLY); free(path); } else if (ft_strcmp("<<", tab[i]) == 0) fd = ft_heredoc(data, ft_quote_remover(tab[i + 1])); i++; } ft_freer_tab_ultimate(1, tab); return (fd); } static int ft_remove_infile(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_infile(t_data *data, char *line) { int fd; if (ft_infile_is_valid(data, line) == 0) return (-2); fd = ft_get_infile(data, line); if (fd == -2) return (-2); ft_remove_infile(line); return (fd); }