Elaborato_SO/src/client.c

57 lines
1.2 KiB
C
Raw Normal View History

2023-05-29 12:16:36 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <server.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <sys/stat.h>
#include <string.h>
#include <errExit.h>
#include <signal.h>
#include <custom_msgq.h>
#include <custom_sem.h>
#include <custom_shm.h>
#include <custom_sig.h>
#include <forza4.h>
2023-05-29 16:14:01 +02:00
int ID;
2023-05-31 11:52:32 +02:00
pid_t SERVER_PID;
2023-05-29 16:14:01 +02:00
2023-05-29 12:16:36 +02:00
void checkClientinput(int argc, char *argv[]);
void setupClient(int argc, char *argv[]) {
2023-05-29 12:35:04 +02:00
// CHECK INPUT
2023-05-29 12:16:36 +02:00
checkClientinput(argc, argv);
2023-05-29 12:35:04 +02:00
2023-05-29 13:06:22 +02:00
// SIGNAL
setupClientSignalHandler();
2023-05-29 12:35:04 +02:00
// MSGQ
setupClientMsgq();
2023-05-29 15:01:11 +02:00
printf("msgq: %d\n", _MSGQID);
2023-05-29 13:12:38 +02:00
// SHM
setupClientShm();
2023-05-29 15:01:11 +02:00
printf("shm: %d\n", _SHMID);
setupClientSem();
printf("sem: %d\n", _SEMID);
2023-05-29 12:16:36 +02:00
}
void checkClientinput(int argc, char *argv[]){
if (argc < 2) {
printf(PHELP "./F4Client PLAYER_NAME\n"
"\t- PLAYER_NAME \t\tplayer name\n"
);
exit(EXIT_SUCCESS);
} else if (argc > 2) {
printf(PCLIENT "To many arguments!");
exit(EXIT_FAILURE);
}
if (!argv[1] || strlen(argv[1]) > MAX_NAME) {
errExitMsg("Invalid player name");
}
}