From 1a115dc95073a1e6675b563b381da96de7871610 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 3 Nov 2020 19:54:36 -0600 Subject: Comment genocide --- P2/lib/utils.c | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) (limited to 'P2/lib/utils.c') diff --git a/P2/lib/utils.c b/P2/lib/utils.c index 3b4f829..c0b2c67 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -23,23 +23,11 @@ char *getChunkData(int mapperID) { int mid = openQueue(); //printf("MAPPER ID:%d\n", mapperID); msgrcv(mid, &message, MSGSIZE, mapperID, 0); - // printf("\n%s\n", message.msgText); - // printf("%d\n", strncmp("END", message.msgText, 3)); if (strncmp("END", message.msgText, 3) == 0) return NULL; - // char* value = message.msgText; - // return value; - - // DEBUG! malloc a buffer/return char* value = malloc(1024); // chunkSize or MSGSIZE? strcpy(value, message.msgText); return value; - // Free memory outside of getChunkData? - - // printf("%s\n", message.msgText); - //printf("RECEIVED CHUNK:%s\nRECEIVED VALUE:%ld\n", value, message.msgType); - - //return &(message.msgText); } // sends chunks of size 1024 to the mappers in RR fashion @@ -57,14 +45,11 @@ void sendChunkData(char *inputFile, int nMappers) { int i = 1023; while(validChar(message.msgText[i])) { - message.msgText[i] = '\0'; - i--; + message.msgText[i--] = '\0'; } - // DEBUG! - fseek(file, (i - 1023), SEEK_CUR); message.msgType = (map++ % nMappers) + 1; - //printf("SENT CHUNK: %s\nSENT CHUNK MAPPER: %ld\n",message.msgText, message.msgType); + msgsnd(msgid, &message, MSGSIZE, 0); } for (int i = 1; i <= nMappers; i++) { @@ -92,7 +77,6 @@ int getInterData(char *Qkey, int reducerID) { int id = openQueue(); msgrcv(id, &message, MSGSIZE, reducerID, 0); strcpy(Qkey, message.msgText); - printf("INTER DATA: %s\nREDUCER ID:%ld\n", Qkey, message.msgType); return (strncmp("END", message.msgText, 3) != 0); } @@ -110,7 +94,6 @@ void shuffle(int nMappers, int nReducers) { if (!strcmp(".", entry->d_name) || !strcmp("..", entry->d_name)) continue; sprintf(message.msgText, "%s/%s", newpath, entry -> d_name); - printf("%s\n%d\n", entry->d_name, hashFunction(entry->d_name, nReducers)+1); message.msgType = (hashFunction(entry -> d_name, nReducers)+1); msgsnd(id, &message, MSGSIZE, 0); } -- cgit v1.2.3 From deee5dba017f63306ec653211eb7b95ce68fb34b Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 3 Nov 2020 20:16:10 -0600 Subject: Comment genocide Also error checks --- P2/lib/utils.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'P2/lib/utils.c') diff --git a/P2/lib/utils.c b/P2/lib/utils.c index c0b2c67..b8922d4 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -21,7 +21,6 @@ char *getChunkData(int mapperID) { struct msgBuffer message = makeMessage(); //Queue ID int mid = openQueue(); - //printf("MAPPER ID:%d\n", mapperID); msgrcv(mid, &message, MSGSIZE, mapperID, 0); if (strncmp("END", message.msgText, 3) == 0) return NULL; @@ -37,7 +36,6 @@ void sendChunkData(char *inputFile, int nMappers) { int msgid = openQueue(); closeQueue(msgid); msgid = openQueue(); - // DEBUG! Remove if already exists when opening queue for the first time int map = 0; FILE* file = fopen(inputFile, "r"); // construct chunks of 1024 bytes -- cgit v1.2.3 From 2f865378032a459b8b5e80b92cc144c01b692ddb Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 3 Nov 2020 20:19:33 -0600 Subject: error checking --- P2/lib/utils.c | 42 +++++++++++++++++++++++++++++++----------- 1 file changed, 31 insertions(+), 11 deletions(-) (limited to 'P2/lib/utils.c') diff --git a/P2/lib/utils.c b/P2/lib/utils.c index b8922d4..3ec7526 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -2,7 +2,8 @@ int openQueue() { char cwd [50]; - getcwd(cwd, 50); + if(getcwd(cwd, 50) == NULL) + return NULL; return msgget(ftok(cwd, 4061), 0666 | IPC_CREAT); } int closeQueue(int id) { @@ -21,7 +22,8 @@ char *getChunkData(int mapperID) { struct msgBuffer message = makeMessage(); //Queue ID int mid = openQueue(); - msgrcv(mid, &message, MSGSIZE, mapperID, 0); + if (msgrcv(mid, &message, MSGSIZE, mapperID, 0) == -1) + exit(-1); if (strncmp("END", message.msgText, 3) == 0) return NULL; char* value = malloc(1024); // chunkSize or MSGSIZE? @@ -33,11 +35,18 @@ char *getChunkData(int mapperID) { void sendChunkData(char *inputFile, int nMappers) { struct msgBuffer message = makeMessage(); // open message queue - int msgid = openQueue(); - closeQueue(msgid); + int msgid; + if (msgid == NULL) + exit(-1); + if (closeQueue(msgid) == -1) + exit(-1); msgid = openQueue(); + if (msgid == NULL) + exit(-1); int map = 0; FILE* file = fopen(inputFile, "r"); + if (file == NULL) + exit(-1); // construct chunks of 1024 bytes while(fgets(message.msgText, chunkSize + 1, file) != NULL) { @@ -45,15 +54,19 @@ void sendChunkData(char *inputFile, int nMappers) { while(validChar(message.msgText[i])) { message.msgText[i--] = '\0'; } - fseek(file, (i - 1023), SEEK_CUR); + if (fseek(file, (i - 1023), SEEK_CUR) == -1) { + break; + } message.msgType = (map++ % nMappers) + 1; - msgsnd(msgid, &message, MSGSIZE, 0); + if (msgsnd(msgid, &message, MSGSIZE, 0) == -1) + exit(-1); } for (int i = 1; i <= nMappers; i++) { struct msgBuffer END = {i, "END"}; - msgsnd(msgid, &END, MSGSIZE, 0); - } + if (msgsnd(msgid, &END, MSGSIZE, 0) == -1) + exit(-1); + } fclose(file); } @@ -73,7 +86,10 @@ int getInterData(char *Qkey, int reducerID) { struct msgBuffer message= makeMessage(); //DEBUG! make sure it work. int id = openQueue(); - msgrcv(id, &message, MSGSIZE, reducerID, 0); + if (id == NULL) + exit(-1); + if (msgrcv(id, &message, MSGSIZE, reducerID, 0) == -1) + exit(-1); strcpy(Qkey, message.msgText); return (strncmp("END", message.msgText, 3) != 0); } @@ -87,19 +103,23 @@ void shuffle(int nMappers, int nReducers) { char newpath[100]; sprintf(newpath, "output/MapOut/Map_%d", i); // Removed /, add to current dir DIR *dir = opendir(newpath); + if (dir == NULL) + break; struct dirent* entry; while ((entry = readdir(dir)) != NULL) { if (!strcmp(".", entry->d_name) || !strcmp("..", entry->d_name)) continue; sprintf(message.msgText, "%s/%s", newpath, entry -> d_name); message.msgType = (hashFunction(entry -> d_name, nReducers)+1); - msgsnd(id, &message, MSGSIZE, 0); + if (msgsnd(id, &message, MSGSIZE, 0) == NULL) + exit(-1); } closedir(dir); } for (int i = 1; i <= nReducers; i++) { struct msgBuffer END = {i, "END"}; - msgsnd(id, &END, MSGSIZE, 0); + if (msgsnd(id, &END, MSGSIZE, 0)) + break; } } -- cgit v1.2.3