-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataBase.java
433 lines (297 loc) · 10.9 KB
/
DataBase.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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
/**
* This class handle storing requests and files
*
*
* @author Mohammad Mahdi Malmasi
* @version 0.2.6
*/
public class DataBase
{
/* Fields */
// main folder of store age
private static final String MAIN_FOLDER = "./.DataBase/";
// save the request that dosen't belong to any group
private static final String LAST_REQUESTS_FOLDER = ".lastRequestsFolder/";
// Gui files folder
private static final String GUI_FOLDER = "./.GUI/";
// time line file for GUI
private static final String TIME_LINE_GUI = ".timeline.data";
// time line file for GUI
private static final String RESPONSE_HEADERS = ".responseHeaders.data";
// time line file for GUI
private static final String RESPONSE_BODY = ".responseBody.data";
// time line file for GUI
private static final String ERRORS_LOG = ".errorslog.data";
// outputs default folder
private static final String OUTPUTS_FOLDER = "./outputs/";
// default name for files
private static final String DEFAULT_OUTPUT_FILE_NAME = "outputـ";
// files format
private static final String FORMAT = ".rqstdata";
// hold requests of the groups
private static final HashMap<String, ArrayList<String>> GROUPS_REQUESTS = new HashMap<>();
/* Methods */
/**
* This method set the static fields of this class
* call this method at the first of the program (befor starting to use other methods of this class)
* (this method is like a constructor for this class)
*/
public static void init()
{
File setDefaults = new File(MAIN_FOLDER + LAST_REQUESTS_FOLDER);
setDefaults.mkdirs();
/* read request groups and requests */
File groups = new File(MAIN_FOLDER);
for (File group : groups.listFiles())
{
if (group.getName().equals(".DS_Store"))
continue;
GROUPS_REQUESTS.put(group.getName(), new ArrayList<>());
for (File request : group.listFiles())
GROUPS_REQUESTS.get(group.getName()).add(request.getName().replaceAll(FORMAT, ""));
}
// set output folder
File outputsFolder = new File(OUTPUTS_FOLDER);
outputsFolder.mkdirs();
// set gui folder
File guiFolder = new File(GUI_FOLDER);
guiFolder.mkdirs();
/* reset gui files */
setGUIfiles();
File holdToRemove;
holdToRemove = new File(GUI_FOLDER + RESPONSE_BODY);
holdToRemove.delete();
holdToRemove = new File(GUI_FOLDER + RESPONSE_HEADERS);
holdToRemove.delete();
holdToRemove = new File(GUI_FOLDER + TIME_LINE_GUI);
holdToRemove.delete();
holdToRemove = new File(GUI_FOLDER + ERRORS_LOG);
holdToRemove.delete();
setGUIfiles();
}
/**
* This method save the given request in it's group
*
*
* @param groupName : name of the request group
* @param requestName : a name for this request
* @param request : request to save
*
* @return {@code false} a same file with given name is available
*
* @throws IOException if can't make file
*/
public static boolean saveRequest(String groupName, String requestName, Request request) throws IOException
{
if (groupName == null)
groupName = LAST_REQUESTS_FOLDER.replace("/", "");
else if (!GROUPS_REQUESTS.containsKey(groupName))
{
GROUPS_REQUESTS.put(groupName.toLowerCase(), new ArrayList<>());
mkdir(groupName);
}
if (requestName == null)
requestName = "request_" + GROUPS_REQUESTS.get(groupName).size();
ObjectOutputStream requestFile = new ObjectOutputStream(new FileOutputStream(new File(getPath(groupName, requestName))));
requestFile.writeObject(request);
requestFile.close();
GROUPS_REQUESTS.get(groupName).add(requestName);
return true;
}
/**
* This method read a {@code Request} object from file
*
*
* @param groupName : number of the request group
* @param requestIndex : number of the request in group
*
* @return your choosen {@code Request}
*
* @throws IOException if can't open your choosen file
* @throws IndexOutOfBoundsException if you given an invalid request number
*/
public static Request openRequest(int groupIndex, int requestIndex)
throws IOException, IndexOutOfBoundsException
{
String groupName = getGroupName(groupIndex);
String requestName = GROUPS_REQUESTS.get(groupName).get(requestIndex);
ObjectInputStream requestFile = new ObjectInputStream(new FileInputStream(new File(getPath(groupName, requestName))));
try { return (Request) requestFile.readObject(); }
catch (ClassNotFoundException e) { return null; }
finally { requestFile.close(); }
}
/**
* This method remove a request from group
*
*
* @param requestCode : a {@code String} with length 2 that rfers to a 2 digit {@code int}.
* @throws IndexOutOfBoundsException if your given string dosn't refer to specific request
*/
public static void removeRequest(String requestCode) throws IndexOutOfBoundsException
{
int groupNumber = requestCode.charAt(0) - '0';
int requestNumber = requestCode.charAt(1) - '0';
String requestFile = getPath(getGroupName(groupNumber),
GROUPS_REQUESTS.get(getGroupName(groupNumber)).get(requestNumber));
File fileToRemove = new File(requestFile);
try { Files.deleteIfExists(Paths.get(fileToRemove.getAbsolutePath())); }
catch (IOException e) { Out.printErrors("cantRemove"); }
GROUPS_REQUESTS.get(getGroupName(groupNumber)).remove(requestNumber);
}
/**
* This method remove a group with its index
*
*
* @param groupCode : index of the group
* @throws IndexOutOfBoundsException if the given index is invalid
*/
public static void removeGroup(String groupCode) throws IndexOutOfBoundsException
{
String groupName = getGroupName(groupCode.charAt(0) - '0');
int groupSize = GROUPS_REQUESTS.get(groupName).size();
for (int i = 0; i < groupSize; i++)
removeRequest(groupCode + '0');
File directoryToRemove = new File(MAIN_FOLDER + groupName + '/');
try { Files.deleteIfExists(Paths.get(directoryToRemove.getAbsolutePath())); }
catch (IOException e) { Out.printErrors("cantRemoveD"); }
GROUPS_REQUESTS.remove(groupName);
}
/**
* This method remove a group with its name
*
*
* @param groupName : name of the group
*/
public static void deleteGroup(String groupName)
{
int gpIndex = 0;
for (String group : GROUPS_REQUESTS.keySet())
{
if (groupName.equals(group))
{
removeGroup("" + gpIndex);
return;
}
gpIndex++;
}
}
/**
* @return the path of time line gui file
*/
public static String getTimeLineGuiPath()
{
return GUI_FOLDER + TIME_LINE_GUI;
}
/**
* @return the path of response Headers gui file
*/
public static String getResponseHeadersGuiPath()
{
return GUI_FOLDER + RESPONSE_HEADERS;
}
/**
* @return the path of response body gui file
*/
public static String getResponseBodyGuiPath()
{
return GUI_FOLDER + RESPONSE_BODY;
}
/**
* @return the path of errors log gui file
*/
public static String getErrorsLogGuiPath()
{
return GUI_FOLDER + ERRORS_LOG;
}
/**
* @return path of default outputs folder
*/
public static String getOuputsFolderPath()
{
return OUTPUTS_FOLDER;
}
/**
* @param format : format of the output file
* @return path of a empty file for save an output of a request
*/
public static String getEmptyOutputFilePath(String format)
{
return OUTPUTS_FOLDER + DEFAULT_OUTPUT_FILE_NAME +
(new Date()).toLocaleString().replaceAll(" ", "_").replaceAll(",", "") + format;
}
/**
* @return a copy of requests and their gruops hash map
*/
public static HashMap<String, ArrayList<String>> getRequests()
{
HashMap<String, ArrayList<String>> output = new HashMap<>();
for (String groupName : GROUPS_REQUESTS.keySet())
{
ArrayList<String> copy = new ArrayList<>();
for (String requestName : GROUPS_REQUESTS.get(groupName))
copy.add(requestName);
output.put(groupName, copy);
}
return output;
}
// This method sets the GUI files
private static void setGUIfiles()
{
FileOutputStream setFile;
try
{
setFile = new FileOutputStream(new File(GUI_FOLDER + TIME_LINE_GUI));
setFile.close();
setFile = new FileOutputStream(new File(GUI_FOLDER + RESPONSE_HEADERS));
setFile.close();
setFile = new FileOutputStream(new File(GUI_FOLDER + RESPONSE_BODY));
setFile.close();
setFile = new FileOutputStream(new File(GUI_FOLDER + ERRORS_LOG));
setFile.close();
}
catch(IOException e){ Out.printErrors("guiFiles"); }
}
// this method find the group name with its indes
private static String getGroupName(int groupIndex) throws IndexOutOfBoundsException
{
String groupName = null; int cntr = 0;
for (String holdName : GROUPS_REQUESTS.keySet())
{
groupName = holdName;
if (cntr == groupIndex)
break;
cntr++;
}
if (cntr != groupIndex)
throw new IndexOutOfBoundsException();
return groupName;
}
// this method check that a file is available or not
private static boolean isFileAvailable(String groupName, String fileName)
{
File groupFolder = new File(MAIN_FOLDER + groupName);
for (File file : groupFolder.listFiles())
{
if (file.toString().replaceAll(FORMAT, "").equalsIgnoreCase(fileName))
return true;
}
return false;
}
// this method add the new group
private static void mkdir(String groupName)
{
File mkdir = new File(MAIN_FOLDER + groupName);
mkdir.mkdirs();
}
// this method return the path for file to save
private static String getPath(String groupName, String requestName)
{
return MAIN_FOLDER + "/" + groupName + "/" + requestName + FORMAT;
}
}