-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommands.cpp
479 lines (433 loc) · 13.6 KB
/
Commands.cpp
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
#include <iostream>
#include <string>
#include "Commands.h"
Commands::Commands()
{
this->HDDs = new HardDisk();
}
Commands::~Commands()
{
delete this->HDDs;
}
//permits view of files and folders of current_directory
void Commands::ls(Tree* tree)
{
if (tree->getRoot() == NULL) std::cout << "Root not initialized" << std::endl;
Node* currentDirectory = tree->getCurrentDir();
int numberOfElements = currentDirectory->getNumberOfOffsprings();
std::vector<Node*>* elements = currentDirectory->getOffsprings();
time_t time;
struct tm* timeSt;
//todo add total size in ls
size_t totalSize = 0;
for (int i = 0; i < numberOfElements; i++)
{
time = elements->at(i)->getDateLastModif();
timeSt = localtime(&time);
std::cout <<elements->at(i)->getType() << "\t" << elements->at(i)->getName() << "\t";
std::cout << " with ID: " << elements->at(i)->getId() << ",\t";
std::cout << elements->at(i)->getByteSize() << "\t" << asctime(timeSt);
totalSize += elements->at(i)->getByteSize();
}
std::cout << std::endl;
std::cout << numberOfElements << " elements in remote directory " <<
currentDirectory->getName() << " with size of " << totalSize << std::endl;
}
//prints path from current directory
void Commands::pwd(Tree* tree)
{
std::vector<std::string> path;
Node* node = tree->getCurrentDir();
while (node->getId() != 0)
{
path.push_back(node->getName());
path.push_back("/");
node = node->getNodeFather();
}
path.push_back("/root");
for (int i = path.size()-1; i >= 0; --i)
{
std::cout << path.at(i);
}
}
//cd
void Commands::cd(Tree* tree, std::string name)
{
if (name == "/")
{
tree->setCurrentDir(tree->getRoot());
}
else if (name == "..")
{
if (tree->getCurrentDir()->getId() == 0)
{
std::cout << "You can't go back in Root." << std::endl;
}
else
{
tree->setCurrentDir(tree->getCurrentDir()->getNodeFather());
}
}
else
{
Node* newDirectory = tree->findNodeByName(name);
if (newDirectory == NULL) std::cout << "That directory does not exists." << std::endl;
else
{
bool isFolder = newDirectory->getIsDirectory();
if (isFolder)
{
tree->setCurrentDir(newDirectory);
}
else std::cout << "Destination is not a Folder." << std::endl;
}
}
}
void Commands::mv(Tree* tree, std::string oldName, std::string newNameString)
{
//char newName[newNameString.size() + 1];
//strcpy(newName, newNameString.c_str());
Node* nodeToChange = NULL;
Node* exists = NULL;
if ((newNameString != "") && (newNameString != ".") && (newNameString != "..") && (newNameString != "/"))
{
nodeToChange = tree->findNodeByName(oldName);
exists = tree->findNodeByName(newNameString);
if (nodeToChange != NULL)
{
if (exists == NULL)
{
nodeToChange->setName(newNameString);
tree->WriteBinaryFile();
}
else
{
std::cout << "There exists something with that name already." << std::endl;
}
}
else
{
std::cout << "That name is not in this directory." << std::endl;
}
}
else std::cout << "Please, enter a valid name." << std::endl;
}
///////////////////////////CP METHODS///////////////////////////////////
void Commands::cpCloneFile(Tree* tree, std::string original, std::string copy)
{
if (copy == "")
{
copy = original + "_copy";
}
Node* node = new Node(tree, tree->getCurrentDir(), copy, "File");
tree->addChild(node, tree->getCurrentDir());
this->HDDs->writeFile(node);
}
void Commands::cpCloneFileInFolder(Tree* tree, Node* father, std::string original, off_t byteSize)
{
Node* node = new Node(tree, tree->getCurrentDir(), original, "File");
node->setByteSize(byteSize);
tree->addChild(node, father);
this->HDDs->writeFile(node);
}
void Commands::cpCloneFolder(Tree* tree, Node* nodeToCopy, Node* nodeDestination)
{
Node* node = new Node(tree, nodeDestination, nodeToCopy->getName(), "Folder");
tree->addChild(node, nodeDestination);
std::vector<Node*>* sons = nodeToCopy->getOffsprings();
for (int i=0; i < sons->size(); i++ )
{
cpCloneFolder(tree, sons->at(i), node);
}
}
void Commands::cp(Tree* tree, std::string original, std::string copy)
{
if ((copy != "") && (copy != ".") && (copy != "..") && (copy != "/") && (original != copy))
{
Node* nodeToCopy = tree->findNodeByName(original);
Node* nodeDestination = tree->findNodeByName(copy);
if (nodeToCopy != NULL)
{
if (nodeDestination != NULL) //If destination is not null, it must be a folder.
{
if(nodeDestination->getIsDirectory()) //We copy nodeToCopy to destination
{
if (!nodeToCopy->getIsDirectory()) //file in directory
{
cpCloneFileInFolder(tree, nodeDestination, original, nodeToCopy->getByteSize());
tree->WriteBinaryFile();
}
else
{
cpCloneFolder(tree, nodeToCopy, nodeDestination);
tree->WriteBinaryFile();
}
}
else
{
std::cout << "Destination exists, but is not a folder." << std::endl;
}
}
else //If destination is null, you want to clone the node.
{
//Si directorio
if (nodeToCopy->getType() == "File")
{
cpCloneFile(tree, original, copy);
tree->WriteBinaryFile();
}
else //clone folder
{
if (copy == "")
{
std::cout << "Insert a name please." << std::endl;
}
else
{
Node* asd = new Node(tree, tree->getCurrentDir(), copy, "Folder");
tree->addChild(asd, tree->getCurrentDir());
cpCloneFolder(tree, nodeToCopy, asd);
tree->WriteBinaryFile();
}
}
}
}
else
{
std::cout << "That name is not in this directory." << std::endl;
}
}
else std::cout << "Please, enter a valid name." << std::endl;
}
///////////////////////////CP METHODS///////////////////////////////////
void Commands::mkdir(Tree* tree, std::string name)
{
if ((name != "") && (name != ".") && (name != "..") && (name != "/"))
{
Node* newDirectory = new Node(tree, tree->getCurrentDir(), name, "Folder");
Node* result = NULL;
result = tree->addChild(newDirectory, tree->getCurrentDir());
tree->WriteBinaryFile();
if (result == NULL) std::cout << "A new Folder was not possible to create." << std::endl;
}
else
{
std::cout << "Please, enter a valid name for the new Folder." << std::endl;
}
}
void Commands::rmdir(Tree* tree, std::string name)
{
Node* nodeToDelete = tree->findNodeByName(name);
if (nodeToDelete != NULL)
{
if (nodeToDelete->getIsDirectory())
{
int numberOfOffsprings = nodeToDelete->getNumberOfOffsprings();
if (numberOfOffsprings == 0)
{
tree->removeChild(nodeToDelete);
tree->WriteBinaryFile();
}
else
{
std::cout << "The folder has content, it needs to be empty." << std::endl;
}
}
else
{
std::cout << "The name does not correspond with a Folder." << std::endl;
}
}
else
{
std::cout << "There is no folder with that name in the current directory." << std::endl;
}
}
void Commands::rm(Tree* tree, std::string name)
{
Node* nodeToDelete = tree->findNodeByName(name);
if (nodeToDelete != NULL)
{
if (!nodeToDelete->getIsDirectory())
{
this->HDDs->deleteNode(nodeToDelete);
this->HDDs->overrideSectors();
tree->removeChild(nodeToDelete);
tree->WriteBinaryFile();
}
else
{
std::cout << "The name does not correspond with a File." << std::endl;
}
}
else
{
std::cout << "There is no file with that name in the current directory." << std::endl;
}
}
//lls command
void Commands::lls()
{
system("ls -l");
}
//lcd
void Commands::lcd(std::string name)
{
if (name == "/")
{
chdir("/");
}
else if (name == "..")
{
chdir("..");
}
else
{
chdir(name.c_str());
}
}
void Commands::lpwd()
{
system("pwd");
}
///////////////////////////UPLOADS METHODS///////////////////////////////////
struct stat Commands::getFileInfo(std::string name)
{
struct stat fileInfo;
stat(name.c_str(), &fileInfo);
return fileInfo;
}
//https://stackoverflow.com/questions/146924/how-can-i-tell-if-a-given-path-is-a-directory-or-a-file-c-c
bool Commands::uploadIsDirectory(struct stat fileInfo)
{
if(!S_ISREG(fileInfo.st_mode) /*& S_IFDIR*/)
{
return true;
}
else return false; //It could be more things but on our scope its not neccesary to check all.
}
void Commands::uploadFile(Tree* tree, Node* node, std::string name, struct stat fileInfo)
{
Node* newFile = new Node(tree, node, name, "File");
newFile->setByteSize(fileInfo.st_size);
newFile->setDateLastModif(fileInfo.st_mtime);
Node* result = tree->addChild(newFile, node);
if (result == NULL)
{
std::cout << "Error while uploading the file" << std::endl;
}
else
{
if(!this->HDDs->writeFile(newFile))
{
tree->removeChild(newFile);
}
}
}
void Commands::uploadFolder(Tree* tree, Node* node, std::string name, struct stat fileInfo)
{
DIR* dir;
struct dirent* ent;
if ((dir = opendir(name.c_str())) != NULL)
{
chdir(name.c_str());
while ((ent = readdir(dir)) != NULL)
{
if ((strcmp(".", ent->d_name) != 0 ) & ((strcmp("..", ent->d_name) != 0 )))
{
stat(ent->d_name, &fileInfo);
//if fichero
if (S_IFDIR & (fileInfo.st_mode))
{
Node* newFolder = new Node(tree, node, ent->d_name, "Folder");
Node* result = tree->addChild(newFolder, node);
if (result == NULL) std::cout << "Couldn't add Folder." << std::endl;
uploadFolder(tree, newFolder, ent->d_name, fileInfo);
chdir("..");
}
else //Upload a file
{
std::cout << "Uploading " << ent->d_name << std::endl;
uploadFile(tree, node, ent->d_name, fileInfo);
}
}
}
closedir (dir);
}
else
{
std::cout << "File " << name << " can not be oppened." << std::endl;
}
}
void Commands::upload(Tree* tree, std::string name)
{
if ((name != "") && (name != ".") && (name != "..") && (name != "/"))
{
struct stat fileInfo = getFileInfo(name);
if (uploadIsDirectory(fileInfo)) //Upload recursivo
{
std::ifstream fin(name);
if(fin)
{
Node* newFolder = new Node(tree, tree->getCurrentDir(), name, "Folder");
Node* result = tree->addChild(newFolder, tree->getCurrentDir());
if (result == NULL) std::cout << "Couldn't add Folder." << std::endl;
else
{
uploadFolder(tree, newFolder, name, fileInfo);
tree->WriteBinaryFile();
}
}
else std::cout << "File " << name << " not found." << std::endl;
}
else //Upload a file
{
std::cout << "Uploading " << name << std::endl;
uploadFile(tree, tree->getCurrentDir(), name, fileInfo);
tree->WriteBinaryFile();
}
}
else std::cout << "Please, enter a valid name to upload." << std::endl;
}
///////////////////////////UPLOADS METHODS///////////////////////////////////
///////////////////////////NEW ADITIONS///////////////////////////////////
void Commands::download(Tree* tree, std::string fileName)
{
Node* fileNode = tree->findNodeByName(fileName);
if (fileNode == NULL)
{
std::cout << "That file does not exist." << std::endl;
}
else if (fileNode->getIsDirectory())
{
std::cout << "This is a folder, current version does not support that." << std::endl;
}
else
{
std::cout << "Downloading..." << std::endl;
this->HDDs->readFile(fileNode);
std::cout << "Download completed." << std::endl;
}
}
bool Commands::format(std::string size)
{
if (size == "")
{
std::cout << "Please insert a size to format " << std::endl;
return false;
}
else
{
int sizeToFormat = -1;
try
{
sizeToFormat = std::stoi(size);
} catch (std::invalid_argument& e)
{
std::cout << "Please, insert a valid size." << std::endl;
return false;
}
this->HDDs->format(sizeToFormat);
return true;
}
}