6
6
/* By: joaoteix <joaoteix@student.42.fr> +#+ +:+ +#+ */
7
7
/* +#+#+#+#+#+ +#+ */
8
8
/* Created: 2023/02/22 10:02:10 by joaoteix #+# #+# */
9
- /* Updated: 2023/03/01 11:23:21 by joaoteix ### ########.fr */
9
+ /* Updated: 2023/03/20 20:49:22 by joaoteix ### ########.fr */
10
10
/* */
11
11
/* ************************************************************************** */
12
12
@@ -40,22 +40,13 @@ int gen_pipes(t_pipecon *context, char *argv[], int argc)
40
40
41
41
context -> pipe_n = (argc - 2 - context -> append );
42
42
context -> pipes = malloc (sizeof (int [2 ]) * context -> pipe_n );
43
- if (context -> append )
44
- {
45
- pipe (context -> pipes [0 ]);
46
- read_here_doc (context -> pipes [0 ][1 ], argv [2 ]);
47
- }
48
- else
49
- context -> pipes [0 ][0 ] = open (argv [1 ], O_RDONLY );
43
+ context -> pipes [0 ][0 ] = open (argv [1 ], O_RDONLY );
50
44
if (context -> pipes [0 ][0 ] == -1 )
51
45
ft_dprintf (2 , "pipex: %s: %s\n" , strerror (errno ), argv [1 ]);
52
46
i = 1 ;
53
47
while (i < (context -> pipe_n - 1 ))
54
48
pipe (context -> pipes [i ++ ]);
55
- if (context -> append )
56
- context -> pipes [i ][1 ] = open (argv [argc - 1 ], FILE_FLAG | O_APPEND , ACCESS_BITS );
57
- else
58
- context -> pipes [i ][1 ] = open (argv [argc - 1 ], FILE_FLAG | O_TRUNC , ACCESS_BITS );
49
+ context -> pipes [i ][1 ] = open (argv [argc - 1 ], FILE_FLAG | O_TRUNC , ACCESS_BITS );
59
50
if (context -> pipes [i ][1 ] == -1 )
60
51
ft_dprintf (2 , "pipex: %s: %s\n" , strerror (errno ), argv [argc - 1 ]);
61
52
return ((context -> pipes [0 ][0 ] | context -> pipes [i ][1 ]) != -1 );
@@ -79,38 +70,13 @@ int exec_pipe_chain(t_pipecon *context, char *argv[], char *envp[])
79
70
return (pid );
80
71
}
81
72
82
- void read_here_doc (int pipe_in , char * terminator )
83
- {
84
- char * line ;
85
- int size ;
86
-
87
- size = ft_strlen (terminator );
88
- ft_putstr_fd (HEREDOC_PROMPT , STDOUT_FILENO );
89
- line = get_next_line (STDIN_FILENO );
90
- while (line )
91
- {
92
- if (ft_strncmp (line , terminator , size ) == 0 && line [size ] == '\n' )
93
- {
94
- free (line );
95
- return ;
96
- }
97
- ft_putstr_fd (line , pipe_in );
98
- free (line );
99
- ft_putstr_fd (HEREDOC_PROMPT , STDOUT_FILENO );
100
- line = get_next_line (STDIN_FILENO );
101
- }
102
- }
103
-
104
73
int main (int argc , char * argv [], char * envp [])
105
74
{
106
75
int wstatus ;
107
76
int last_pid ;
108
77
t_pipecon context ;
109
78
110
- if (argc < 5 )
111
- return (EXIT_FAILURE );
112
- context .append = ft_strncmp (argv [1 ], APPEND_ARG , ft_strlen (APPEND_ARG )) == 0 ;
113
- if (context .append && argc < 6 )
79
+ if (argc != 5 )
114
80
return (EXIT_FAILURE );
115
81
if (!gen_pipes (& context , argv , argc ))
116
82
{
0 commit comments