version 1.25, 2011/01/03 12:08:10
|
version 1.64, 2013/02/27 17:11:46
|
Line 1
|
Line 1
|
/* |
/* |
================================================================================ |
================================================================================ |
RPL/2 (R) version 4.0.20 |
RPL/2 (R) version 4.1.13 |
Copyright (C) 1989-2011 Dr. BERTRAND Joël |
Copyright (C) 1989-2013 Dr. BERTRAND Joël |
|
|
This file is part of RPL/2. |
This file is part of RPL/2. |
|
|
Line 90 reencodage(struct_processus *s_etat_proc
|
Line 90 reencodage(struct_processus *s_etat_proc
|
if ((transcodage = iconv_open(codage_sortie, codage_entree)) == |
if ((transcodage = iconv_open(codage_sortie, codage_entree)) == |
(iconv_t) -1) |
(iconv_t) -1) |
{ |
{ |
|
// On affiche une erreur ici car la fonction d'affichage |
|
// de l'erreur utilise la macro printf() donc une |
|
// opération de translitération qui échouera elle aussi. |
|
// Le positionnement de l'erreur permet de sortir du programme. |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
fprintf(stderr, "+++Erreur : Erreur de transcodage\n"); |
|
} |
|
else |
|
{ |
|
fprintf(stderr, "+++Error : Transcodage error\n"); |
|
} |
|
|
(*s_etat_processus).erreur_execution = d_ex_erreur_transcodage; |
(*s_etat_processus).erreur_execution = d_ex_erreur_transcodage; |
return(NULL); |
return(NULL); |
} |
} |
Line 105 reencodage(struct_processus *s_etat_proc
|
Line 119 reencodage(struct_processus *s_etat_proc
|
|
|
chaine_sortie[0] = d_code_fin_chaine; |
chaine_sortie[0] = d_code_fin_chaine; |
|
|
if ((buffer_sortie = malloc((d_LONGUEUR + 1) * sizeof(char))) == NULL) |
if ((buffer_sortie = malloc((d_LONGUEUR + 1) * sizeof(unsigned char))) |
|
== NULL) |
{ |
{ |
(*s_etat_processus).erreur_systeme = d_es_allocation_memoire; |
(*s_etat_processus).erreur_systeme = d_es_allocation_memoire; |
return(NULL); |
return(NULL); |
Line 126 reencodage(struct_processus *s_etat_proc
|
Line 141 reencodage(struct_processus *s_etat_proc
|
free(buffer_sortie); |
free(buffer_sortie); |
free(chaine_sortie); |
free(chaine_sortie); |
|
|
|
// On affiche une erreur ici car la fonction d'affichage |
|
// de l'erreur utilise la macro printf() donc une |
|
// opération de translitération qui échouera elle aussi. |
|
// Le positionnement de l'erreur permet de sortir du programme. |
|
|
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
fprintf(stderr, "+++Erreur : Erreur de transcodage\n"); |
|
} |
|
else |
|
{ |
|
fprintf(stderr, "+++Error : Transcodage error\n"); |
|
} |
|
|
(*s_etat_processus).erreur_execution = d_ex_erreur_transcodage; |
(*s_etat_processus).erreur_execution = d_ex_erreur_transcodage; |
return(NULL); |
return(NULL); |
} |
} |
} |
} |
|
|
tampon = (unsigned char *) chaine_sortie; |
tampon = chaine_sortie; |
(*pointeur) = d_code_fin_chaine; |
(*pointeur) = d_code_fin_chaine; |
|
|
if ((chaine_sortie = malloc((strlen(tampon) + strlen(buffer_sortie) + 1) |
if ((chaine_sortie = malloc((strlen(tampon) + strlen(buffer_sortie) + 1) |
Line 158 reencodage(struct_processus *s_etat_proc
|
Line 187 reencodage(struct_processus *s_etat_proc
|
================================================================================ |
================================================================================ |
Entrées : |
Entrées : |
-------------------------------------------------------------------------------- |
-------------------------------------------------------------------------------- |
|
Sorties : |
-------------------------------------------------------------------------------- |
-------------------------------------------------------------------------------- |
iorties : |
|
Effets de bord : néant |
Effets de bord : néant |
================================================================================ |
================================================================================ |
*/ |
*/ |
Line 175 localisation_courante(struct_processus *
|
Line 204 localisation_courante(struct_processus *
|
int pipes_sortie[2]; |
int pipes_sortie[2]; |
int status; |
int status; |
|
|
logical1 drapeau_fin; |
|
|
|
long i; |
long i; |
long nombre_arguments; |
long nombre_arguments; |
|
|
pid_t pid; |
pid_t pid; |
|
|
sigset_t oldset; |
|
sigset_t set; |
|
|
|
struct sigaction action_passee; |
|
|
|
unsigned char *tampon; |
unsigned char *tampon; |
|
|
unsigned long longueur_lecture; |
unsigned long longueur_lecture; |
Line 216 localisation_courante(struct_processus *
|
Line 238 localisation_courante(struct_processus *
|
arguments[2] = NULL; |
arguments[2] = NULL; |
|
|
nombre_arguments = 2; |
nombre_arguments = 2; |
drapeau_fin = d_faux; |
|
|
|
if (pipe(pipes_entree) != 0) |
if (pipe(pipes_entree) != 0) |
{ |
{ |
Line 236 localisation_courante(struct_processus *
|
Line 257 localisation_courante(struct_processus *
|
return; |
return; |
} |
} |
|
|
sigfillset(&set); |
|
pthread_sigmask(SIG_BLOCK, &set, &oldset); |
|
|
|
verrouillage_threads_concurrents(s_etat_processus); |
verrouillage_threads_concurrents(s_etat_processus); |
pid = fork(); |
pid = fork(); |
deverrouillage_threads_concurrents(s_etat_processus); |
deverrouillage_threads_concurrents(s_etat_processus); |
|
|
pthread_sigmask(SIG_SETMASK, &oldset, NULL); |
|
sigpending(&set); |
|
|
|
if (pid < 0) |
if (pid < 0) |
{ |
{ |
if (close(pipes_entree[0]) != 0) |
if (close(pipes_entree[0]) != 0) |
Line 408 localisation_courante(struct_processus *
|
Line 423 localisation_courante(struct_processus *
|
*/ |
*/ |
|
|
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0) |
if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0) |
# else |
# else |
if (sem_post((*s_etat_processus).semaphore_fork) != 0) |
if (sem_post((*s_etat_processus).semaphore_fork) != 0) |
# endif |
# endif |
{ |
{ |
(*s_etat_processus).erreur_systeme = d_es_processus; |
(*s_etat_processus).erreur_systeme = d_es_processus; |
Line 420 localisation_courante(struct_processus *
|
Line 435 localisation_courante(struct_processus *
|
if (waitpid(pid, &status, 0) == -1) |
if (waitpid(pid, &status, 0) == -1) |
{ |
{ |
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
if (sem_wait(&((*s_etat_processus).semaphore_fork)) == -1) |
while(sem_wait(&((*s_etat_processus).semaphore_fork)) != 0) |
# else |
# else |
if (sem_wait((*s_etat_processus).semaphore_fork) == -1) |
while(sem_wait((*s_etat_processus).semaphore_fork) != 0) |
# endif |
# endif |
{ |
{ |
if (errno != EINTR) |
if (errno != EINTR) |
Line 437 localisation_courante(struct_processus *
|
Line 452 localisation_courante(struct_processus *
|
} |
} |
|
|
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
if (sem_wait(&((*s_etat_processus).semaphore_fork)) == -1) |
while(sem_wait(&((*s_etat_processus).semaphore_fork)) != 0) |
# else |
# else |
if (sem_wait((*s_etat_processus).semaphore_fork) == -1) |
while(sem_wait((*s_etat_processus).semaphore_fork) != 0) |
# endif |
# endif |
{ |
{ |
if (errno != EINTR) |
if (errno != EINTR) |
Line 464 localisation_courante(struct_processus *
|
Line 479 localisation_courante(struct_processus *
|
tampon[0] = d_code_fin_chaine; |
tampon[0] = d_code_fin_chaine; |
|
|
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0) |
if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0) |
# else |
# else |
if (sem_post((*s_etat_processus).semaphore_fork) != 0) |
if (sem_post((*s_etat_processus).semaphore_fork) != 0) |
# endif |
# endif |
{ |
{ |
(*s_etat_processus).erreur_systeme = d_es_processus; |
(*s_etat_processus).erreur_systeme = d_es_processus; |
Line 478 localisation_courante(struct_processus *
|
Line 493 localisation_courante(struct_processus *
|
longueur_lecture)) > 0) |
longueur_lecture)) > 0) |
{ |
{ |
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
while(sem_wait(&((*s_etat_processus).semaphore_fork)) == -1) |
while(sem_wait(&((*s_etat_processus).semaphore_fork)) != 0) |
# else |
# else |
while(sem_wait((*s_etat_processus).semaphore_fork) == -1) |
while(sem_wait((*s_etat_processus).semaphore_fork) != 0) |
# endif |
# endif |
{ |
{ |
if (errno != EINTR) |
if (errno != EINTR) |
Line 504 localisation_courante(struct_processus *
|
Line 519 localisation_courante(struct_processus *
|
} |
} |
|
|
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0) |
if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0) |
# else |
# else |
if (sem_post((*s_etat_processus).semaphore_fork) != 0) |
if (sem_post((*s_etat_processus).semaphore_fork) != 0) |
# endif |
# endif |
{ |
{ |
(*s_etat_processus).erreur_systeme = d_es_processus; |
(*s_etat_processus).erreur_systeme = d_es_processus; |
Line 515 localisation_courante(struct_processus *
|
Line 530 localisation_courante(struct_processus *
|
} |
} |
|
|
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
while(sem_wait(&((*s_etat_processus).semaphore_fork)) == -1) |
while(sem_wait(&((*s_etat_processus).semaphore_fork)) != 0) |
# else |
# else |
while(sem_wait((*s_etat_processus).semaphore_fork) == -1) |
while(sem_wait((*s_etat_processus).semaphore_fork) != 0) |
# endif |
# endif |
{ |
{ |
if (errno != EINTR) |
if (errno != EINTR) |
Line 565 localisation_courante(struct_processus *
|
Line 580 localisation_courante(struct_processus *
|
strcpy((*s_etat_processus).localisation, d_locale); |
strcpy((*s_etat_processus).localisation, d_locale); |
} |
} |
|
|
if (sigaction(SIGINT, &action_passee, NULL) != 0) |
|
{ |
|
for(i = 0; i < nombre_arguments; i++) |
|
{ |
|
free(arguments[i]); |
|
} |
|
|
|
free(arguments); |
|
(*s_etat_processus).erreur_systeme = d_es_signal; |
|
return; |
|
} |
|
|
|
for(i = 0; i < nombre_arguments; i++) |
for(i = 0; i < nombre_arguments; i++) |
{ |
{ |
free(arguments[i]); |
free(arguments[i]); |
Line 585 localisation_courante(struct_processus *
|
Line 588 localisation_courante(struct_processus *
|
free(arguments); |
free(arguments); |
|
|
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0) |
if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0) |
# else |
# else |
if (sem_post((*s_etat_processus).semaphore_fork) != 0) |
if (sem_post((*s_etat_processus).semaphore_fork) != 0) |
# endif |
# endif |
{ |
{ |
(*s_etat_processus).erreur_systeme = d_es_processus; |
(*s_etat_processus).erreur_systeme = d_es_processus; |
Line 611 localisation_courante(struct_processus *
|
Line 614 localisation_courante(struct_processus *
|
} |
} |
|
|
# ifndef SEMAPHORES_NOMMES |
# ifndef SEMAPHORES_NOMMES |
while(sem_wait(&((*s_etat_processus).semaphore_fork)) == -1) |
while(sem_wait(&((*s_etat_processus).semaphore_fork)) != 0) |
# else |
# else |
while(sem_wait((*s_etat_processus).semaphore_fork) == -1) |
while(sem_wait((*s_etat_processus).semaphore_fork) != 0) |
# endif |
# endif |
{ |
{ |
if (errno != EINTR) |
if (errno != EINTR) |
Line 686 transliterated_fprintf(struct_processus
|
Line 689 transliterated_fprintf(struct_processus
|
} |
} |
|
|
# ifdef OS2 |
# ifdef OS2 |
if ((flux == stdin) || (flux == stdout)) |
if ((flux == stderr) || (flux == stdout)) |
{ |
{ |
i = 0; |
i = 0; |
ptr_l = tampon2; |
ptr_l = tampon2; |
Line 705 transliterated_fprintf(struct_processus
|
Line 708 transliterated_fprintf(struct_processus
|
sizeof(unsigned char))) == NULL) |
sizeof(unsigned char))) == NULL) |
{ |
{ |
(*s_etat_processus).erreur_systeme = d_es_allocation_memoire; |
(*s_etat_processus).erreur_systeme = d_es_allocation_memoire; |
return(NULL); |
return(-1); |
} |
} |
|
|
ptr_e = tampon3; |
ptr_e = tampon3; |