Added code to retrieve sender (by calling the appropriate message_helper function), started refactoring code so that all data is processed in one shot, instead of waiting for multiple 'recv's

master
Aadhavan Srinivasan 2 years ago
parent 3e07370f31
commit ace4e3c8e5

@ -14,6 +14,7 @@
#define BUFFER_SIZE 10000
#define MAX_CONNECTIONS 100
#define DATA_SIZE 50000
User** create_user_list(char* filename);
void sigint_handler(int dummy);
@ -22,9 +23,10 @@ User* fetch_user(char* username);
User** users;
int num_users;
bool stop_running = false;
bool stop_running;
int main() {
stop_running = false;
signal(SIGINT,sigint_handler);
@ -34,8 +36,10 @@ int main() {
fd_set read_fd_set;
int conn_sockets[MAX_CONNECTIONS] = {-1};
User* to_user[MAX_CONNECTIONS] = {NULL};
User* from_user[MAX_CONNECTIONS] = {NULL};
FD_ZERO(&read_fd_set);
char buffer[BUFFER_SIZE];
char data[DATA_SIZE];
num_users = num_of_lines("user_file.txt");
users = create_user_list("user_file.txt");
@ -69,43 +73,70 @@ int main() {
for (int i=1; i < MAX_CONNECTIONS; i++) {
if (FD_ISSET(conn_sockets[i],&read_fd_set)) {
do {
while ( strcmp(buffer,"END_OF_DATA\r\n") != 0 ) {
int num_bytes_read = recv(conn_sockets[i],buffer,sizeof(buffer),0);
if (num_bytes_read <= 0) {
close(conn_sockets[i]);
conn_sockets[i] = 0;
to_user[i] = NULL;
GOTO continue_for_loop;
}
strcat(data, buffer);
}
strcat(data,"\0");
if (num_bytes_read <= 0) {
close(conn_sockets[i]);
conn_sockets[i] = 0;
to_user[i] = NULL;
break;
} else {
if (from_user[i] == NULL) {
from_user[i] = fetch_user(fetch_sender_user_string(buffer));
if (from_user[i] == NULL) {
printf("Please identify yourself.\n");
raise(SIGINT);
return 150;
} else {
printf("You are %s\n",from_user[i]->username);
}
continue;
}
if (to_user[i] == NULL) {
to_user[i] = fetch_user(fetch_dest_user_string(buffer));
if (to_user[i] == NULL) {
printf("Invalid message format or User\n");
exit(241);
raise(SIGINT);
} else {
printf("Message intended for %s\n",to_user[i]->username);
exit(0);
}
continue;
}
char* message = fetch_message_string(buffer);
// for (int i=0;i<num_bytes_read;i++) {
// printf("%c",buffer[i]);
// }
}
} while (strcmp(buffer,"END_OF_DATA\r\n") != 0);
}
continue_for_loop:
}
}
if (stop_running) {
for (int i=0; i< MAX_CONNECTIONS; i++) {
if (stop_running == true) {
printf("Stopping...\n");
for (int i=MAX_CONNECTIONS-1; i>= 0; i--) {
close(i);
close(conn_sockets[i]);
}
exit(130);
return 130;
}

Loading…
Cancel
Save