Skip to content

Commit 5884b89

Browse files
committedMar 20, 2023
add standard project files
1 parent 1bb80de commit 5884b89

File tree

2 files changed

+5
-39
lines changed

2 files changed

+5
-39
lines changed
 

‎main.c

+4-38
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/* By: joaoteix <joaoteix@student.42.fr> +#+ +:+ +#+ */
77
/* +#+#+#+#+#+ +#+ */
88
/* 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 */
1010
/* */
1111
/* ************************************************************************** */
1212

@@ -40,22 +40,13 @@ int gen_pipes(t_pipecon *context, char *argv[], int argc)
4040

4141
context->pipe_n = (argc - 2 - context->append);
4242
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);
5044
if (context->pipes[0][0] == -1)
5145
ft_dprintf(2, "pipex: %s: %s\n", strerror(errno), argv[1]);
5246
i = 1;
5347
while (i < (context->pipe_n - 1))
5448
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);
5950
if (context->pipes[i][1] == -1)
6051
ft_dprintf(2, "pipex: %s: %s\n", strerror(errno), argv[argc - 1]);
6152
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[])
7970
return (pid);
8071
}
8172

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-
10473
int main(int argc, char *argv[], char *envp[])
10574
{
10675
int wstatus;
10776
int last_pid;
10877
t_pipecon context;
10978

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)
11480
return (EXIT_FAILURE);
11581
if (!gen_pipes(&context, argv, argc))
11682
{

‎utils.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/* By: joaoteix <joaoteix@student.42.fr> +#+ +:+ +#+ */
77
/* +#+#+#+#+#+ +#+ */
88
/* Created: 2023/02/23 10:40:38 by joaoteix #+# #+# */
9-
/* Updated: 2023/03/01 11:23:38 by joaoteix ### ########.fr */
9+
/* Updated: 2023/03/18 19:22:50 by joaoteix ### ########.fr */
1010
/* */
1111
/* ************************************************************************** */
1212

0 commit comments

Comments
 (0)