-
Notifications
You must be signed in to change notification settings - Fork 0
/
CarDB.java
236 lines (190 loc) · 8.57 KB
/
CarDB.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
package P8;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.*;
public class CarDB {
// Mapa para almacenar los coches
LinkedHashMap<String, Car> cityCars;
// Constructor vacío
public CarDB() {
cityCars = new LinkedHashMap<>();
}
// Método que lee los coches del fichero indicado y los almacena en el mapa,
// siempre y cuando sus datos sean correctos
public void readCityCarsFile(String filename) throws FileNotFoundException {
// Se crea un objeto File
File archivo = new File(filename);
// Se comprueba si el fichero existe
if (!archivo.exists()) {
System.out.println("No existe tal fichero");
return; // Se termina el programa en caso de no haber fichero
}
// Se crea un objeto Scanner para leer el archivo
Scanner input = new Scanner(archivo);
// Se lee línea por línea
while (input.hasNext()) {
String linea = input.nextLine();
// Si la línea empieza por '#', se considera un comentario y se ignora
if (linea.startsWith("#")) {
continue;
}
// Se separa la línea por donde había un ';'
String[] partes = linea.split(";");
// Un caso diferente para cada tipo de motor
switch (partes[0]) {
// Para motores de combustión
case "C":
// Se comprueba si los datos son correctos, y en caso afirmativo, se crea el
// coche y se añade al mapa
if (Car.isValidPlate(partes[1]) && CombustionCar.isValidPower(Integer.parseInt(partes[3]))) {
cityCars.put(partes[1], new CombustionCar(partes[1], partes[2], Integer.parseInt(partes[3])));
}
break;
// Para motores eléctricos
case "E":
// Se comprueba si los datos son correctos, y en caso afirmativo, se crea el
// coche y se añade al mapa
if (Car.isValidPlate(partes[1]) && ElectricCar.isValidPower(Integer.parseInt(partes[3]))
&& ElectricCar.isValidBattery(Float.parseFloat(partes[4].replace(',', '.')))) {
cityCars.put(partes[1], new ElectricCar(partes[1], partes[2], Integer.parseInt(partes[3]),
Float.parseFloat(partes[4].replace(',', '.'))));
}
break;
// Para motores híbridos
case "H":
// Se comprueba si los datos son correctos, y en caso afirmativo, se crea el
// coche y se añade al mapa
if (Car.isValidPlate(partes[1]) && HybridCar.isValidMechanicalPower(Integer.parseInt(partes[3]))
&& HybridCar.isValidElectricPower(Integer.parseInt(partes[4]))
&& HybridCar.isValidBattery(Float.parseFloat(partes[5].replace(',', '.')))) {
cityCars.put(partes[1], new HybridCar(partes[1], partes[2], Integer.parseInt(partes[3]),
Integer.parseInt(partes[4]), Float.parseFloat(partes[5].replace(',', '.'))));
}
break;
}
}
// Se cierra el Scanner
input.close();
}
// Método que busca un coche a partir de una matrícula
public Car getCarFromPlate(String plate) {
return cityCars.get(plate);
}
// Método que calcula la suma total de potencia
public int computeTotalPower() {
// Contador de la potencia total
int potencia = 0;
// Se recorre el mapa de coches y se suman sus respectivas potencias
for (Car car : cityCars.values()) {
potencia = potencia + car.getTotalPower();
}
return potencia;
}
// Método que calcula el nivel de batería medio
public float computeAverageBatteryLevel() {
// Contador de coches (eléctricos + híbridos)
int i = 0;
// Contador de la batería total
float bateria = 0;
// Se recorre el mapa de coches sumando las baterías de los eléctricos e
// híbridos
for (Car car : cityCars.values()) {
if (car instanceof ElectricCar) {
bateria = bateria + ((ElectricCar) car).getBatteryCharge();
i++;
} else if (car instanceof HybridCar) {
bateria = bateria + ((HybridCar) car).getBatteryCharge();
i++;
}
}
// Cálculo de la media
return bateria / i;
}
// Método que imprime la lista de coches en un archivo
public void saveCarsToFile(String filename) throws FileNotFoundException {
// Se crea un objeto File con el nombre indicado
File archivo = new File(filename);
// Se crea el archivo
PrintWriter fichero = new PrintWriter(archivo);
// Se recorre el mapa de coches y se imprimen en el archivo uno a uno
for (Car car : cityCars.values()) {
fichero.println(car);
}
// Se cierra el PrintWriter
fichero.close();
}
// Método que actualiza el nivel de batería de coches eléctricos e híbridos en
// función del tiempo dentro del parking
public float increaseCarBatteryChargeLevel(String plate, String entryTime, String departureTime) {
// Se busca el coche en el mapa
Car car = getCarFromPlate(plate);
// Se calcula el tiempo que pasó dentro del parking
float time = intervalInHours(entryTime, departureTime);
float chargeTime = computeCarChargeTime(plate, time);
// Se actualiza su nivel de batería si es un coche eléctrico o híbrido
if (car instanceof ElectricCar) {
((ElectricCar) car).increaseBatteryChargeLevel(time);
} else if (car instanceof HybridCar) {
((HybridCar) car).increaseBatteryChargeLevel(time);
}
return chargeTime * ElectricCharger.POWER;
}
// Método que calcula el tiempo entre dos horas
public static float intervalInHours(String inTime, String outTime) {
int hi = Integer.parseInt(inTime.split(":")[0].trim());
int mi = Integer.parseInt(inTime.split(":")[1].trim());
int ho = Integer.parseInt(outTime.split(":")[0].trim());
int mo = Integer.parseInt(outTime.split(":")[1].trim());
int dif = (ho * 60 + mo) - (hi * 60 + mi);
return ((float) dif / 60);
}
// Método que ordena el mapa de coches por matrícula
public void sortByPlate() {
// Se crea una lista a partir del mapa de coches
ArrayList<Car> lista = new ArrayList<>(cityCars.values());
// Se ordena la lista por matrícula
Collections.sort(lista);
// Se vacía el mapa de coches
cityCars.clear();
// Se añaden los coches de la lista al mapa, una vez ordenados
for (Car car : lista) {
cityCars.put(car.getPlate(), car);
}
}
// Método que ordena el mapa de coches por nivel de batería, o por matrícula en
// caso de mismo nivel
public void sortByBatteryChargeAndPlate() {
// Se crea una lista a partir del mapa de coches
ArrayList<Car> lista = new ArrayList<>(cityCars.values());
// Se ordena la lista por nivel de batería
lista.sort(new CarComparatorByBatteryLevelAndPlate());
// Se vacía el mapa de coches
cityCars.clear();
// Se añaden los coches de la lista al mapa, una vez ordenados
for (Car car : lista) {
cityCars.put(car.getPlate(), car);
}
}
public float computeCarChargeTime(String plate, float parkingDuration) {
Car car = getCarFromPlate(plate);
float initialBatteryLevel;
int BATTERY_CAPACITY;
if (car instanceof CombustionCar) {
return 0;
} else if (car instanceof ElectricCar) {
initialBatteryLevel = ((ElectricCar) car).getBatteryCharge();
BATTERY_CAPACITY = ElectricCar.BATTERY_CAPACITY;
} else {
initialBatteryLevel = ((HybridCar) car).getBatteryCharge();
BATTERY_CAPACITY = HybridCar.BATTERY_CAPACITY;
}
int CHARGER_POWER = ElectricCharger.POWER;
float maxChargeTime = (100 - initialBatteryLevel) / 100 * ((float) BATTERY_CAPACITY / CHARGER_POWER);
if (parkingDuration > maxChargeTime) {
return maxChargeTime;
} else {
return parkingDuration;
}
}
}