-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRede.java
executable file
·140 lines (118 loc) · 3.18 KB
/
Rede.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
package novo_tp_poo;
/**
* Classe Rede de utilizadores.
*
* @author Grupo22
* @version 1.0
*/
import java.util.*;
import java.io.*;
public class Rede implements Serializable
{
private TreeMap<String,Utilizador> utilizadores;
/**
* Construtores
* 1 - Vazio
*/
public Rede() {
this.utilizadores = new TreeMap<String,Utilizador>();
}
/**
* 2 - Copia
*/
public Rede(Rede r) {
this.utilizadores = r.getUtilizadores();
}
/**
* Metodos
* 1 - Gets
*/
public TreeMap<String,Utilizador> getUtilizadores() {
TreeMap<String,Utilizador> aux = new TreeMap<String,Utilizador>();
for(Utilizador u : this.utilizadores.values()) {
aux.put(u.getEmail(),u.clone());
}
return aux;
}
public Utilizador getUtilizador(String email) {
return this.utilizadores.get(email);
}
/**
* 2 - Existe utilizador
*/
public boolean existeUtilizador(String email) {
return this.utilizadores.containsKey(email);
}
/**
* 3 - Adicionar/Remover utilizadores
*/
public void addUtilizador(Utilizador u) throws Excepcoes {
if(this.utilizadores.containsKey(u.getEmail())) {
throw new Excepcoes(u.getEmail());
} else {
this.utilizadores.put(u.getEmail(),u.clone());
}
}
public void addUtilizadores(Set<Utilizador> utl) throws Excepcoes {
for(Utilizador u : utl) {
this.utilizadores.put(u.getEmail(),u.clone());
}
}
public void remUtilizador(String email) throws Excepcoes {
if(existeUtilizador(email)) {
utilizadores.remove(email);
} else {
throw new Excepcoes(email);
}
}
/**
* 4 - toString
*/
public String toString() {
StringBuilder sb = new StringBuilder("--- Utilizadores ---\n");
for(Utilizador u : this.utilizadores.values()) {
sb.append(u.toString() + "\n");
}
return sb.toString();
}
/**
* 5 - Equals
*/
public boolean equals(Object obj) {
if(this == obj) {return true;}
if((obj == null) || (this.getClass() != obj.getClass())) {
return false;
}
Rede r = (Rede) obj;
return this.utilizadores.equals(r.getUtilizadores());
}
/**
* 6 - Clone
*/
public Rede clone() {
return new Rede(this);
}
/**
* 7 - Guardar em ficheiro
*/
public void gravaObj() throws IOException {
FileOutputStream estado = new FileOutputStream("Estado.ser");
ObjectOutputStream oos = new ObjectOutputStream(estado);
oos.writeObject(utilizadores);
oos.flush();
oos.close();
}
/**
* 8 - Carregar ficheiro
*/
public void carregaObj() throws IOException {
try{
FileInputStream carreg = new FileInputStream("Estado.ser");
ObjectInputStream ois = new ObjectInputStream(carreg);
utilizadores = new TreeMap<String,Utilizador>((TreeMap<String,Utilizador>)ois.readObject());
ois.close();
} catch(Throwable e){
System.out.println("ERRO: " + e.getMessage());
}
}
}