-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelivery.c
119 lines (98 loc) · 2.54 KB
/
delivery.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
/*
* Progetto del corso di LSO 2017/2018
*
* Dipartimento di Informatica Università di Pisa
* Docenti: Prencipe, Torquati
*
* Autore: Alessandro Meschi
* Matricola: 525658
* Email: alessandro.meschi@icloud.com
*
* Questo programma è, in ogni sua parte, opera originale dell'autore.
*/
#include <stdlib.h>
#include <errno.h>
#include "config.h"
#include "utils.h"
#include "errors.h"
#include "delivery.h"
/**
* @file delivery.c
*
* @author Alessandro Meschi
*
* @date 7 Maggio 2019
*
* @brief Contiene le definizioni delle funzioni di creazione e gestione
* della struttura @see delivery
* @see delivery.h
*/
/*--------------FUNZIONI DI GESTIONE DELIVERY------------------*/
int initializeDelivery(delivery_t* dvy)
{
if(dvy == NULL){errno = EINVAL; return -1;}
// Inizializzazione del contatore
dvy->active = 0;
// Inizializzazione del vettore
for(int i = 0; i < MAX_USER_SIMULTANEUS_CONNECTIONS; i++)
{
(dvy->addresses)[i] = -1;
}
return 0;
}
int addAddress(delivery_t* dvy, int address)
{
// Controllo sulla validità dei parametri
if(dvy == NULL || address <= 0){errno = EINVAL; return -1;}
// Controllo se il numero massimo di connessioni simultanee è già stato raggiunto
if(dvy->active == MAX_USER_SIMULTANEUS_CONNECTIONS){return USER_LOGIN_QUOTA_EXCEEDED;}
int i = 0;
bool stop = FALSE;
while(i < MAX_USER_SIMULTANEUS_CONNECTIONS && !stop)
{
if((dvy->addresses)[i] == -1)
{
(dvy->addresses)[i] = address;
stop = TRUE;
}
else
{
if((dvy->addresses)[i] == address)
{
errno = EPERM;
return -1;
}
i++;
}
}
dvy->active++;
return 0;
}
int removeAddress(delivery_t* dvy, int address)
{
// Controllo sulla validità dei parametri
if(dvy == NULL || address <= 0){errno = EINVAL; return -1;}
if(dvy->active <= 0){errno = EPERM; return -1;}
int i = 0;
bool stop = FALSE;
while(i < MAX_USER_SIMULTANEUS_CONNECTIONS && !stop)
{
if((dvy->addresses)[i] == address)
{
(dvy->addresses)[i] = (dvy->addresses)[dvy->active - 1];
(dvy->addresses)[dvy->active - 1] = -1;
stop = TRUE;
}
else
i++;
}
if(!stop)
{// L'inidrizzo non è stato trovato nel vettore
errno = EPERM;
return -1;
}
else
dvy->active--;
return 0;
}
/*--------------------------------------------------------------*/