42_minishell/infile.c

141 lines
3.2 KiB
C
Raw Normal View History

2023-02-15 14:52:27 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* infile.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/15 17:52:10 by cchauvet #+# #+# */
2023-02-20 07:08:01 -05:00
/* Updated: 2023/02/20 13:05:43 by starnakin ### ########.fr */
2023-02-15 14:52:27 -05:00
/* */
/* ************************************************************************** */
#include "libftx/libftx.h"
2023-02-02 11:27:26 -05:00
#include "minishell.h"
2023-02-15 14:52:27 -05:00
#include "utils/utils.h"
#include <fcntl.h>
2023-02-15 14:52:27 -05:00
static int ft_infile_is_valid(t_data *data, const char *line)
2023-02-15 14:52:27 -05:00
{
char **tab;
char *path;
ssize_t i;
2023-02-15 14:52:27 -05:00
tab = ft_split_quoted(line, ' ');
if (tab == NULL)
{
ft_eprintf("minishell: malloc failed\n");
return (0);
}
2023-02-15 15:31:49 -05:00
if (tab[0] == NULL)
return (1);
i = -1;
while (tab[++i] != NULL)
2023-02-15 14:52:27 -05:00
{
2023-03-06 07:21:22 -05:00
if (tab[i][0] == '<')
{
path = ft_env_filler(data, tab[i + 1]);
if (path == NULL)
return (0);
ft_quote_remover(path);
if (ft_file_is_readable(path) == 0)
{
2023-03-06 10:43:50 -05:00
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 infile\n", path);
ft_freer_tab_ultimate(1, tab);
return (0);
}
free(path);
2023-03-06 07:21:22 -05:00
}
2023-02-15 14:52:27 -05:00
}
ft_freer_tab_ultimate(1, tab);
return (1);
}
2023-02-02 11:27:26 -05:00
static int ft_get_infile(t_data *data, const char *line)
2023-02-02 11:27:26 -05:00
{
size_t i;
2023-02-03 10:02:52 -05:00
int fd;
2023-02-15 14:52:27 -05:00
char **tab;
char *path;
2023-02-02 11:27:26 -05:00
2023-02-15 14:52:27 -05:00
tab = ft_split_quoted(line, ' ');
if (tab == NULL)
{
ft_eprintf("minishell: malloc failed\n");
return (-2);
}
2023-02-03 10:02:52 -05:00
fd = 0;
2023-02-02 11:27:26 -05:00
i = 0;
2023-02-15 14:52:27 -05:00
while (tab[i + 1] != NULL)
2023-02-02 11:27:26 -05:00
{
if (tab[i][0] == '<')
if (fd != 0)
close(fd);
2023-02-15 14:52:27 -05:00
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);
}
2023-02-15 14:52:27 -05:00
else if (ft_strcmp("<<", tab[i]) == 0)
fd = ft_heredoc(ft_quote_remover(tab[i + 1]));
2023-02-02 11:27:26 -05:00
i++;
}
2023-02-15 14:52:27 -05:00
ft_freer_tab_ultimate(1, tab);
2023-02-03 10:02:52 -05:00
return (fd);
2023-02-02 11:27:26 -05:00
}
static int ft_remove_infile(char *line)
{
size_t i;
2023-02-15 14:52:27 -05:00
size_t y;
char **tab;
2023-02-02 11:27:26 -05:00
2023-02-15 14:52:27 -05:00
tab = ft_split_quoted(line, ' ');
if (tab == NULL)
{
ft_eprintf("minishell: malloc failed\n");
return (1);
}
2023-02-02 11:27:26 -05:00
i = 0;
2023-02-15 14:52:27 -05:00
y = 0;
while (tab[i] != NULL)
2023-02-02 11:27:26 -05:00
{
2023-02-15 14:52:27 -05:00
if (tab[i][0] == '<')
{
2023-02-20 07:08:01 -05:00
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++;
}
2023-02-15 14:52:27 -05:00
else
2023-02-20 07:08:01 -05:00
y = y + ft_strlen(tab[i]) + (y != 0);
2023-02-02 11:27:26 -05:00
i++;
}
2023-02-15 14:52:27 -05:00
ft_freer_tab_ultimate(1, tab);
2023-02-02 11:27:26 -05:00
return (0);
}
2023-02-24 14:30:01 -05:00
int ft_infile(t_data *data, char *line)
2023-02-02 11:27:26 -05:00
{
int fd;
if (ft_infile_is_valid(data, line) == 0)
2023-02-15 14:52:27 -05:00
return (-2);
fd = ft_get_infile(data, line);
2023-02-15 14:52:27 -05:00
if (fd == -2)
return (-2);
ft_remove_infile(line);
2023-02-02 11:27:26 -05:00
return (fd);
}