-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.c
144 lines (113 loc) · 2.44 KB
/
functions.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
/* Directivas de pre-compilador*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "functions.h"
/* Funcoes auxiliares*/
void imprime(Link link){
if(link_null(link)) {
printf("NULL\n");
}
else {
printf("%d %d %s\n", recetor(link_structmsg(link)), emissor(link_structmsg(link)), mensagem(link_structmsg(link)));
}
}
Item vetoriza (Link head, int size){
int i;
struct mensagem msg;
Link headaux = head;
Item tabela = (Item) malloc(size*sizeof(struct mensagem));
for (i=0; i<size; i++){
msg = link_structmsg(headaux);
tabela[i] = msg;
headaux=next(headaux);
}
return tabela;
}
char* new_command (){
char* command=(char*)malloc(11*sizeof(char));
return command;
}
/* Funcoes principais */
void nova_mensagem(Queue controlo){
Item item;
Link novo;
int recetor, emissor;
char* msg;
scanf("%d",&emissor);
scanf("%d",&recetor);
msg=new_msg();
item=new_item(emissor, recetor, msg);
novo=new_link(item);
queue_put(pos_controlo(controlo,recetor), novo);
}
void processa_mensagem(Queue controlo){
int recetor;
Link link;
Queue pos;
scanf("%d",&recetor);
pos = pos_controlo(controlo, recetor);
if (queue_empty(pos)){
link = NULL;
}
else {
link = queue_get(pos);
}
imprime(link);
if (link != NULL){
delete_link(link);
}
}
void lista(Queue controlo, int recetor){
Link link;
Queue pos = pos_controlo(controlo, recetor);
int i, siz = size(pos);
link = head(pos);
if (siz==0){
imprime(link);
}
else{
for (i=0; i<siz; i++){
imprime(link);
link=next(link);
}
}
}
void sort(Queue controlo){
int receiver, siz, i;
Item tabela;
Queue pos;
scanf("%d",&receiver);
pos= pos_controlo(controlo, receiver);
if (queue_empty(pos)){
printf("NULL\n");
}
else{
siz=size(pos);
tabela = vetoriza(head(pos), siz);
qsort(tabela, siz, sizeof(struct mensagem), compara_msg);
for (i=0;i<siz;i++) {
printf("%d %d %s\n", recetor(tabela[i]), emissor(tabela[i]), mensagem(tabela[i]));
}
free(tabela);
}
}
void apaga(Queue controlo, int recetor){
int i, siz;
Queue pos;
pos=pos_controlo(controlo, recetor);
siz=size(pos);
if (~ queue_empty(pos)){
for(i=0; i<siz; i++){
queue_free(pos);
}
queue_init(pos);
}
}
void sai(Queue controlo, int utilizadores){
int i;
for(i=0; i<utilizadores; i++){
apaga(controlo, i);
}
delete_queue(controlo);
}