This repository has been archived by the owner on Sep 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGestorBaseDados.java
291 lines (271 loc) · 9.09 KB
/
GestorBaseDados.java
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
package poop;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.Arrays;
/**
* Classe que cria uma abstracao para criar e ler ficheiros de objeto (usados na plataforma).
* Lê tambem um ficheiro de configuração com Locais e Pessoas que podem ser alterados. Estes dados são gravados na base de dados assim que há a primeira inscricao.
* @author JoaquimFerrer Henrique Ferrer
*/
public class GestorBaseDados {
private final String pessoasPath = "./bd/pessoas/";
private final String locaisPath = "./bd/locais/";
private final String inscricoesPath = "./bd/inscricoes/";
private final String informacaoInicialPath = "./bd/InformacaoInicial.txt";
public GestorBaseDados() {}
/**
* Lê as pessoas escritas na base de dados e devolve-os-
* @return Pessoas na base de dados
*/
@SuppressWarnings("unchecked")
public ArrayList<Pessoa> loadPessoas() {
ArrayList<Pessoa> res = new ArrayList<Pessoa>();
File dir = new File(inscricoesPath);
File[] directoryListing = dir.listFiles();
if(directoryListing.length == 0) {
res.addAll(parsePessoas());
}
res.addAll((ArrayList<Pessoa>) readAllFromPath(pessoasPath));
return res;
}
/**
* Lê os locais escritos na base de dados e devolve-os
* @return Locais na base de dados
*/
@SuppressWarnings("unchecked")
public ArrayList<Local> loadLocais() {
ArrayList<Local> res = new ArrayList<Local>();
File dir = new File(inscricoesPath);
File[] directoryListing = dir.listFiles();
if(directoryListing.length == 0) {
res.addAll(parseLocais());
}
res.addAll((ArrayList<Local>) readAllFromPath(locaisPath));
return res;
}
/**
* Lê as inscricoes na base de dados e devolve-os
* @return Inscricoes na base de dados.
*/
@SuppressWarnings("unchecked")
public ArrayList<Inscricao> loadInscricoes() {
return (ArrayList<Inscricao>) readAllFromPath(inscricoesPath);
}
/**
* Guarda uma pessoa na base de dados.
* @param p Pessoa a guardar
* @return Se conseguiu guardar a pessoa com sucesso
*/
public boolean savePessoa(Pessoa p) {
return saveObject(p, pessoasPath + p.getNumCc());
}
//SO FUNCIONA SEM BUGS SE FOR IMPOSSIVEL REMOVER INSCRICOES
/**
* Guarda uma inscricao na base de dados. Se não ainda houver inscricoes então guarda todos os objectos descritos no ficheiro de configuracao na base de dados.
* @param i Inscricao a guardar
* @return Se conseguiu guardar a inscricao com sucesso
*/
public boolean saveInscricao(Inscricao i) {
File dir = new File(inscricoesPath);
File[] directoryListing = dir.listFiles();
if(directoryListing.length == 0) {
ArrayList<Local> locaisIniciais = parseLocais();
ArrayList<Pessoa> pessoasIniciais = parsePessoas();
for(Local l : locaisIniciais) {
saveLocal(l);
}
for(Pessoa p : pessoasIniciais) {
savePessoa(p);
}
}
return saveObject(i, inscricoesPath + i.getPessoa().getNumCc() + i.getLocal().getCoordenadas());
}
/**
*
* @param l Local a guardar
* @return Se conseguiu guardar o Local com sucesso.
*/
public boolean saveLocal(Local l) {
return saveObject(l, locaisPath + l.getCoordenadas());
}
//Guarda um objeto no path especificado
private boolean saveObject(Object o, String path) {
try {
FileOutputStream fileStream = new FileOutputStream(new File(path));
ObjectOutputStream objectStream = new ObjectOutputStream(fileStream);
objectStream.writeObject(o);
objectStream.close();
fileStream.close();
}
catch(Exception exc) {
exc.printStackTrace();
return false;
}
return true;
}
//Le todos os objetos dum ficheiro
private ArrayList<?> readAllFromPath(String path) {
ArrayList<Object> res = new ArrayList<Object>();
File dir = new File(path);
File[] directoryListing = dir.listFiles();
for (File child : directoryListing) {
Object o = readObjectFromFile(child);
res.add(o);
}
return res;
}
//Le objeto dum ficheiro e devolve-o
private Object readObjectFromFile(File f) {
try {
FileInputStream fs = new FileInputStream(f);
ObjectInputStream objectIn = new ObjectInputStream(fs);
Object obj = objectIn.readObject();
objectIn.close();
return obj;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
//Le os locais do ficheiro de configuraçoes e devolve-os.
//Os locais devem ser precedidos por uma linha "LOCAIS:"
private ArrayList<Local> parseLocais() {
ArrayList<Local> res = new ArrayList<Local>();
try {
BufferedReader fR = new BufferedReader(new FileReader(informacaoInicialPath));
String line;
boolean start = false;
while((line = fR.readLine()) != null) {
if(!start && !line.equals("LOCAIS:")) {
continue;
}
else if(!start && line.equals("LOCAIS:")) {
start = true;
continue;
}
else if(start && line.equals("PESSOAS")) {
return res;
}
String[] information = line.split("\t");
if(information[0].equals("Bar")) {
res.add(new Bar(information[1], Integer.parseInt(information[2]), Double.parseDouble(information[3])));
}
else if(information[0].equals("Exposicao")) {
res.add(new Exposicao(information[1], information[2], Double.parseDouble(information[3])));
}
else if(information[0].equals("AreaDesportiva")) {
ArrayList<String> desportos = new ArrayList<String>();
desportos.addAll(Arrays.asList(information[2].split(",")));
res.add(new AreaDesportiva(information[1], desportos));
}
else if(information[0].equals("Jardim")) {
res.add(new Jardim(information[1], Double.parseDouble(information[2])));
}
}
}
catch(FileNotFoundException e) {
System.out.println("O ficheiro de informacao inicial nao existe");
return res;
}
catch(IOException e) {
System.out.println("Erro a ler o ficheiro com as informaçoes iniciais");
return res;
}
return res;
}
private ArrayList<Pessoa> parsePessoas() {
ArrayList<Pessoa> res = new ArrayList<Pessoa>();
try {
BufferedReader fR = new BufferedReader(new FileReader(informacaoInicialPath));
String line;
boolean start = false;
while((line = fR.readLine()) != null) {
if(!start && !line.equals("PESSOAS:")) {
continue;
}
else if(!start && line.equals("PESSOAS:")) {
start = true;
continue;
}
String[] information = line.split("\t");
if(information[0].equals("Estudante")) {
res.add(new Estudante(getCursoDei(information[1]), information[2], information[3], information[4], getPerfil(information[5])));
}
else if(information[0].equals("Funcionario")) {
res.add(new Funcionario(getTipoFuncionario(information[1]), information[2], information[3], information[4], getPerfil(information[5])));
}
else if(information[0].equals("Professor")) {
res.add(new Professor(getTipoProfessor(information[1]), information[2], information[3], information[4], getPerfil(information[5])));
}
}
}
catch(FileNotFoundException e) {
System.out.println("O ficheiro de informacao inicial nao existe");
return res;
}
catch(IOException e) {
System.out.println("Erro a ler o ficheiro com as informaçoes iniciais");
return res;
}
return res;
}
//Transforma uma string no tipo de professor correspondente
private TipoProfessor getTipoProfessor(String str) {
if(str.equals("Auxiliar")) {
return TipoProfessor.AUXILIAR;
}
else if(str.equals("Catedratico")) {
return TipoProfessor.CATEDRATICO;
}
else {
return TipoProfessor.ASSOCIADO;
}
}
//Transforma uma string no perfil correspondente
private Perfil getPerfil(String str) {
if(str.equals("BOEMIO")) {
return Perfil.BOEMIO;
}
else if(str.equals("CULTURAL")) {
return Perfil.CULTURAL;
}
else if(str.equals("POUPADINHO")) {
return Perfil.POUPADINHO;
}
else {
return Perfil.DESPORTIVO;
}
}
//Transforma uma string no tipo de funcionario correspondente
private TipoFuncionario getTipoFuncionario(String str) {
if(str.equals("PARTTIME")) {
return TipoFuncionario.FULLTIME;
}
else {
return TipoFuncionario.PARTTIME;
}
}
//Transforma uma string no curso do dei correspondente
private CursoDei getCursoDei(String str) {
if(str.equals("LEI")) {
return CursoDei.LEI;
}
else if(str.equals("MEI")) {
return CursoDei.MEI;
}
else if(str.equals("LDM")) {
return CursoDei.LDM;
}
else {
return CursoDei.MDM;
}
}
}