-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstructions.java
More file actions
460 lines (410 loc) · 12.8 KB
/
Copy pathInstructions.java
File metadata and controls
460 lines (410 loc) · 12.8 KB
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
/**
* Class that handles the instructions or commands that
* are issued from file or from the command line.
*
* by: Brandon Main
*
* last edit: February 20, 2019
*/
import java.lang.*;
import java.io.*;
import java.util.*;
final class Instructions
{
//A String object to switch between what database
//instructions are being issued to.
private static File currentDatabase;
/**
* default constructor()
*
* Make constructor private so there cannot be
* any instances of the class.
*/
private Instructions(){}
/**
* operate()
*
* Function that operates on an input instruction and determines
* what to be done next.
*
* @param instruction The instruction input from file or CLI.
*/
static void operate(String instruction)
{
//Get instruction
Scanner scanString = new Scanner(instruction);
scanString.useDelimiter(" |;");
String next;
//Scan and operate
if(scanString.hasNext())
{
next = scanString.next();
if (next.equalsIgnoreCase("CREATE"))
{
create(scanString);
}
else if (next.equalsIgnoreCase("DROP"))
{
drop(scanString);
}
else if (next.equalsIgnoreCase("USE"))
{
use(scanString);
}
else if (next.equalsIgnoreCase("SELECT"))
{
select(scanString);
}
else if (next.equalsIgnoreCase("ALTER"))
{
alter(scanString);
}
else if (next.equalsIgnoreCase(".EXIT"))
{
System.exit(0);
}
}
scanString.close();
}
/**
* create()
*
* This function is called when the "CREATE" keyword
* is input in an instruction. It determines what will be
* created, e.g. a database or table.
*
* @param scanString A scanner object with the rest of
* the instruction to be parsed.
*/
private static void create(Scanner scanString)
{
String next;
if(scanString.hasNext())
{
next = scanString.next();
if(next.equalsIgnoreCase("DATABASE"))
{
createDatabase(scanString);
}
else if(next.equalsIgnoreCase("TABLE"))
{
createTable(scanString);
}
else
{
System.out.println("JataBase~# Instruction " + next + " not recognized. Skipping instruction." );
}
}
}
/**
* createDatabase();
*
* This function determine whether a database folder is to be
* created based on if the folder already exists or not.
*
* @param scanString A Scanner object that contains the
* rest of the instruction to be parsed.
*/
private static void createDatabase(Scanner scanString)
{
File database;
if(scanString.hasNext())
{
database = new File(scanString.next());
if(!database.exists())
{
//Make a database folder.
if(database.mkdir())
{
System.out.println("JataBase~# Database " + database.toString() + " created.");
}
}
else
{
//Database already exists: do nothing.
System.out.println("JataBase~# !Failed to create database " + database.toString() +
" because it already exists.");
}
}
else
{
System.out.println("JataBase~# Instruction not recognized. Skipping instruction." );
}
}
/**
* createTable()
*
* Function that creates a table in the currently used database.
*
* @param scanString Scanner object containing rest of instruction.
*/
private static void createTable(Scanner scanString)
{
File tableFile;
String table;
if(scanString.hasNext() && currentDatabase != null)
{
table = scanString.next();
tableFile = new File(currentDatabase + "/" + table);
//Check if tableFile exists in the database.
if(!tableFile.exists())
{
try
{
boolean created = tableFile.createNewFile();
scanString.useDelimiter(";");
if(scanString.hasNext() && created)
{
String writeToTable = scanString.next();
writeToTable = writeToTable.replaceAll("[()]", "");
writeToTable = writeToTable.replaceAll(",", " |");
//Write table to table file.
BufferedWriter writer = new BufferedWriter(new FileWriter(tableFile));
writer.write(writeToTable);
writer.close();
}
System.out.println("JataBase~# Table " + table + " created.");
}
catch(IOException e)
{
e.printStackTrace();
}
}
else
{
//Table already exists: do nothing.
System.out.println("JataBase~# !Failed to create table " + table +
" because it already exists.");
}
}
else
{
System.out.println("JataBase~# !Failed to create table because database not specified.");
}
}
/**
* alter()
*
* Function that alters a table in the currently used database.
*
* @param scanString - Scanner object containing instruction.
*
* @implNote This function calls addToTable() | removeFromTable()
*/
private static void alter(Scanner scanString)
{
File table;
if(scanString.hasNext())
{
//Get TABLE word and ignore
scanString.next();
if(scanString.hasNext())
{
table = new File(currentDatabase + "/" + scanString.next());
//Check if table exists
if(table.exists())
{
//Get alter operation
if(scanString.hasNext())
{
String operation = scanString.next();
if(operation.equalsIgnoreCase("ADD"))
{
addToTable(scanString, table);
}
}
}
}
}
}
/**
* addToTable()
*
* Function that adds a new member to a table in a database.
*
* @param scanString - Scanner object containing instruction to add to table.
* @param table - the path to the table file.
*/
private static void addToTable(Scanner scanString, File table)
{
scanString.useDelimiter(";");
if(scanString.hasNext())
{
try
{
String writeToTable;
writeToTable = scanString.next();
//Write table to table file.
try (BufferedWriter writer = new BufferedWriter(new FileWriter(table, true))) {
writer.append(" | ").append(writeToTable);
}
System.out.println("JataBase~# Table " + table + " modified.");
}
catch(IOException e)
{
e.printStackTrace();
}
}
}
/**
* drop()
*
* This function is called when the "DROP" instruction is
* issued. It determines if a database or table should be
* dropped.
*
* @param scanString The scan string
*/
private static void drop(Scanner scanString)
{
String next;
if(scanString.hasNext())
{
next = scanString.next();
if(next.equalsIgnoreCase("DATABASE"))
{
dropDatabase(scanString);
}
else if(next.equalsIgnoreCase("TABLE"))
{
dropTable(scanString);
}
else
{
System.out.println("JataBase~# Instruction " + next + " not recognized. Skipping instruction." );
}
}
}
/**
* dropDatabase()
*
* Function that drops a database of the database exists.
*
* @param scanString The scan string
*/
private static void dropDatabase(Scanner scanString)
{
File database;
if(scanString.hasNext())
{
database = new File(scanString.next());
//Determine if database folder exists
if(database.exists())
{
//If it exists we need to delete all files in the
//folder to delete the folder.
String[]entries = database.list();
assert entries != null;
for(String s: entries)
{
File currentFile = new File(database.getPath(),s);
currentFile.delete();
}
//Delete database after removing all files.
database.delete();
System.out.println("JataBase~# Database " + database + " deleted.");
}
else
{
//Database does not exist: do nothing.
System.out.println("JataBase~# !Failed to drop database " + database.toString() +
" because it does not exist.");
}
}
else
{
System.out.println("JataBase~# Instruction not recognized. Skipping instruction." );
}
}
/**
* dropTable()
*
* Function that removes a table from a database.
*
* @param scanString - Scanner object that contains table to be dropped.
*/
private static void dropTable(Scanner scanString)
{
File table;
if(scanString.hasNext())
{
String tableValue = scanString.next();
table = new File(currentDatabase + "/" + tableValue);
if(table.exists())
{
table.delete();
System.out.println("JataBase~# Table deleted.");
}
else
{
//Table does not exist: do nothing.
System.out.println("JataBase~# !Failed to drop table " + tableValue +
" because it does not exist.");
}
}
}
/**
* use()
*
* Function that is called when the "USE" keyword is read. This
* function determines what database is to be used if it exists, else
* it defaults to null.
*
* @param scanString - Scanner object that contains rest of instruction.
*/
private static void use(Scanner scanString)
{
if(scanString.hasNext())
{
currentDatabase = new File(scanString.next());
//Check if database exists
if(currentDatabase.exists())
{
//Return from function to get next instruction.
System.out.println("JataBase~# Using database " + currentDatabase +".");
}
else
{
System.out.println("JataBase~# Database " + currentDatabase + " does not exist.");
currentDatabase = null;
}
}
}
/**
* select()
*
* Function that finds the selected data from a table and prints it.
*
* @param scanString - Scanner object containing rest of instruction.
*/
private static void select(Scanner scanString)
{
if(scanString.hasNext())
{
scanString.next();
//Take care of intermediary FROM statement
if(scanString.hasNext())
{
scanString.next();
}
//Get table
if(scanString.hasNext())
{
String tableVaue = scanString.next();
File table = new File(currentDatabase + "/" + tableVaue);
try
{
Scanner scanFile = new Scanner(table);
if(scanFile.hasNext())
{
System.out.println(scanFile.nextLine());
}
}
catch(FileNotFoundException e)
{
System.out.println("JataBase~# !Failed to query table " + tableVaue + " because it does not exist.");
}
}
}
}
}