42_minishell/outfile.c

113 lines
2.6 KiB
C
Raw Permalink Normal View History

2023-02-15 14:52:27 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* outfile.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/15 18:01:07 by cchauvet #+# #+# */
2023-02-17 07:21:50 -05:00
/* Updated: 2023/02/17 13:19:46 by cchauvet ### ########.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
static int ft_outfile_is_valid(const char *line)
2023-02-02 11:27:26 -05:00
{
2023-02-15 14:52:27 -05:00
char **tab;
2023-02-02 11:27:26 -05:00
size_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);
2023-02-02 11:27:26 -05:00
i = 0;
2023-02-15 14:52:27 -05:00
while (tab[i + 1] != NULL)
i++;
if (tab[i][0] == '>')
2023-02-02 11:27:26 -05:00
{
2023-02-15 14:52:27 -05:00
ft_eprintf("minishell: %s: must be followed by an infile\n", tab[i]);
2023-02-17 07:21:50 -05:00
ft_freer_tab_ultimate(1, tab);
2023-02-15 14:52:27 -05:00
return (0);
}
ft_freer_tab_ultimate(1, tab);
return (1);
}
static int ft_get_outfile(const char *line)
{
size_t i;
int fd;
char **tab;
tab = ft_split_quoted(line, ' ');
if (tab == NULL)
{
ft_eprintf("minishell: malloc failed\n");
return (-2);
}
fd = 1;
2023-02-15 14:52:27 -05:00
i = 0;
while (tab[i + 1] != NULL)
{
if (tab[i][0] == '>')
if (fd != 1)
close(fd);
2023-02-15 14:52:27 -05:00
if (ft_strcmp(">", tab[i]) == 0)
fd = ft_file_is_writable(ft_quote_remover(tab[i + 1]));
else if (ft_strcmp(">>", tab[i]) == 0)
fd = ft_file_is_appendable(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);
return (fd);
2023-02-02 11:27:26 -05:00
}
static int ft_remove_outfile(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-02 11:27:26 -05:00
{
2023-02-15 14:52:27 -05:00
ft_strshift(line + y, -1 * (ft_strlen(tab[i]) + 1));
i++;
ft_strshift(line + y, -1 * (ft_strlen(tab[i]) + 1));
2023-02-02 11:27:26 -05:00
}
2023-02-15 14:52:27 -05:00
else
y = y + ft_strlen(tab[i]);
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);
}
int ft_outfile(char *line)
{
int fd;
2023-02-15 14:52:27 -05:00
if (ft_outfile_is_valid(line) == 0)
return (-2);
2023-02-02 11:27:26 -05:00
fd = ft_get_outfile(line);
2023-02-15 14:52:27 -05:00
if (fd == -2)
return (-2);
ft_remove_outfile(line);
2023-02-02 11:27:26 -05:00
return (fd);
}