2023-02-17 10:33:52 -05:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* heredoc.c :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2023/02/17 15:36:26 by cchauvet #+# #+# */
|
2023-03-31 12:49:12 -04:00
|
|
|
/* Updated: 2023/03/31 18:49:06 by alouis-j ### ########.fr */
|
2023-02-17 10:33:52 -05:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
2023-03-10 06:32:39 -05:00
|
|
|
#include "./redirection_private.h"
|
2023-02-03 10:02:52 -05:00
|
|
|
|
2023-03-28 09:55:08 -04:00
|
|
|
int *ft_get_heredoc(void)
|
2023-02-23 09:14:08 -05:00
|
|
|
{
|
2023-03-07 11:48:18 -05:00
|
|
|
static int heredoc = -1;
|
2023-02-23 09:14:08 -05:00
|
|
|
|
|
|
|
return (&heredoc);
|
|
|
|
}
|
|
|
|
|
2023-03-29 13:07:57 -04:00
|
|
|
static int ft_format_and_write(t_data *data, const char *str, int fd)
|
|
|
|
{
|
|
|
|
char *line_clean;
|
|
|
|
|
|
|
|
line_clean = ft_env_filler(data, str);
|
|
|
|
if (line_clean == NULL)
|
|
|
|
return (1);
|
|
|
|
ft_putendl_fd(line_clean, fd);
|
|
|
|
free(line_clean);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2023-03-31 09:23:10 -04:00
|
|
|
static int ft_heredoc2(t_data *data, char *stop, int fds[2])
|
2023-03-29 13:07:57 -04:00
|
|
|
{
|
2023-03-31 09:23:10 -04:00
|
|
|
char *line;
|
2023-03-31 09:25:26 -04:00
|
|
|
|
2023-03-31 09:23:10 -04:00
|
|
|
ft_printf("> ");
|
|
|
|
line = get_next_line(*ft_get_heredoc());
|
|
|
|
if (line == NULL)
|
2023-03-31 09:29:06 -04:00
|
|
|
{
|
|
|
|
ft_closer(fds);
|
2023-03-31 09:23:10 -04:00
|
|
|
return (1);
|
2023-03-31 09:29:06 -04:00
|
|
|
}
|
2023-03-29 13:07:57 -04:00
|
|
|
line[ft_strlen(line) - 1] = '\0';
|
|
|
|
if (ft_strcmp(line, stop) == 0)
|
|
|
|
{
|
|
|
|
free(line);
|
|
|
|
return (2);
|
|
|
|
}
|
|
|
|
if (ft_format_and_write(data, line, fds[1]))
|
|
|
|
{
|
|
|
|
ft_closer(fds);
|
|
|
|
free(line);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
free(line);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2023-03-07 11:48:18 -05:00
|
|
|
int ft_heredoc(t_data *data, char *stop)
|
2023-02-03 10:02:52 -05:00
|
|
|
{
|
2023-03-07 11:48:18 -05:00
|
|
|
int fds[2];
|
2023-03-29 13:07:57 -04:00
|
|
|
int return_code;
|
2023-02-03 10:02:52 -05:00
|
|
|
|
2023-03-07 11:48:18 -05:00
|
|
|
if (pipe(fds) == -1)
|
2023-03-29 13:07:57 -04:00
|
|
|
return (-1);
|
2023-03-07 11:48:18 -05:00
|
|
|
*ft_get_heredoc() = dup(0);
|
2023-03-31 09:23:10 -04:00
|
|
|
while (true)
|
2023-02-03 10:02:52 -05:00
|
|
|
{
|
2023-03-31 09:23:10 -04:00
|
|
|
return_code = ft_heredoc2(data, stop, fds);
|
2023-03-29 13:07:57 -04:00
|
|
|
if (return_code == 2)
|
2023-02-03 10:02:52 -05:00
|
|
|
break ;
|
2023-03-29 13:07:57 -04:00
|
|
|
else if (return_code)
|
2023-03-31 09:32:21 -04:00
|
|
|
{
|
2023-03-31 10:36:15 -04:00
|
|
|
close(*ft_get_heredoc());
|
2023-03-31 12:48:19 -04:00
|
|
|
*ft_get_heredoc() = -1;
|
2023-03-07 11:48:18 -05:00
|
|
|
return (-2);
|
2023-03-31 09:32:21 -04:00
|
|
|
}
|
2023-02-23 09:14:08 -05:00
|
|
|
}
|
2023-03-31 12:49:12 -04:00
|
|
|
close(*ft_get_heredoc());
|
2023-03-07 11:48:18 -05:00
|
|
|
*ft_get_heredoc() = -1;
|
2023-03-31 10:36:15 -04:00
|
|
|
close(fds[1]);
|
2023-03-07 11:48:18 -05:00
|
|
|
return (fds[0]);
|
2023-02-23 09:14:08 -05:00
|
|
|
}
|