This repository was archived by the owner on Jun 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLevelDbDriver.java
253 lines (221 loc) · 7.9 KB
/
LevelDbDriver.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
package it.unipi.RoomBooking.Database;
import org.iq80.leveldb.*;
import it.unipi.RoomBooking.Data.NORM.Available;
import it.unipi.RoomBooking.Data.NORM.Booked;
import static org.fusesource.leveldbjni.JniDBFactory.*;
import java.io.*;
import java.util.ArrayList;
import java.util.Collection;
public class LevelDbDriver {
private static DB levelDb;
private static Options options;
/* Please check the correct configuration before running */
private static String availablePath = "./src/available"; //Windows Path: .\\src\\available
private static String bookingsPath = "./src/bookings"; //Windows Path: .\\src\\bookings
public void start() {
options = new Options();
options.compressionType(CompressionType.NONE);
options.createIfMissing(true);
}
public void exit() {
try {
factory.destroy(new File(availablePath), options);
factory.destroy(new File(bookingsPath), options);
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
public void putAvailable(String roomType, long roomId, String roomName, String buildingName, int capacity,
String available) throws IOException {
try {
levelDb = factory.open(new File(availablePath), options);
String keyName = roomType + ":" + roomId + ":roomname";
levelDb.put(bytes(keyName), bytes(roomName));
String keyBuilding = roomType + ":" + roomId + ":buildingname";
levelDb.put(bytes(keyBuilding), bytes(buildingName));
String keyCapacity = roomType + ":" + roomId + ":roomcapacity";
levelDb.put(bytes(keyCapacity), bytes(Integer.toString(capacity)));
String keyAvailable = roomType + ":" + roomId + ":available";
levelDb.put(bytes(keyAvailable), bytes(available));
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
}
public void deleteFromAvailable(String roomType, long roomId) throws IOException {
try {
levelDb = factory.open(new File(availablePath), options);
String keyName = roomType + ":" + roomId + ":roomname";
levelDb.delete(bytes(keyName));
String keyBuilding = roomType + ":" + roomId + ":buildingname";
levelDb.delete(bytes(keyBuilding));
String keyCapacity = roomType + ":" + roomId + ":roomcapacity";
levelDb.delete(bytes(keyCapacity));
String keyAvailable = roomType + ":" + roomId + ":available";
levelDb.delete(bytes(keyAvailable));
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
}
public void increaseLaboratoryAvailability(long roomId) throws IOException {
try {
levelDb = factory.open(new File(availablePath), options);
String key = "lab:" + roomId + ":available";
int seats = Integer.parseInt(asString(levelDb.get(bytes(key)))) + 1;
levelDb.put(bytes(key), bytes(Integer.toString(seats)));
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
}
public void decreaseLaboratoryAvailability(long roomId) throws IOException {
try {
levelDb = factory.open(new File(availablePath), options);
String key = "lab:" + roomId + ":available";
int seats = Integer.parseInt(asString(levelDb.get(bytes(key)))) - 1;
levelDb.put(bytes(key), bytes(Integer.toString(seats)));
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
}
public void setClassroomAvailability(long roomId) throws IOException {
try {
levelDb = factory.open(new File(availablePath), options);
String key = "cla:" + roomId + ":available";
levelDb.put(bytes(key), bytes("f"));
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
}
public void updateClassroomAvailability(long roomId, String requestedSchedule) throws IOException {
try {
levelDb = factory.open(new File(availablePath), options);
levelDb.delete(bytes("cla:" + roomId + ":available"));
if (requestedSchedule.equals("m")) {
levelDb.put(bytes("cla:" + roomId + ":available"), bytes("a"));
} else {
levelDb.put(bytes("cla:" + roomId + ":available"), bytes("m"));
}
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
}
public void putBooked(long userId, String roomType, long roomId, String roomName, String schedule)
throws IOException {
try {
levelDb = factory.open(new File(bookingsPath), options);
String keyName = roomType + ":" + userId + ":" + roomId + ":roomname";
levelDb.put(bytes(keyName), bytes(roomName));
if (roomType.equals("cla")) {
String keySchedule = roomType + ":" + userId + ":" + roomId + ":schedule";
levelDb.put(bytes(keySchedule), bytes(schedule));
}
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
}
public void deleteBooked(String roomType, long roomId, long userId) throws IOException {
try {
levelDb = factory.open(new File(bookingsPath), options);
String keyName = roomType + ":" + userId + ":" + roomId + ":roomname";
levelDb.delete(bytes(keyName));
if (roomType.equals("cla")) {
String keySchedule = roomType + ":" + userId + ":" + roomId + ":schedule";
levelDb.delete(bytes(keySchedule));
}
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
}
public Collection<Booked> getBooked(String role) throws IOException {
Collection<Booked> bookings = new ArrayList<Booked>();
try {
levelDb = factory.open(new File(bookingsPath), options);
DBIterator iterator = levelDb.iterator();
if (role.equals("S")) {
for (iterator.seek(bytes("lab:")); iterator.hasNext(); iterator.next()) {
String key = asString(iterator.peekNext().getKey());
String[] keySplit = key.split(":");
String roomName = asString(iterator.peekNext().getValue());
bookings.add(new Booked(Long.parseLong(keySplit[2]), roomName, null, "lab"));
}
} else {
for (iterator.seek(bytes("cla:")); iterator.hasNext(); iterator.next()) {
String key = asString(iterator.peekNext().getKey());
if (key.endsWith("roomname")) {
String[] keySplit = key.split(":");
String roomName = asString(levelDb.get(bytes(key)));
String schedule = asString(
levelDb.get(bytes("cla:" + keySplit[1] + ":" + keySplit[2] + ":schedule")));
bookings.add(new Booked(Long.parseLong(keySplit[2]), roomName, schedule, "cla"));
}
}
}
iterator.close();
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
return bookings;
}
public Collection<Available> getAvailable(String requestedSchedule, String role) throws IOException {
Collection<Available> availables = new ArrayList<Available>();
try {
levelDb = factory.open(new File(availablePath), options);
DBIterator iterator = levelDb.iterator();
String roomType;
if (role.equals("S")) {
roomType = "lab";
} else {
roomType = "cla";
}
for (iterator.seek(bytes(roomType + ":")); iterator.hasNext(); iterator.next()) {
String key = asString(iterator.peekNext().getKey());
if (key.endsWith("available")) {
String available = asString(levelDb.get(bytes(key)));
boolean isAvailable = true;
if (roomType.equals("cla")) {
if (!(available.equals(requestedSchedule) || available.equals("f"))) {
isAvailable = false;
}
} else {
if (Integer.parseInt(available) == 0) {
isAvailable = false;
}
}
if (isAvailable) {
String[] keySplit = key.split(":");
String name = asString(levelDb.get(bytes(roomType + ":" + keySplit[1] + ":roomname")));
String building = asString(
levelDb.get(bytes(roomType + ":" + keySplit[1] + ":buildingname")));
int capacity = Integer.parseInt(
asString(levelDb.get(bytes(roomType + ":" + keySplit[1] + ":roomcapacity"))));
availables.add(new Available(name, building, available, roomType, Long.parseLong(keySplit[1]),
capacity));
}
}
}
iterator.close();
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
levelDb.close();
}
return availables;
}
}