-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuncli.c
167 lines (143 loc) · 4.18 KB
/
funcli.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/**
\file funcli.c
\author Marco Ponza
\brief libreria di funzioni per msgcli
Si dichiara che ogni singolo bit presente in questo file è solo ed esclusivamente "farina del sacco" del rispettivo autore :D
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <errno.h>
#include <sys/un.h>
#include <pthread.h>
#include <string.h>
#include <ctype.h>
#include <signal.h>
#include "comsock.h"
#define ERROR_SEND_MSG "Errore nell invio del messaggio"
#define ERROR_RECEIVE_MSG "Client Errore nella ricezione del messaggio"
/** ========== Variabili globali ========== */
extern pthread_t handler; /* variabile globale per far terminare l handler in caso di %EXIT */
extern pthread_t sender; /* variabile globale per far terminare il sender in caso di SIGINT o SIGTERM */
extern pthread_t receiver; /* variabile globale per far terminare il receiver in caso di SIGINT o SIGTERM */
/** Esegue il locking sulla variabile mtx
\param mtx variabile per la mutua esclusione
*/
void Lock (pthread_mutex_t * mtx) {
if (pthread_mutex_lock (mtx) != 0) {
/* lo stato dell'applicazione non è piu consistente */
fprintf (stderr, "Errore durante il locking di una variabile mutex");
exit (EXIT_FAILURE);
}
}
/** Esegue l'unlocking sulla variabile mtx
\param mtx variabile per la mutua esclusione
*/
void Unlock (pthread_mutex_t * mtx) {
if (pthread_mutex_unlock (mtx) != 0) {
/* lo stato dell'applicazione non è piu consistente */
fprintf (stderr, "Errore durante l'unlocking di una variabile mutex");
exit (EXIT_FAILURE);
}
}
/** Chiude la socket gestendo l'errore
* \param skt, socket da chiudere
*/
void Close_skt (int skt) {
if (closeSocket (skt) == -1) {
perror ("Errore durante la chiusura della socket");
exit (EXIT_FAILURE);
}
}
/** Lettura dalla socket gestendo l'errore
*
* \param skt, socket da cui leggere
* \param msg, messaggio da leggere
*
* \retval n, numero di byte letti
*/
int Receive_skt (int skt, message_t * msg) {
int n;
n = receiveMessage (skt, msg);
if (n == -1) {
perror (ERROR_RECEIVE_MSG);
Close_skt (skt);
exit (EXIT_FAILURE);
}
return n;
}
/** Scrittura sulla socket gestendo l'errore
*
* \param skt, socket su cui scrivere
* \param msg, messaggio da scrivere
*
* \retval n, numero di byte scritti
*/
int Send_skt (int skt, message_t * msg) {
int n;
n = sendMessage (skt, msg);
if (n == -1) {
perror (ERROR_SEND_MSG);
Close_skt (skt);
exit (EXIT_FAILURE);
}
return n;
}
/** Funzione che permette di valutare se una stringa contiene solo
* caratteri definiti dal nostro "standard" per il progetto
*
* \param str, stringa da valutare
* \retval 1, se la stringa è ben formata
* \retval 0, se non lo è
*/
int Is_good_str (char * str) {
int i;
for (i = 0; i < strlen (str); i++) { /* controllo i caratteri inseriti in tutta la stringa */
if ( (isprint (str [i]) == 0) || (str [i] == '%') ) {
return 0;
}
}
return 1;
}
/** Funzione che permette di valutare se una stringa ripsetta la sintassi
* per l'invio di un messaggio MSG_TO_ONE
*
* \param str, stringa da valutare
* \retval 1, se rispetta la sintassi "destinatario messaggio"
* \retval 0, se non la rispetta
*/
int To_one_good_str (char * str) {
int i = 0;
int space = 0; /* variabile che indica se è stato trovato un carattere ' ' */
while (i < strlen (str)) {
if ( str [i] == ' ' ) { /* scorro la stringa fino al primo spazio trovato */
space = 1;
break;
}
i++;
}
if (space == 0) { /* non è presente lo spazio che separa destinatario da messaggio
* ovvero è stata digitata una stringa del tipo "%ONE destinatario"
*/
return 0;
}
/* space == 1 */
if (str [i + 1] == '\0') { /* non è presente il messaggio da inviare */
return 0;
}
return ( Is_good_str (str) );
}
/** Funzione che shifta una stringa di n posizioni verso sinistra
*
* \param str, stringa da shiftare
* \param n, valore che indica di quanto shiftare str
*/
void Left_shift (char * str, int n) {
int i;
int dim = strlen (str);
for (i = 0; i <= (dim - n); i++) { /* viene eseguito lo shifting a partire da str [n] verso sinistra */
str [i] = str [i + n];
}
}