122 lines
2.9 KiB
C
122 lines
2.9 KiB
C
|
#define _GNU_SOURCE
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/wait.h>
|
||
|
#include <string.h>
|
||
|
#include <signal.h>
|
||
|
#include <errno.h>
|
||
|
#include <setjmp.h>
|
||
|
#include "readcmd.h"
|
||
|
#include "jobs.h"
|
||
|
|
||
|
struct cmdline *cmd;
|
||
|
int pid_fils;
|
||
|
int job_id = 0;
|
||
|
list jobs;
|
||
|
int prompting = 0;
|
||
|
jmp_buf goto_prompt;
|
||
|
|
||
|
void handler_sigchld(int signal_num, siginfo_t *info)
|
||
|
{
|
||
|
cell *job = trouver(&jobs, info->si_pid);
|
||
|
if (job)
|
||
|
{
|
||
|
if (prompting)
|
||
|
{
|
||
|
printf("\n");
|
||
|
}
|
||
|
|
||
|
printf("[%d] (%d) done: %s\n", job->id, job->pid, job->cmd);
|
||
|
supprimer(&jobs, job->pid);
|
||
|
job_id--;
|
||
|
|
||
|
if (prompting)
|
||
|
{
|
||
|
siglongjmp(goto_prompt, signal_num);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
initialiser(&jobs);
|
||
|
|
||
|
extern int errno;
|
||
|
|
||
|
// gestion des signaux
|
||
|
struct sigaction action;
|
||
|
sigemptyset(&action.sa_mask);
|
||
|
action.sa_flags = SA_SIGINFO | SA_RESTART;
|
||
|
action.sa_handler = handler_sigchld;
|
||
|
sigaction(SIGCHLD, &action, NULL);
|
||
|
|
||
|
// loop principal
|
||
|
while (1)
|
||
|
{
|
||
|
sigsetjmp(goto_prompt, 1);
|
||
|
|
||
|
prompting = 1;
|
||
|
printf(">>> ");
|
||
|
cmd = readcmd();
|
||
|
prompting = 0;
|
||
|
|
||
|
if (cmd == NULL)
|
||
|
{ // EOF
|
||
|
break;
|
||
|
}
|
||
|
else if (cmd->seq[0] == NULL)
|
||
|
{ // empty
|
||
|
continue;
|
||
|
}
|
||
|
else if (!strcmp(cmd->seq[0][0], "exit"))
|
||
|
{ // "exit"
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
pid_fils = fork();
|
||
|
if (pid_fils == -1)
|
||
|
{ // fork fail ?
|
||
|
fprintf(stderr, "ERROR: forking failed, (%d) %s\n", errno, strerror(errno));
|
||
|
exit(errno);
|
||
|
}
|
||
|
|
||
|
if (pid_fils == 0)
|
||
|
{ // instructions du fils
|
||
|
if (cmd->backgrounded)
|
||
|
{ // background
|
||
|
action.sa_handler = SIG_IGN;
|
||
|
sigaction(SIGINT, &action, NULL); // on ignore SIGINT
|
||
|
}
|
||
|
execvp(cmd->seq[0][0], cmd->seq[0]);
|
||
|
exit(errno); // si execlp échoue on exit avec une erreur
|
||
|
}
|
||
|
else
|
||
|
{ // instructions du père
|
||
|
if (cmd->backgrounded)
|
||
|
{ // background
|
||
|
ajouter(&jobs, pid_fils, ++job_id, *(cmd->seq), 0);
|
||
|
printf("[%d] %d\n", job_id, pid_fils);
|
||
|
}
|
||
|
else
|
||
|
{ // foreground
|
||
|
int wait_code;
|
||
|
pid_t id_fils = waitpid(pid_fils, &wait_code, 0); // on attend la fin de l'exec du fils
|
||
|
|
||
|
if (id_fils == -1)
|
||
|
{ // wait fail ?
|
||
|
fprintf(stderr, "ERROR: waiting for %d failed, (%d) %s\n", wait_code, errno, strerror(errno));
|
||
|
exit(errno);
|
||
|
}
|
||
|
|
||
|
if (wait_code)
|
||
|
{ // execvp fail ?
|
||
|
fprintf(stderr, "ERROR: %d's execution failed, (%d) %s\n", pid_fils, wait_code, strerror(wait_code));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|