-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectoryTree.java
More file actions
455 lines (429 loc) · 12.1 KB
/
DirectoryTree.java
File metadata and controls
455 lines (429 loc) · 12.1 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
/**
* A replication of a terminal with linux commands. The directories and files are stored using a tree.
* This class contains the methods in order to create a tree of directories.
*/
public class DirectoryTree {
private DirectoryNode root;
private DirectoryNode cursor;
public DirectoryTree() {
}
/**
* @param root creates a tree with the reference root and sets the cursor equal to root
*/
public DirectoryTree(DirectoryNode root) {
this.root = root;
this.cursor = root;
}
/**
* sets the cursor equal to the root
*/
public void resetCursor() {
this.cursor = root;
}
/**
* @param name the new directory that the user wants the cursor to reference
* @throws NotADirectoryException thrown when user tries to reference a directory that is actually a file
* @throws DirectoryNotFoundException thrown when user enters a directory that does not exist
*/
public void changeDirectory(String name) throws NotADirectoryException, DirectoryNotFoundException {
DirectoryNode pointer = this.cursor;
boolean running = true;
while (running) {
//System.out.println(pointer.getName());
DirectoryNode check = pointer;
if (pointer.getLeft() != null) {
pointer = pointer.getLeft();
if (pointer.getName().equals(name)) {
if (!pointer.getIsFile()) {
this.cursor = pointer;
//System.out.println(this.cursor.getName());
return;
}
else {
throw new NotADirectoryException();
}
}
pointer = this.cursor;
}
if (pointer.getMiddle() != null) {
pointer = pointer.getMiddle();
if (pointer.getName().equals(name)) {
if (!pointer.getIsFile()) {
this.cursor = pointer;
//System.out.println(this.cursor.getName());
return;
}
else {
throw new NotADirectoryException();
}
}
pointer = this.cursor;
}
if (pointer.getRight() != null) {
pointer = pointer.getRight();
if (pointer.getName().equals(name)) {
if (!pointer.getIsFile()) {
this.cursor = pointer;
//System.out.println(this.cursor.getName());
return;
}
else {
throw new NotADirectoryException();
}
}
pointer = this.cursor;
}
if (check.equals(pointer)) {
running = false;
}
}
throw new DirectoryNotFoundException();
}
/**
* @param src of which file to move
* @param dest of where to move
* @throws Exception when could not move
*/
public void moveMe(String src, String dest, String[] srcArr, String[] destArr) throws Exception {
DirectoryNode remove = this.root;
boolean running = true;
while (running) {
if (remove.getLeft() != null && remove.getLeft().getName().equals(src)) {
remove = remove.getLeft();
running = false;
}
else if (remove.getMiddle() != null && remove.getMiddle().getName().equals(src)) {
remove = remove.getMiddle();
running = false;
}
else if (remove.getRight() != null && remove.getRight().getName().equals(src)) {
remove = remove.getRight();
running = false;
}
else {
if (remove.getLeft() != null) {
remove = remove.getLeft();
}
else if (remove.getMiddle() != null) {
remove = remove.getMiddle();
}
else if (remove.getRight() != null) {
remove = remove.getRight();
}
else if (remove.getLeft() == null && remove.getMiddle() == null && remove.getRight() == null) {
running = false;
}
}
}
running = true;
DirectoryNode add = this.root;
while (running) {
if (add.getLeft() != null && add.getLeft().getName().equals(src)) {
add = add.getLeft();
running = false;
}
else if (add.getMiddle() != null && add.getMiddle().getName().equals(src)) {
add = add.getMiddle();
running = false;
}
else if (add.getRight() != null && add.getRight().getName().equals(src)) {
add = add.getRight();
running = false;
}
else {
if (add.getLeft() != null) {
add = add.getLeft();
}
else if (add.getMiddle() != null) {
add = add.getMiddle();
}
else if (add.getRight() != null) {
add = add.getRight();
}
else if (add.getLeft() == null && add.getMiddle() == null && add.getRight() == null) {
running = false;
}
}
}
this.resetCursor();
DirectoryNode dup = remove;
//System.out.println(remove.getName());
int index = srcArr.length;
for (int i = 1; i < index; i++) {
this.changeDirectory(srcArr[i]);
}
//System.out.println("1");
running = true;
this.moveToParent();
while (running) {
if (cursor.getLeft() != null && cursor.getLeft().getName().equals(dup.getName())) {
cursor.removeChild("left");
running = false;
}
if (cursor.getMiddle() != null && cursor.getMiddle().getName().equals(dup.getName())) {
cursor.removeChild("middle");
running = false;
}
if (cursor.getRight() != null && cursor.getRight().getName().equals(dup.getName())) {
cursor.removeChild("right");
running = false;
}
if (cursor.getLeft() == null && cursor.getMiddle() == null && cursor.getRight() == null) {
running = false;
}
}
this.resetCursor();
int index2 = destArr.length;
for (int i = 1; i < index2; i++) {
this.changeDirectory(destArr[i]);
}
if (add.getIsFile() == false) {
this.makeDirectory(dup.getName());
this.changeDirectory(dup.getName());
if (dup.getLeft() != null) {
this.cursor.addChild(dup.getLeft());
}
if (dup.getMiddle() != null) {
this.cursor.addChild(dup.getMiddle());
}
if (dup.getRight() != null) {
this.cursor.addChild(dup.getRight());
}
}
else {
this.makeFile(add.getName());
}
this.resetCursor();
}
/**
* this method moves the cursor to the parent that the cursor is currently on
*/
public void moveToParent() {
DirectoryNode node = this.root;
boolean running = true;
while (running) {
DirectoryNode check = node;
if (node.getLeft() != null) {
if (node.getLeft().equals(this.cursor)) {
this.cursor = node;
running = false;
}
else {
node = node.getLeft();
}
}
else if (node.getMiddle() != null) {
if (node.getMiddle().equals(this.cursor)) {
this.cursor = node;
running = false;
}
else {
node = node.getMiddle();
}
}
else if (node.getRight() != null) {
if (node.getRight().equals(this.cursor)) {
this.cursor = node;
running = false;
}
else {
node = node.getRight();
}
}
if (node.equals(check)) {
running = false;
}
}
}
/**
* @param name to find the directory that user wants to find
* @return the node of the directory
* @throws Exception thrown when user enters a directory that does not exist
*/
public String findMe(String name) throws Exception{
DirectoryNode start = this.root;
boolean run = true;
while (run) {
DirectoryNode check = start;
if (start.getLeft() != null) {
if (start.getLeft().getName().equals(name)) {
start = start.getLeft();
}
else {
start = start.getLeft();
}
}
if (start.getMiddle() != null) {
if (start.getMiddle().getName().equals(name)) {
start = start.getMiddle();
}
else {
start = start.getLeft();
}
}
if (start.getRight() != null) {
if (start.getRight().getName().equals(name)) {
start = start.getRight();
}
else {
start = start.getLeft();
}
}
if (start.equals(check)) {
run = false;
}
}
String printStr = "";
boolean running = true;
DirectoryNode node = start;
DirectoryNode pointer = this.root;
printStr += "/" + pointer.getName();
if (node.equals(this.root)) return printStr;
while (running) {
DirectoryNode check = pointer;
if (pointer.getLeft() != null && pointer.getMiddle() != null && pointer.getRight() != null) {
if (pointer.getLeft().equals(node) || pointer.getRight().equals(node) || pointer.getMiddle().equals(node)) {
printStr += "/" + node.getName();
return printStr;
}
}
if (pointer.getLeft() != null) {
pointer = pointer.getLeft();
printStr += "/" + pointer.getName();
}
else if (pointer.getMiddle() != null) {
pointer = pointer.getMiddle();
printStr += "/" + pointer.getName();
}
else if (pointer.getRight() != null) {
pointer = pointer.getRight();
printStr += "/" + pointer.getName();
}
if (check.equals(pointer)) {
running = false;
}
}
return printStr;
}
/**
* @return a String of the current directory that the user is on
*/
public String presentWorkingDirectory() {
String printStr = "";
boolean running = true;
DirectoryNode pointer = this.root;
printStr += "/" + pointer.getName();
if (this.cursor.equals(root)) return printStr;
while (running) {
DirectoryNode check = pointer;
if (pointer.getLeft() != null && pointer.getMiddle() != null && pointer.getRight() != null) {
if (pointer.getLeft().equals(this.cursor) || pointer.getRight().equals(this.cursor) || pointer.getMiddle().equals(this.cursor)) {
printStr += "/" + this.cursor.getName();
return printStr;
}
}
if (pointer.getLeft() != null) {
pointer = pointer.getLeft();
printStr += "/" + pointer.getName();
}
else if (pointer.getMiddle() != null) {
pointer = pointer.getMiddle();
printStr += "/" + pointer.getName();
}
else if (pointer.getRight() != null) {
pointer = pointer.getRight();
printStr += "/" + pointer.getName();
}
if (check.equals(pointer)) {
running = false;
}
}
return printStr;
}
/**
* @return a list of all the directories added
*/
public String listDirectory() {
String printStr = "";
DirectoryNode pointer = this.cursor;
//printStr += " " + this.cursor.getName();
if (pointer.getLeft() != null) {
printStr += " " + pointer.getLeft().getName();
}
if (pointer.getMiddle() != null) {
printStr += " " + pointer.getMiddle().getName();
}
if (pointer.getRight() != null) {
printStr += " " + pointer.getRight().getName();
}
return printStr;
}
/**
* @param node that marks which node I am at
* @param level saves the amount of spaces
*/
public void helperPrint(DirectoryNode node, int level) {
int counter = level;
for (int i = 0; i < level; i++) {
System.out.print("\t");
}
if (node.getIsFile() == true) {
System.out.print("- " + node.getName() + "\n");
}
else {
System.out.print("|- " + node.getName() + "\n");
}
if (node.getLeft() != null) {
//System.out.print(" ");
//System.out.println("HELLOleft" +level);
this.helperPrint(node.getLeft(), (++counter));
counter = level;
}
if (node.getMiddle() != null) {
//System.out.println("HELLOmiddle" +level);
//System.out.print(" ");
this.helperPrint(node.getMiddle(), (++counter));
counter = level;
}
if (node.getRight() != null) {
//System.out.println("HELLOright" +level);
//System.out.print(" ");
this.helperPrint(node.getRight(), (++counter));
counter = level;
}
//System.out.println();
}
/**
* calls the helper method that prints the tree
*/
public void printDirectoryTree() {
this.helperPrint(this.cursor, 0);
}
/**
* @param name of the directory being created
* @throws IllegalArgumentException when the directory has illegal characters
* @throws FullDirectoryException when all the nodes of the parent are full
* @throws NotADirectoryException when user tries to add a directory to a file
*/
public void makeDirectory(String name) throws IllegalArgumentException, FullDirectoryException, NotADirectoryException {
if (name.contains("/") || name.contains(" ")) {
throw new IllegalArgumentException();
}
DirectoryNode node = new DirectoryNode(name);
this.cursor.addChild(node);
}
/**
* @param name of the directory being created
* @throws IllegalArgumentException when the directory has illegal characters
* @throws FullDirectoryException when all the nodes of the parent are full
* @throws NotADirectoryException when user tries to add a directory to a file
*/
public void makeFile(String name) throws IllegalArgumentException, FullDirectoryException, NotADirectoryException {
if (name.contains("/") || name.contains(" ")) {
throw new IllegalArgumentException();
}
DirectoryNode node = new DirectoryNode(name);
node.setIsFile(true);
this.cursor.addChild(node);
}
}