This repository has been archived by the owner on Feb 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
160 lines (134 loc) · 5.2 KB
/
main.cpp
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
#include "buffer.h"
#include "docente.h"
#include "producao.h"
#include <string.h>
#include <iostream>
#include <stdlib.h>
#include <fstream>
using namespace std;
int main (int argv, char* argc[]){
int numeroDeArqRegras = 0;
char** regrasNomeArquivo = NULL;
int* anoEntrada = NULL;
int* anoSaida = NULL;
int opcao = 0;
do{
system("clear");
cout << "==================BAKER==================" << endl;
cout << "[1] Importar arquivo de regras " << endl;
cout << "[2] Sair " << endl;
cout << "=========================================" << endl;
cout << "Opcao: ";
cin >> opcao;
switch (opcao) {
case 1:{
system("clear");
int achouArquivo = 1;
cout << "=============================BAKER=========================================" << endl;
cout << "Quantos arquivos de regras devem ser importados? (0 = sair)" << endl;
do{
achouArquivo = 1;
int input;
do{
cin.ignore();
cout << "Numero: ";
cin >> input;
}while(input < 0);
if(input == 0 )
break;
regrasNomeArquivo = new char*[input];
anoEntrada = new int[input];
anoSaida = new int[input];
for(int i=0;i<input;i++){
regrasNomeArquivo[i] = new char[1024];
cout << "Nome do arquivo " << (i+1) << " :";
char* buffer = new char[1024];
cin >> buffer;
int menor;
do{
cout << "Filtro (Menor ano)" << (i+1) << " :";
cin >> menor;
}while(menor < 1966);
int maior;
do{
cout << "Filtro (Maior ano)" << (i+1) << " :";
cin >> maior;
}while(maior > 2018);
ifstream arquivo;
arquivo.open(buffer);
if(arquivo.is_open()){
cout << "Arquivo de regras " << buffer << " encontrado!" << endl;
strcpy(regrasNomeArquivo[i], buffer);
anoEntrada[i] = menor;
anoSaida[i] = maior;
arquivo.close();
}else{
cout << "Arquivo de regras " << buffer << " NÃO foi encontrado!" << endl;
for(int j=0; j< numeroDeArqRegras;j++){
delete[] regrasNomeArquivo[j];
}
delete[] regrasNomeArquivo;
input = -1;
achouArquivo = 0;
}
delete[] buffer;
}
if(achouArquivo != 0)
numeroDeArqRegras = input;
}while(achouArquivo != 1);
}
}
cin.ignore();
}while(opcao != 2 && numeroDeArqRegras < 1);
for(int i=0;i<numeroDeArqRegras;i++){
//Create a double linked list of all "docentes"
docente* docentes = loadAllDocentes("csv/docentes.csv");
//A binary search tree for producoes (key = docenteId/ Value = list of producao)
producao* producoes = loadAllProducoes("csv/producao_V2.csv");
//Create an array with all capes values
int* rules = loadAllRules(regrasNomeArquivo[i],22);
//Buffer files contain all valid "capes" and "orientações"
character* orientacoes = createBufferFile("csv/orientacao.csv");
character* congressos = createBufferFile("csv/qualis_capes_congressos.csv");
character* periodicos = createBufferFile("csv/qualis_capes_periodicos.csv");
//Remove the headers
removeFirstBufferLine(&orientacoes);
removeFirstBufferLine(&congressos);
//Load "area de avaliacao"
//const char* regrasCaminho = "regraComp";
char* areaAvaliacao = loadAreaAvaliacao(regrasNomeArquivo[i]);
//Will fill all give a pontuation to all variables of type "docente"
baker(&docentes, &producoes, rules, &orientacoes, congressos, periodicos, areaAvaliacao,"csv/orientacao.csv",anoEntrada[i],anoSaida[i]);
docentes = orderDocentes(docentes);
ofstream saidaCSV(areaAvaliacao);
while(docentes->next != NULL){
saidaCSV << docentes->name << endl;
cout << "("<< docentes->id << ") " << docentes->name << endl << " pontos:" << docentes->totalPoints << endl;
for(int i=0;i<22;i++){
saidaCSV << docentes->points[i];
if(i != 21)
saidaCSV << ',';
cout << i << ": " << docentes->points[i] << endl;
}
saidaCSV << endl;
saidaCSV << docentes->totalPoints << endl;
docentes = docentes->next;
}
cout << "("<< docentes->id << ") " << docentes->name << endl << " pontos:" << docentes->totalPoints << endl;
saidaCSV << docentes->name << endl;
for(int i=0;i<22;i++){
saidaCSV << docentes->points[i];
if(i != 21)
saidaCSV << ',';
cout << i << ": " << docentes->points[i] << endl;
}
saidaCSV << endl;
saidaCSV << docentes->totalPoints << endl;
saidaCSV.close();
destroyBufferFile(&orientacoes);
destroyBufferFile(&congressos);
destroyBufferFile(&periodicos);
delete[] rules;
}
return 0;
}