WIP: Rework DataMan constructors.

Method to get all saved times.
    Not working.
This commit is contained in:
HeshamTB 2020-12-14 06:28:18 +03:00
parent 270e89ee5b
commit 9280a5b4b3
Signed by: Hesham
GPG Key ID: 74876157D199B09E
2 changed files with 28 additions and 27 deletions

View File

@ -6,19 +6,10 @@ import java.util.Date;
public class DataManeger {
private Path workingDir;
private File workingDir;
// public DataManeger(Path path) {
// this.seperator = File.separatorChar;
// this.workingDir = path;
// }
public DataManeger(State state, Date time){
Path dir = Paths.get("");
}
public DataManeger() {
this(null, null);
public DataManeger(){
workingDir = new File(".");
}
public boolean stateAvailable(Date time) {
@ -31,7 +22,7 @@ public class DataManeger {
if (stateAvailable(time)){
try {
ObjectInputStream objectInputStream = new ObjectInputStream(
new FileInputStream(String.format("0x%016X.bin", time.getTime())));
new FileInputStream(String.format("%016X.bin", time.getTime())));
state = (State)objectInputStream.readObject();
objectInputStream.close();
} catch (IOException | ClassNotFoundException e) {
@ -43,7 +34,7 @@ public class DataManeger {
public boolean saveState(State state, Date time){
try {
FileOutputStream fs = new FileOutputStream(String.format("0x%016X.bin", time.getTime()));
FileOutputStream fs = new FileOutputStream(String.format("%016X.bin", time.getTime()));
BufferedOutputStream bfs = new BufferedOutputStream(fs);
ObjectOutputStream objectOutputStream = new ObjectOutputStream(bfs);
objectOutputStream.writeObject(state);
@ -54,6 +45,26 @@ public class DataManeger {
}
return true;
}
public File[] savedStateFiles() {
return workingDir.listFiles();
}
public Date[] savedStatesTimes() {
File[] files = savedStateFiles();
ArrayList<Date> timesList = new ArrayList<>();
for (File file : files){
if (file.getName().contains(".bin")){
String timeInName = file.getName().replaceAll(".bin", "").trim();
if ("".equals(timeInName)) continue;
long time = Long.parseLong(timeInName, 16);
timesList.add(new HijriDate(time));
}
}
Date[] times = new Date[timesList.size()];
times = timesList.toArray(times);
return times;
}
}
class State implements Serializable {

View File

@ -209,12 +209,12 @@ public class MakkahCity {
btnBrowseHistory.setForeground(Color.white);
//Label
JLabel lblStreets = new JLabel("Streets History");
JLabel lblStreets = new JLabel("Streets");
lblStreets.setFont(new Font("Rockwell", Font.PLAIN, 24));
lblStreets.setForeground(new Color(255, 255, 255));
lblStreets.setBounds(49, 59, 208, 30);
JLabel lblDistrict = new JLabel("District History");
JLabel lblDistrict = new JLabel("District");
lblDistrict.setFont(new Font("Rockwell", Font.PLAIN, 24));
lblDistrict.setForeground(new Color(255, 255, 255));
lblDistrict.setBounds(49, 438, 166, 29);
@ -472,17 +472,6 @@ public class MakkahCity {
startMenu();
}
private static Vehicle traceCar() {
for(int x = 20000; x < listOfVehicles.size(); x++) {
if(listOfVehicles.get(x) instanceof Bus)
if(((Bus)listOfVehicles.get(x)).getCampaign().getHotelDistrict() == District.ALAZIZIYA) {
return listOfVehicles.get(x);
}
}
return null;
}
private static void checkInput() {
String input = "";
if (exit_flag) System.exit(0);
@ -1175,6 +1164,7 @@ public class MakkahCity {
allArrivedToHotelsTime);
DataManeger dataManeger = new DataManeger();
dataManeger.saveState(s, currenttimeManager.getCurrentTime());
System.out.println(Arrays.toString(dataManeger.savedStatesTimes())); //TODO FOR DEBUG REMOVE
boolean result = dataManeger.saveState(s, currenttimeManager.getCurrentTime());
if (!result) System.out.println("Could not save state "+currenttimeManager.getCurrentTime().getTime());