-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventos.c
553 lines (401 loc) · 12.5 KB
/
Eventos.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
/* UFRJ - DCC - Teleprocessamento e Redes - 2004/2
Fabio Pereira Sarmento - DRE:
Gustavo Zopelari Nasu - DRE: 098212015
Leonardo Freitas Gomes - DRE: 098211336
Ricardo Chiganer Lilenbaum - DRE: 101133019 */
#include "Principal.h"
#include "Eventos.h"
#include "Estruturas.h"
extern TDadosAplicacao DadosAplicacao;
extern RegVizinho vizinhos[MAX_VIZINHOS];
/* ------------------------------ onEntrada ------------------------------ */
void onEntrada(){
int ret;
Header header;
IdPeer dest = DadosAplicacao.noPrincipalIp ; // Destino = Ip do noh onde conectei
createHeader(&header, JOIN, dest);
header.tamDados = 0;
ret = u_send( DadosAplicacao.sockPrincipalConectado, &header, (size_t) sizeof(header) );
if(ret == -1) puts("Erro no envio de join msg");
if(ret >= 0){
puts("Join Msg enviada com sucesso");
printf("Bytes lidos: %d\n", sizeof(header) );
printf("Bytes enviados: %d\n", ret);
}
/* Evento que originou o registro na tabela foi uma JOIN MSG, mas o evento que estah sendo monitorado pelo timer eh a JOIN RESPONSE MSG */
InsereMensagemResposta(header.numSeq, JOINR);
SetTimer( DadosAplicacao.intervaloTimeout, TIMER_JOINR, 0 );
}
/* ------------------------------ onSaida ------------------------------ */
void onSaida(){
printf("\nObrigado por utilizar o p2p!\n");
/* TODO
- Fechar todos os sockets que possam estar abertos
- Encerrar as threads
*/
exit(0);
}
/* ------------------------------ onGetArquivo ------------------------------ */
void onGetArquivo(char *str){
char nomeDoArquivo[MAX_NOME_ARQ];
Header header;
IdPeer dest;
scanf("%s", str);
inicializaSearch();
//Checa se os tokens estao ok
if(strcmp(str, "arquivo"))
{
printHelp();
return;
}
scanf("%s", str);
strcpy(nomeDoArquivo,str);
printf("Nome do arquivo: (%s)\n", nomeDoArquivo);
// Checa se ha algum token depois do nome do arquivo
if( (str = strtok(NULL, " ") ) != NULL){
printHelp();
return;
}
if(isValida(SEARCHR) || isValida(GETR)) {
printf("******************************************************\n");
printf("Buscando arquivo... \nAguarde para realizar nova busca\n");
printf("******************************************************\n");
return;
}
createHeader(&header, SEARCH, dest);
header.tamDados = strlen(nomeDoArquivo);
#ifdef DEBUG_SEARCH
printf("Tamanho do nome do arquivo: %d\n", header.tamDados);
#endif
distribui(header, nomeDoArquivo);
setNomeArquivoSearch(nomeDoArquivo);
#ifdef DEBUG_SEARCH
printf("SEARCH distribuida");
#endif
InsereMensagemResposta(header.numSeq, SEARCHR);
SetTimer(DadosAplicacao.intervaloTimeout, TIMER_SEARCHR, 0);
}
void onImprimeTabelaVizinho()
{
imprimeTabelaVizinhos();
}
void onRoteamento(){
imprimeRoteamento();
}
/* ------------------------------ trataJoin ------------------------------ */
void trataJoin(int sockfd, Header& h, char * dadosP){
Header resposta;
char dados[1];
// #ifdef DEBUG
char tmp[TAM_STR_IP + 1];
IdPeer2StrIp(tmp, h.remetente);
printf("\n********** RECEBIMENTO DE JOIN *************\n");
printf("Remetente: %s\n", tmp);
printf("NumSeq: %d\n", h.numSeq);
printf("********************************************\n\n");
// #endif
puts("Inseriu na tabela de roteamento");
// Se ha espaco na tabela de vizinhos, adiciona o vizinho e envia JOINR com distancia
//if( insereVizinho(origem, sockfd) ){
if(contaVizinhos() < MAX_VIZINHOS){
createHeader( &resposta, JOINR, h.remetente );
resposta.numSeq = h.numSeq;
dados[0] = calcDistancia( &DadosAplicacao.meuIp, &h.remetente );
printf("\n\n\n**************\nDISTANCIA JOINR: %d\n*****************\n\n\n", dados[0]);
resposta.tamDados = sizeof( unsigned char );
printf("Tamanho dos Dados da JOINR: %d\n\n", resposta.tamDados);
if(!escrevePacote(sockfd, resposta, dados))
puts("Erro ao enviar JOINR MSG");
// if ( ( posicao = buscaPosicaoVizinho(h.remetente) ) != -1)
// SetTimer(DadosAplicacao.intervaloHelloR, TIMER_HELLOR, posicao);
}
//***********************************************************
distribui(h, NULL);
//***********************************************************
}
/* ------------------------------ trataJoinResponse ------------------------------ */
void trataJoinResponse(int sockfd, Header& h, char * dadosP)
{
char *distancia;
int duplicado;
IdPeer vizinho = h.remetente;
#ifdef DEBUG_JOINR
printf("\n\n*** JOIN RESPONSE (INICIO) ***\n");
#endif
if( (distancia = (char *) malloc(h.tamDados+1) ) == NULL){
puts("Erro de memoria");
exit(1);
}
#ifdef DEBUG
printf("Tamanho dos dados que vou ler: %d\n", h.tamDados);
#endif
strncpy(distancia, dadosP, h.tamDados);
distancia[h.tamDados] = '\0';
#ifdef DEBUG
printf("Tamanho dos dados recebidos: %d\n", ret );
printf("Dados recebidos: %s\n", distancia);
#endif
//Escolhe os vizinhos
if ( (duplicado = buscaSocketVizinho(vizinho)) == -1 ){ // Se naum estah na tabela de vizinhos
escolheVizinhos(vizinho, atoi(distancia), SOCKET_DESCONHECIDO);
}
#ifdef DEBUG_JOINR
printf("Vizinhos temporarios: \n");
imprimeTabelaVizinhosTemp();
printf("*** JOIN RESPONSE (FIM) ***\n\n\n");
#endif
}
/* ------------------------------ trataHello ------------------------------ */
void trataHello(int sockfd, Header& h, char * dadosP)
{
int distancia = 1,
duplicado;
#ifdef DEBUG_HELLO
char tmp[TAM_STR_IP + 1];
IdPeer2StrIp(tmp, h.remetente);
printf("\n\n*** RECEBI HELLO (INICIO) ***\n");
printf("Vizinho: %s\n", tmp);
#endif
if ( (duplicado = buscaSocketVizinho(h.remetente)) == -1 ) { // Se naum estah na tabela de vizinhos
escolheVizinhos(h.remetente, distancia, sockfd);
defineVizinhos();
InicializaTabelaTempVizinhos();
}
#ifdef DEBUG_HELLO
imprimeTabelaVizinhos();
printf("*** RECEBI HELLO (FIM) ***\n\n\n");
#endif
}
void trataSearch(int sockfd, Header& h, char * nomeArquivo)
{
Header resposta;
char dados[1];
FILE *arquivo;
char sNomeArquivo[MAX_NOME_ARQ];
strncpy(sNomeArquivo, nomeArquivo, h.tamDados);
sNomeArquivo[h.tamDados] = '\0';
#ifdef DEBUG_SEARCH
char tmp[TAM_STR_IP + 1];
IdPeer2StrIp(tmp, h.remetente);
printf("\n********** RECEBIMENTO DE SEARCH *************\n");
printf("Remetente: %s\n", tmp);
printf("NumSeq: %d\n", h.numSeq);
printf("********************************************\n\n");
printf("\n\n\n\n********** VOU CHECAR SE TENHO O ARQUIVO !!!! *************\n");
printf("\n\n\n\n********** NOME DO ARQUIVO: (%s)", sNomeArquivo);
#endif
arquivo = fopen(sNomeArquivo, "r");
if(arquivo) {
printf("\n\n\n\n********** ARQUIVO ENCONTRADO !!!! *************\n");
createHeader(&resposta, SEARCHR, h.remetente);
resposta.numSeq = h.numSeq;
dados[0] = calcDistancia(&DadosAplicacao.meuIp, &h.remetente );
resposta.tamDados = sizeof(unsigned char);
if(!escrevePacote(sockfd, resposta, dados))
puts("Erro ao enviar SEARCHR MSG");
#ifdef DEBUG_SEARCH
printf("\n********** RESPONDEU SEARCH *************\n");
#endif
fclose(arquivo);
}
//***********************************************************
distribui(h, nomeArquivo);
//***********************************************************
#ifdef DEBUG_SEARCH
printf("\n********** DISTRIBUIU SEARCH *************\n");
#endif
}
void trataSearchResponse(int sockfd, Header& h, char * dadosP)
{
char *distancia;
if( (distancia = (char *) malloc(h.tamDados+1) ) == NULL){
puts("Erro de memoria");
exit(1);
}
strncpy(distancia, dadosP, h.tamDados);
distancia[h.tamDados] = '\0';
escolheSearch( h.remetente, distancia[0] );
SetTimer( DadosAplicacao.intervaloTimeout, TIMER_GETR, 0 );
#ifdef DEBUG_SEARCH
printf("\n********** RECEBEU SEARCH RESPONSE *************\n");
#endif
}
/*
*
* TRATA REQUISICOES DE ARQUIVOS
*
* */
void trataGet(int sockfd, Header& h, char *nomeArquivo ){
int falha;
FILE *arquivo;
char sNomeArquivo[MAX_NOME_ARQ];
TArgumentoGet *args; //Argumentos da funcao passada para a thread
pthread_t idThread; //id da thread criada
strncpy(sNomeArquivo, nomeArquivo, h.tamDados);
sNomeArquivo[h.tamDados] = '\0';
arquivo = fopen(sNomeArquivo, "r");
printf("\n\nInicio 'TRATA GET'\n");
if(arquivo) {
printf("Enviando arquivo\n");
/* aloca estrutura a ser passada para a thread e atribui valor as variavies */
if ( (args = (TArgumentoGet *)malloc(sizeof(TArgumentoGet)))==NULL ) {
printf("Erro de memoria!\n");
exit(1);
}
strcpy(args->nomeArquivo, sNomeArquivo);
args->sockfd = sockfd;
args->header = h;
falha = pthread_create(&idThread, NULL, &enviaArquivo, (void *) args);
if(falha){
printf("Erro ao criar thread para atender requisicao de arquivo\n");
free(args);
}
fclose(arquivo);
}
printf("Fim 'TRATA GET'\n\n\n");
// free(args);
}
void *enviaArquivo(void *args){
FILE *arquivo;
TArgumentoGet *argumentos = (TArgumentoGet *) args;
Header resposta, requisicao;
char bloco[TAM_BLOCO];
int tamDados;
requisicao = argumentos->header;
// Monta o cabecalho da mensagem
createHeader(&resposta, GETR, requisicao.remetente);
resposta.numSeq = requisicao.numSeq;
arquivo = fopen(argumentos->nomeArquivo, "r");
if(arquivo) {
printf("\n**** ENVIANDO ARQUIVO *****\n");
while(!feof(arquivo)){
tamDados = fread(bloco, (size_t) 1, (size_t) TAM_BLOCO, arquivo);
resposta.tamDados = tamDados;
if(!escrevePacote(argumentos->sockfd, resposta, bloco))
printf("Erro ao enviar fragmento do arquivo");
usleep(100);
}
// Envia pacote com ZERO BYTES sinalizando que terminou de enviar o arquivo
resposta.tamDados = 0;
escrevePacote(argumentos->sockfd, resposta, NULL);
}
fclose(arquivo);
return NULL;
}
void trataGetResponse(int sockfd, Header& h, char *pDados ) {
FILE *arquivo;
char nomeArquivo[MAX_NOME_ARQ];
int tamDados;
if(getRecebendo()){
if(h.tamDados == 0) {
setRecebendo(false);
printf("Download completo.\n");
RemoveMensagemResposta(GETR);
return;
}
getNomeArquivo(nomeArquivo);
arquivo = fopen(nomeArquivo, "a+");
if(arquivo){
if((tamDados = fwrite(pDados, (size_t) 1, (size_t) h.tamDados, arquivo)) != h.tamDados) {
setRecebendo(false);
printf("Download interrompido.\n");
fclose(arquivo);
remove(nomeArquivo);
return;
}
else {
incrementaPacotesRecebidos();
}
fclose(arquivo);
}
SetTimer( DadosAplicacao.intervaloTimeout, TIMER_GETR, 0 );
}
}
/*************************
EVENTOS DE TIMEOUT
*************************/
void trataTimerHello(){
int i;
Header h;
// Checa 'Hello's' recebidos.
// TODO
// Envia 'Hello's'.
for(i=0 ; i<MAX_VIZINHOS ; i++) {
if(vizinhos[i].sockfd > 0) {
createHeader(&h, HELLO, vizinhos[i].vizinho);
h.tamDados = 0;
if(!escrevePacote(vizinhos[i].sockfd, h, NULL))
puts("Erro no envio de HELLO");
}
}
SetTimer( DadosAplicacao.intervaloHello, TIMER_HELLO, 0 );
}
void trataTimerJoinR()
{
int qtdVizinhos;
RemoveMensagemResposta(JOINR);
defineVizinhos();
verificaTabelaVizinhosSocketsDesconhecidos();
qtdVizinhos = contaVizinhos();
#ifdef DEBUG
printf("\n\n");
puts("*****************************************");
puts("TABELA DE VIZINHOS");
puts("*****************************************");
onImprimeTabelaVizinho();
printf("\n\n");
#endif
InicializaTabelaTempVizinhos();
if (qtdVizinhos > 0)
SetTimer(DadosAplicacao.intervaloHello, TIMER_HELLO, 0);
if ( qtdVizinhos < MIN_VIZINHOS ){
// Disparo novo evento de entrada para conseguir mais vizinhos
#ifdef DEBUG_VIZINHOS
puts("Vou tentar encontrar novos vizinhos");
#endif
onEntrada();
}
}
void trataTimerSearchR()
{
RemoveMensagemResposta(SEARCHR);
#ifdef DEBUG_SEARCH
puts("******************************");
puts("DEFININDO SEARCH");
puts("******************************");
#endif
defineSearch();
// Aqui tenho que disparar a getmsg
}
void trataTimerGetR()
{
char nomeArquivo[MAX_NOME_ARQ];
decrementaPacotesRecebidos();
if(getRecebendo()) {
if(retornaPacotesRecebidos() == 0)
{
getNomeArquivo(nomeArquivo);
setRecebendo(false);
printf("Download interrompido.\n");
remove(nomeArquivo);
RemoveMensagemResposta(GETR);
}
}
}
void disparaHello()
{
Header hello;
IdPeer destino;
// Destino serah setado pela funcao distribui()
memset( &destino, 0, sizeof(IdPeer));
createHeader(&hello, HELLO, destino);
hello.tamDados = 0;
#ifdef DEBUG
printf("\n\n");
puts("*****************************************");
puts("Vou distribuir hello");
puts("*****************************************");
printf("\n");
#endif
distribui(hello, NULL);
}