-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleituraPm.c
78 lines (65 loc) · 2.54 KB
/
leituraPm.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "leituraQry.h"
#include "quadTree.h"
#include "hashTable.h"
#include "leituraPm.h"
#include "pessoa.h"
#include "endereco.h"
#include "processaGeo.h"
/*
CHAVE X VALOR
HASHTABLE 0 cpf X endereço: -M (PM)
HASHTABLE 1 tipo-estabelecimento-comercial X descrição: - T (EC)
HASHTABLE 2 cpf X Pessoa - P (PM)
HASHTABLE 3 cep X quadra: - QUADRA (GEO)
*/
enum LISTAS{CIRCULO, RETANGULO, TEXTO, QUADRA, HIDRANTE, SEMAFORO, RADIOBASE, POSTOSAUDE, LINHA, LOCALCASOS, POLIGONO, ESTABELECIMENTO, ENDERECOS};
enum HASHTABLE{CPF_ENDERECO, TIPO_DESCRICAO, CPF_DADOS, CEP_QUADRA};
void readPm(QuadTree* qt, HashTable* ht, char* dirPm){
DoublyLinkedList listaEnderecos = create();
DoublyLinkedList listaEnderecos2 = create();
FILE* filePm = NULL;
filePm = fopen(dirPm, "r");
if(!filePm){
exit(1);
}
printf("\nArquivo PM aberto com sucesso!");
//Parametros
char comando[200], cpf[300], nome[300], sobrenome[300], sexo, nasc[110], cep[200], face[100], compl[100];
int num;
while(1){
fscanf(filePm, "%s", comando);
if(feof(filePm)){
break;
}
else if(strcmp(comando, "p") == 0){
fscanf(filePm, "%s %s %s %c %s", cpf, nome, sobrenome, &sexo, nasc);
Pessoa pessoa = criaPessoa(cpf, nome, sobrenome, sexo, nasc);
char* pessoaCpf = (char*)malloc(sizeof(char) * (strlen(cpf) + 1));
strcpy(pessoaCpf, cpf);
insertValueHashTable(ht[CPF_DADOS], pessoaCpf, pessoa);
}
else if(strcmp(comando, "m") == 0){
fscanf(filePm, "%s %s %s %d %s", cpf, cep, face, &num, compl);
Quadra qAux = getInfoByIdQt(qt[QUADRA], cep);
if(qAux == NULL){
return;
}
Endereco endereco = criaEndereco(qAux, cpf, faceToChar(face), num, compl);
Endereco endereco2 = criaEndereco(qAux, cpf, faceToChar(face), num, compl);
insert(listaEnderecos, endereco);
insert(listaEnderecos2, endereco2);
}
}
qt[ENDERECOS] = criaQt(enderecoGetCpf);
DoublyLinkedListToQuadTree(listaEnderecos2, qt[ENDERECOS], enderecoGetPoint, enderecoSwap);
for(Node aux = getFirst(listaEnderecos); aux != NULL; aux = getNext(aux)){
Endereco endereco = getInfo(aux);
insertValueHashTable(ht[CPF_ENDERECO], enderecoGetCpf(endereco), endereco);
}
removeList(listaEnderecos, 0);
removeList(listaEnderecos2, 0);
fclose(filePm);
}