make code more readable and fix things

This commit is contained in:
mcolonna 2024-05-15 19:31:57 +02:00
parent 3adace7f33
commit 0c3d0ff95b
2 changed files with 47 additions and 49 deletions

View file

@ -6,7 +6,7 @@
/* By: jschaft <cecile.schaft@orange.fr> +#+ +:+ +#+ */ /* By: jschaft <cecile.schaft@orange.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/23 14:15:12 by mcolonna #+# #+# */ /* Created: 2024/04/23 14:15:12 by mcolonna #+# #+# */
/* Updated: 2024/05/13 10:22:54 by jschaft ### ########.fr */ /* Updated: 2024/05/15 18:10:34 by mcolonna ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -52,12 +52,10 @@ typedef struct s_command
int output_fd; // fd to use with '>' redirection (1 by default) int output_fd; // fd to use with '>' redirection (1 by default)
} t_command; } t_command;
// To make a list of pipe when needed // An element of a list of pipes
typedef struct s_pipes typedef struct s_pipes
{ {
int pipe[2]; // simple pipe int pipe[2]; // Simple pipe, we write on pipe[1] and we read on pipe[0]
int i; //index of the pipe
int inout; //in case of first or last pipe
} t_pipes; } t_pipes;
// Return the t_command representing the command given by the user. // Return the t_command representing the command given by the user.

View file

@ -6,7 +6,7 @@
/* By: jschaft <cecile.schaft@orange.fr> +#+ +:+ +#+ */ /* By: jschaft <cecile.schaft@orange.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/24 13:48:00 by jschaft #+# #+# */ /* Created: 2024/04/24 13:48:00 by jschaft #+# #+# */
/* Updated: 2024/05/15 12:04:07 by mcolonna ### ########.fr */ /* Updated: 2024/05/16 13:25:23 by mcolonna ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -26,75 +26,75 @@ static void free_tab(char **tab)
free(tab); free(tab);
} }
// TODO is t_call.argv ended by NULL? // Execute the call with stdin = in and stdout = out.
static void fork_exec(const char *path, t_call call, t_pipes in, t_pipes out, // Find the program in $PATH
char *const envp[]) static int execute_call(t_memclass mc, t_call call, int in, int out,
{
if (in.i != 0)
dup2(in.pipe[1], 0);
else
dup2(in.inout, 0);
if (out.inout == 0)
dup2(out.pipe[0], 1);
else
dup2(out.inout, 1);
execve(path, call.argv, envp);
}
static int execute_call(t_memclass mc, t_command cmd, t_pipes in, t_pipes out,
char *const envp[]) char *const envp[])
{ {
char **const path = get_path(envp); char **const path = get_path(envp);
pid_t pid; pid_t pid;
const char *program_path; const char *program_path;
int status;
int i;
i = in.i; program_path = search_path(mc, (const char **)path, call.program);
program_path = search_path(mc, (const char **)path, cmd.calls[i].program);
if (i == 0)
in.inout = cmd.input_fd;
if (out.inout == -1)
out.inout = cmd.output_fd;
if (!program_path) if (!program_path)
return (127); return (127);
pid = fork(); pid = fork();
if (pid < 0) if (pid < 0)
return (1); return (1);
if (pid == 0) if (pid == 0)
fork_exec(program_path, cmd.calls[i], in, out, envp); {
waitpid(pid, &status, 0); dup2(in, 0);
dup2(out, 1);
execve(program_path, call.argv, envp);
}
free_tab(path); free_tab(path);
return (0); return (0);
} }
// TODO works with only one call (no pipe).
int execute_command(t_memclass mc, t_command command, char *const envp[]) int execute_command(t_memclass mc, t_command command, char *const envp[])
{ {
t_pipes *pipes; t_pipes *pipes;
int i; int i;
int nb_calls;
// get nb calls
nb_calls = 0;
while (command.calls[nb_calls].program != NULL)
nb_calls++;
// create pipes
pipes = malloc(sizeof(t_pipes) * (nb_calls + 1));
i = 0; i = 0;
while (command.calls[i].program != NULL) pipes[i].pipe[0] = command.input_fd;
i++; while (++i < nb_calls)
pipes = malloc(sizeof(t_pipes) * (i + 1));
i = 0;
while (command.calls[i].program != NULL)
{
if (pipe(pipes[i].pipe) < 0) if (pipe(pipes[i].pipe) < 0)
return (exec_error()); return (exec_error());
pipes[i].inout = 0; pipes[i].pipe[1] = command.output_fd;
i++; i = -1;
}
pipes[i].inout = -1; // call all programs
while (++i < nb_calls)
execute_call(mc, command.calls[i], pipes[i].pipe[0], pipes[i + 1].pipe[1], envp);
// close all
i = 0; i = 0;
while (command.calls[i].program != NULL) if (pipes[i].pipe[0] != 0)
close(pipes[i].pipe[0]);
while (++i < nb_calls)
{ {
pipes[i].i = i; close(pipes[i].pipe[0]);
pipes[i + 1].i = i + 1; close(pipes[i].pipe[1]);
execute_call(mc, command, pipes[i], pipes[i + 1], envp);
i++;
} }
if (pipes[i].pipe[1] != 1)
close(pipes[i].pipe[1]);
// wait the end of all programs
i = nb_calls;
while (wait(NULL) != -1)
;
if (errno != ECHILD)
// TODO error
free(pipes); free(pipes);
return (0); return (0);
} }