-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cpp
179 lines (168 loc) · 6.49 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#include "Comandos.h"
#include "btree.h"
#include <algorithm>
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
#define SUCCESS 0
#define FINISH_PROGRAM 1
int interpretadorDeComandos (Comandos &comando, string &input, int modo_interativo, string &tab_ultima_busca, vector<int> &vet_busca) {
string palavra_chave;
palavra_chave = comando.retornaPalavraDeInput(input, ' ');
// Transformar comando para UPPER (retirar case sensitiviness)
transform(palavra_chave.begin(), palavra_chave.end(), palavra_chave.begin(), ::toupper);
if (palavra_chave == "CT") {
string tabela = comando.retornaPalavraDeInput(input, ' ');
string *campos = comando.parseCampoCT(input);
if (campos != NULL){
return comando.criarArquivoComNomeTabela(tabela, campos);
}
else
cout << "Campos Invalidos, tente novamente!" << endl;
}
else if (palavra_chave == "RT") {
string tabela = comando.retornaPalavraDeInput(input, ' ');
if (tabela.length() > 0) {
return comando.apagaArquivoComNomeTabela(tabela);
} else {
cout << "Erro: entrada incompleta." << "\n";
}
}
else if (palavra_chave == "AT") {
string tabela = comando.retornaPalavraDeInput(input, ' ');
if (tabela.length() > 0) {
comando.resumoDaTabela(tabela);
} else {
cout << "Erro: entrada incompleta." << "\n";
}
}
else if (palavra_chave == "LT") {
comando.listarTabelas();
}
else if (palavra_chave == "IR") {
string tabela = comando.retornaPalavraDeInput(input, ' ');
input.erase(0, 1);
string registro = comando.retornaPalavraDeInput(input, '\n', false);
if (tabela.length() > 0 && registro.length() > 0) {
comando.inserirRegistro(tabela, registro);
} else {
cout << "Erro: entrada incompleta." << "\n";
}
}
else if (palavra_chave == "BR") {
string modifier = comando.retornaPalavraDeInput(input, ' ');
transform(modifier.begin(), modifier.end(), modifier.begin(), ::toupper);
string tabela = comando.retornaPalavraDeInput(input, ' ');
string busca = comando.retornaPalavraDeInput(input, ';');
if (tabela.length() > 0 && modifier.length() > 0 && busca.length() > 0) {
tab_ultima_busca = tabela;
comando.buscaEmTabela(modifier, tabela, busca);
for (int i = 0; i < vet_busca.size(); i++)
cout << vet_busca.at(i) << ' ';
cout << "<" << endl;
} else
cout << "Erro: entrada incompleta." << "\n";
}
else if (palavra_chave == "AR") {
string tabela = comando.retornaPalavraDeInput(input, ' ');
if (tabela.length() > 0) {
comando.apresentarRegistrosUltimaBusca(tabela);
} else {
cout << "Erro: entrada incompleta." << "\n";
}
}
else if (palavra_chave == "RR") {
string tabela = comando.retornaPalavraDeInput(input, ' ');
if (tabela.length() > 0) {
if (tab_ultima_busca == tabela)
comando.removeRegistrosUltimaBusca(tabela);
else
cout << "Erro: a ultima busca nao corresponde a tabela:" << tabela << endl;
} else {
cout << "Erro: entrada incompleta." << "\n";
}
}
else if (palavra_chave == "CI") {
string modifier = comando.retornaPalavraDeInput(input, ' ');
transform(modifier.begin(), modifier.end(), modifier.begin(), ::toupper);
string tabela = comando.retornaPalavraDeInput(input, ' ');
string chave = comando.retornaPalavraDeInput(input, ' ');
if (tabela.length() > 0 && modifier.length() > 0 && chave.length() > 0) {
return comando.criaIndice(modifier, tabela, chave);
} else {
cout << "Erro: entrada incompleta." << "\n";
}
}
else if (palavra_chave == "RI") {
string tabela = comando.retornaPalavraDeInput(input, ' ');
string chave = comando.retornaPalavraDeInput(input, ' ');
if (tabela.length() > 0 && chave.length() > 0) {
comando.removeIndiceChave(tabela, chave);
} else {
cout << "Erro: entrada incompleta." << "\n";
}
}
else if (palavra_chave == "GI") {
string tabela = comando.retornaPalavraDeInput(input, ' ');
string chave = comando.retornaPalavraDeInput(input, ' ');
if (tabela.length() > 0 && chave.length() > 0) {
comando.geraNovoIndiceDeTabelaChave(tabela, chave);
} else {
cout << "Erro: entrada incompleta." << "\n";
}
}
else if (palavra_chave == "EB") {
cout << "Finalizando a execução... Tenha um ótimo dia." << '\n';
return FINISH_PROGRAM;
}
else if (palavra_chave == "" && modo_interativo) {
cout << "Finalizando execução.\n\n";
return FINISH_PROGRAM;
}
else {
cout << "Comando não reconhecido." << "\n";
if (modo_interativo) {
cout << "Use o comando CT para criar um arquivo vazio associado à tabela indicada " << "\n"
<< "Use o comando RT para apagar o arquivo relativo à tabela indicada." << "\n"
<< "Use o comando AT para apresentar um resumo dos metadados da tabela indicada." << "\n"
<< "Use o comando LT para listar o nome de todas as tabelas existentes." << "\n"
<< "Use o comando IR para inserir o registro no arquivo da tabela indicada." << "\n"
<< "Use o comando BR para buscar na tabela todos os registros que satisfaçam o critério da busca." << "\n"
<< "Use o comando AR para apresentar na tela os valores dos registros retornado pela última busca." << "\n"
<< "Use o comando RR para remover todos os registros da última busca realizada." << "\n"
<< "Use o comando CI para criar um indice usando a chave indicada como chave de busca." << "\n"
<< "Use o comando RI para remover o índice relativo à chave indicada." << "\n"
<< "Use o comando GI para gerar novamente um novo índice de tabela referente à chave indicada." << "\n"
<< "Use o comando EB para encerrar a execução do programa." << "\n";
}
}
return SUCCESS;
}
int main(int argc, char *argv[]) {
Comandos comando;
string input = "";
string tab_ultima_busca;
vector<int> vet_busca;
int code_result = SUCCESS;
if(argv[1] != NULL){
cout << "Modo arquivo, trabalhando com: " << argv[1] << endl;
ifstream myfile(argv[1]);
if(myfile.is_open()){
while(getline(myfile, input) && code_result != FINISH_PROGRAM){
code_result = interpretadorDeComandos(comando, input, 0,tab_ultima_busca,vet_busca);
}
}
else{
cout << "Erro ao abrir arquivo.\n Finalizando Execução.\n";
}
}
else{
while (code_result != FINISH_PROGRAM) {
cout << ">>> ";
getline(cin, input);
code_result = interpretadorDeComandos(comando, input,1,tab_ultima_busca,vet_busca);
}
}
return 0;
}