This repository has been archived by the owner on Dec 17, 2021. It is now read-only.
forked from harisont/OSC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipe.c
43 lines (42 loc) · 1.55 KB
/
pipe.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
int main(int argc, char const *argv[]) {
if(argc!=2) {
perror("Per utilizzare il programma, digitare il nome del comando seguito dalla riga da trasmettere.\n");
exit(EXIT_FAILURE); /*utilizzando EXIT_FAILURE al posto di un valore numerico esplicito
il codice è più portabile*/
}
int tubofd[2]; //tubofd conterrà i descrittori delle due estremità del "tubo"
char buffer;
int tubo=pipe(tubofd);
if (tubo==-1) {
perror("CREAZIONE PIPE FALLITA\n");
exit(EXIT_FAILURE);
}
pid_t child=fork();
if (child<0) {
perror("FORK FALLITA\n");
exit(EXIT_FAILURE);
}
if (child==0) { //CODICE PROCESSO FIGLIO
close(tubofd[1]); //l'estremità "scrittura" è inutile
while (read(tubofd[0], &buffer, 1)>0) { //legge 1 byte per volta finché il file non finisce
write(STDOUT_FILENO, &buffer, 1); //anche l'utente leggerà quello che il figlio starà leggendo
}
write(STDOUT_FILENO, "\n", 1);
close(tubofd[0]);
exit(EXIT_SUCCESS);
}
else { //CODICE PROCESSO PADRE
close(tubofd[0]);
write(tubofd[1], argv[1], strlen(argv[1]));
close(tubofd[1]);
wait(NULL); //IMPORTANTE: aspetta il figliolo
exit(EXIT_SUCCESS);
}
return 0;
}