-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
tree-file-system.js
437 lines (329 loc) · 8.87 KB
/
tree-file-system.js
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
class Item {
#name = '';
#parent = null;
constructor(name) {
if(this.constructor.name === 'Item') {
throw new Error('Item class is Abstract. It can only be extended')
}
this.name = name;
}
get path() {
if(this.parent){
return `${this.parent.path}/${this.name}`
}
return this.name;
}
get name() {
return this.#name;
}
set name(newName) {
if(!newName || typeof newName !== 'string' || !newName.trim().length) {
throw new Error('Item name must be a non empty string');
}
if(newName.includes('/')) {
throw new Error("Item name contains invalid symbol");
}
if(this.parent && this.parent.hasItem(newName)) {
throw new Error(`Item with name of "${newName}" already exists in this directory`);
}
this.#name = newName.trim();
}
get parent() {
return this.#parent;
}
set parent(newParent) {
if(newParent !== this.#parent) {
const prevParent = this.#parent;
this.#parent = newParent;
if(prevParent) {
prevParent.removeItem(this.name)
}
if(newParent) {
newParent.insertItem(this)
}
}
}
}
class File extends Item {
#type = 'text';
#mimeType = 'txt';
#textContent = '';
#source = null;
constructor(name = '', textContent = '', source = null) {
super(name || 'un-named file');
this.textContent = textContent;
this.source = source;
}
get textContent() {
return this.#textContent;
}
set textContent(content) {
this.#textContent = `${content || ''}`;
}
get source() {
return this.#source;
}
set source(newSource) {
this.#source = newSource;
if(newSource && newSource.type) {
let [type, mime] = newSource.type.split('/');
mime = mime.match(/[\w-]+/g);
this.#type = type || 'text';
this.#mimeType = !mime || mime[0] === 'plain' ? 'txt' : mime[0];
}
}
get type() {
return this.#type;
}
get mimeType() {
return this.#mimeType;
}
get copy() {
return new File(`${this.name} copy`, this.textContent, this.source);
}
}
const DIRECTORY_TYPE = {
DEFAULT: 'DEFAULT'
}
class Directory extends Item {
#type: DIRECTORY_TYPE.DEFAULT;
#children = new Map();
constructor(name = '', type = DIRECTORY_TYPE.DEFAULT) {
super(name || 'un-named directory')
this.#type = DIRECTORY_TYPE[type] ? type : DIRECTORY_TYPE.DEFAULT;
}
get content() {
return Array.from(this.#children.values());
}
get type() {
return this.#type;
}
get copy() {
const dirCopy = new Directory(`${this.name} copy`, this.type);
this.content.forEach(item => {
const itemCopy = item.copy;
itemCopy.name = item.name;
dirCopy.insertItem(itemCopy);
})
return dirCopy;
}
hasItem(itemName) {
return this.#children.has(itemName);
}
insertItem(item) {
if(this.hasItem(item.name)) return true;
if(item === this) throw new Error('Directory cannot contain itself');
let parent = this.parent;
while(parent !== null) {
if(parent === item) {
throw new Error('Directory cannot contain one of its ancestors');
}
parent = parent.parent;
}
this.#children.set(item.name, item);
item.parent = this;
return this.hasItem(item.name);
}
getItem(itemName) {
return this.#children.get(itemName) || null;
}
removeItem(itemName) {
const item = this.getItem(itemName);
if(item) {
this.#children.delete(itemName);
item.parent = null;
}
return !this.hasItem(itemName);
}
}
class FileSystem {
#self = new Directory('root');
#currentDirectory = this.#self;
#currentDirectoryPath = [this.#currentDirectory]; // as stack
// #currentUser = 'root';
get currentDirectory() {
return this.#currentDirectory;
}
get currentDirectoryPath() {
return this.#currentDirectoryPath.map(dir => `${dir.name}`);
}
get root() {
return this.#self;
}
get parent() {
return null;
}
get name() {
return this.root.name;
}
get copy() {
const fsCopy = new FileSystem();
this.root.content.forEach(item => {
const itemCopy = item.copy;
itemCopy.name = item.name;
fsCopy.insertItem(itemCopy);
})
return fsCopy;
}
get content() {
return this.currentDirectory.content;
}
createFile(fileName, ...options) {
const newFile = new File(fileName, ...options);
const inserted = this.insertItem(newFile);
return inserted ? newFile : null;
}
createDirectory(dirName, type = DIRECTORY_TYPE.DEFAULT) {
const newDir = new Directory(dirName, type);
const inserted = this.currentDirectory.insertItem(newDir);
return inserted ? newDir : null;
}
insertItem(item) {
return this.currentDirectory.insertItem(item);
}
getItem(itemName) {
return this.currentDirectory.getItem(itemName);
}
hasItem(itemName) {
return this.currentDirectory.hasItem(itemName);
}
removeItem(itemName) {
return this.currentDirectory.removeItem(itemName);
}
renameItem(currentName, newName) {
const item = this.getItem(currentName);
if(item) {
item.name = newName;
this.removeItem(currentName);
this.insertItem(item);
return item;
}
return null;
}
copyItem(itemName) {
const item = this.getItem(itemName);
if(item) {
const itemCopy = item.copy;
this.insertItem(itemCopy);
return itemCopy;
}
return null;
}
printCurrentDirectory() {
console.log(
`\n[${this.currentDirectoryPath.join('/')}]:` +
(this.currentDirectory.content.map(item =>
`\n[${item.constructor.name.substring(0,1)}]-> ${item.name}`).join('') || '\n(empty)')
)
}
openDirectory(path) {
if(!path) return null;
let dir = this.#getDirectoryFromPath(path);
if(!(dir && dir instanceof Directory)) return null;
const dirPath = [dir];
let parent = dir.parent;
while(parent) {
dirPath.unshift(parent);
parent = parent.parent;
}
this.#currentDirectory = dir;
this.#currentDirectoryPath = dirPath;
return dir;
}
goBack(steps = 1) {
if(isNaN(steps) || steps <= 0 || steps >= this.currentDirectoryPath.length) return null;
let dir = this.currentDirectory;
let stepsMoved = steps;
while(dir && stepsMoved > 0) {
dir = dir.parent;
stepsMoved -= 1;
}
if(dir && dir !== this.currentDirectory) {
this.#currentDirectory = dir;
this.#currentDirectoryPath = this.#currentDirectoryPath
.slice(0, this.#currentDirectoryPath.length - (steps - stepsMoved));
}
return dir;
}
goBackToDirectory(dirName) {
const dirIndex = this.currentDirectoryPath.lastIndexOf(dirName, this.currentDirectoryPath.length - 2);
if(dirIndex < 0) return null;
const dir = dirIndex === 0 ? this.root : this.#currentDirectoryPath[dirIndex];
this.#currentDirectory = dir;
this.#currentDirectoryPath = this.#currentDirectoryPath.slice(0, dirIndex + 1)
return dir;
}
findItem(itemNameOrValidatorFunc, fromDirectory = this.root) {
return this.#setupAndFind(itemNameOrValidatorFunc, fromDirectory);
}
findAllItems(itemNameOrValidatorFunc, fromDirectory = this.root) {
return this.#setupAndFind(itemNameOrValidatorFunc, fromDirectory, true);
}
moveItemTo(itemName, dirPath) {
const item = this.getItem(itemName);
if(item) {
const dir = this.#getDirectoryFromPath(dirPath);
if(dir && dir instanceof Directory) {
dir.insertItem(item);
return dir;
}
}
return null;
}
#setupAndFind = (itemNameOrValidatorFunc, fromDirectory, multiple) => {
if(typeof itemNameOrValidatorFunc === 'function') {
return this.#findItem(itemNameOrValidatorFunc, fromDirectory, multiple);
}
const func = (item) => item.name === itemNameOrValidatorFunc;
return this.#findItem(func, fromDirectory, multiple);
}
#findItem = (isItem, dir, multiple = false) => {
let match = multiple ? [] : null;
let directories = [];
for(const item of dir.content) {
if(isItem(item)) {
if(multiple) {
match.push(item)
} else {
match = item;
break;
}
}
if(item instanceof Directory) {
directories.push(item);
}
}
if((match === null || multiple) && directories.length) {
for(const subDir of directories) {
const found = this.#findItem(isItem, subDir, multiple);
if(multiple) {
match.push(...found)
} else if(found) {
match = found;
break;
}
}
}
return match;
}
#getDirectoryFromPath = dirPath => {
if(dirPath.match(/^(root\/?|\/)$/g)) {
return this.root;
}
if(dirPath.match(/^\.\/?$/g)) {
return this.currentDirectory;
}
let dir = dirPath.match(/^(root\/?|\/)/g) ? this.root : this.currentDirectory;
const paths = dirPath.replace(/^(root\/|\.\/|\/)/g, '').split('/');
while(paths.length) {
dir = dir.getItem(paths.shift());
if(!dir || !(dir instanceof Directory)) {
return null
}
}
if(paths.length === 0) {
return dir;
}
return null;
}
}