Change the use of pipes in master

Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
This commit is contained in:
Santiago Lo Coco 2021-09-04 12:41:14 -03:00
parent bf81d337b1
commit e17200de88
3 changed files with 25 additions and 28 deletions

View File

@ -1,5 +1,5 @@
CC = gcc CC = gcc
CCFLAGS = -Wall -std=c99 -pedantic # -g (si queremos debuggear) CCFLAGS = -Wall -std=c99 -pedantic -g # (si queremos debuggear)
SOURCES = $(wildcard *.c) SOURCES = $(wildcard *.c)
OBJECTS = $(SOURCES:.c=.o) OBJECTS = $(SOURCES:.c=.o)
@ -8,14 +8,14 @@ OBJECTS = $(SOURCES:.c=.o)
#%.o : %.c #%.o : %.c
# $(CC) $(CFLAGS) $^ -o $@ # $(CC) $(CFLAGS) $^ -o $@
all: master.o error.o slave.o all: masterV2.o error.o slave.o
$(CC) $(CFLAGS) -o master master.o error.o $(CC) $(CCFLAGS) -o master masterV2.o error.o
master.o: master.c error.h masterV2.o: masterV2.c error.h
$(CC) $(CFLAGS) -c master.c $(CC) $(CCFLAGS) -c masterV2.c
error.o: error.c error.h error.o: error.c error.h
$(CC) $(CFLAGS) -c error.c $(CC) $(CCFLAGS) -c error.c
slave.o: slave.c error.o slave.o: slave.c error.o
$(CC) $(CFLAGS) slave.c -o slave.o error.o $(CC) $(CCFLAGS) slave.c -o slave.o error.o
clean: clean:
rm -rf $(OBJECTS) rm -rf $(OBJECTS)

View File

@ -10,7 +10,7 @@
#include <fcntl.h> #include <fcntl.h>
#include "error.h" #include "error.h"
#define SLAVE_NUM 1 #define SLAVE_NUM 3
#define MAX_SIZE 200 #define MAX_SIZE 200
void create(int ans[2], int pipes[SLAVE_NUM][2]); void create(int ans[2], int pipes[SLAVE_NUM][2]);
@ -29,7 +29,6 @@ int main(int argc, char *argv[]) {
fd_set ansSet; fd_set ansSet;
FD_ZERO(&ansSet); FD_ZERO(&ansSet);
FD_SET(ans[0], &ansSet); FD_SET(ans[0], &ansSet);
//printf("%d", ansSet);
fd_set fdSet; fd_set fdSet;
FD_ZERO(&fdSet); FD_ZERO(&fdSet);
@ -55,9 +54,6 @@ int main(int argc, char *argv[]) {
if (write(pipes[j++][1], argv[i], strlen(argv[i]) + 1) < 0) { if (write(pipes[j++][1], argv[i], strlen(argv[i]) + 1) < 0) {
//if (write(pipes[j++][1], "prueba.cnf\n", strlen(argv[i]) + 1) < 0) { //if (write(pipes[j++][1], "prueba.cnf\n", strlen(argv[i]) + 1) < 0) {
printf("quesesto %d\n", fcntl(pipes[j-1][1], F_GETFD));
printf("%s\n", argv[i]);
printf("fd write: %d\n", pipes[j-1][0]);
printSystemError("write() -- ERROR"); printSystemError("write() -- ERROR");
} }
//close(pipes[j-1][1]); //close(pipes[j-1][1]);
@ -82,16 +78,17 @@ int main(int argc, char *argv[]) {
int fd; int fd;
char buf[MAX_SIZE]; char buf[MAX_SIZE];
if ((fd = select(4, &ansSet, NULL, NULL, NULL)) < 0) if ((fd = select(ans[0] + 1, &ansSet, NULL, NULL, NULL)) < 0)
printSystemError("select() -- ERROR"); printSystemError("select() -- ERROR");
int readBytes = 0; while (fd > 0) {
do { int readBytes = 0;
if ((readBytes += read(ans[0], buf + readBytes, MAX_SIZE)) < 0) do {
printSystemError("read() -- ERROR"); if ((readBytes += read(ans[0], buf + readBytes, MAX_SIZE)) < 0)
} while (buf[readBytes - 1] != '\n'); printSystemError("read() -- ERROR");
buf[readBytes] = 0; } while (buf[readBytes - 1] != '\n');
printf("%s\n", buf); buf[readBytes] = 0;
//write(pipes[j++][1], "prueba.cnf\n", strlen(argv[i]) + 1); printf("%s\n", buf);
}
/* /*
readBytes = 0; readBytes = 0;
do { do {

14
slave.c
View File

@ -51,6 +51,10 @@ int main(int argc, char *argv[]) {
inputLine = strtok(NULL, "\n"); inputLine = strtok(NULL, "\n");
} }
} }
// int saved_flags = fcntl(fd, F_GETFL);
// fcntl(fd, F_SETFL, saved_flags & ~O_NONBLOCK);
} }
void runCommand(char * inputLine, char * output) { void runCommand(char * inputLine, char * output) {
@ -73,11 +77,7 @@ void runCommand(char * inputLine, char * output) {
void printOutput(char * output, char * fileName) { void printOutput(char * output, char * fileName) {
printf("Nombre del archivo: %s - %s - Id del esclavo: %d\n", fileName, output, getpid()); printf("Nombre del archivo: %s - %s - Id del esclavo: %d\n", fileName, output, getpid());
}
/* // int saved_flags = fcntl(fd, F_GETFL);
void printSystemError(char * string) { // fcntl(fd, F_SETFL, saved_flags & O_NONBLOCK);
perror(string); }
exit(EXIT_FAILURE);
}
*/