-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
674 lines (672 loc) · 16.1 KB
/
main.cpp
File metadata and controls
674 lines (672 loc) · 16.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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <iostream>
#include <dirent.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
#include <sys/ioctl.h>
#include <pwd.h>
#include <grp.h>
#include <time.h>
#include <bits/stdc++.h>
#define CURSORUP(x) printf("\033[%dA",x)
#define CURSORDOWN(x) printf("\033[%dB",x)
#define CURSORBACK(x) printf("\033[%dD",x)
#define CLS printf("\033[H\033[J")
#define PUTCURSER(x,y) printf("%c[%d;%dH", 27, x, y)
#define CLEARLINE printf("\033[2K")
using namespace std;
struct termios originalterm, newterm;
vector<char*> currentEntries;
vector<bool> isDir;
char root[PATH_MAX];
char* currentDir;
stack<char *> back_stack;
stack<char *> forward_stack;
string command;
struct winsize w;
int nor,noc,cursorline=0,epp=0,localCursor=0;
static int peek_char=-1;
void printType(struct stat filestatus)
{
switch (filestatus.st_mode & S_IFMT)
{
case S_IFBLK:
printf("b");
break; //block file
case S_IFCHR:
printf("c");
break; //device file
case S_IFDIR:
printf("d");
break; //directory
case S_IFIFO:
printf("p");
break; //FIFO file
case S_IFLNK:
printf("l");
break; //link
case S_IFREG:
printf("-");
break; //normal file
case S_IFSOCK:
printf("s");
break; //socket file
default:
printf("-");
break;
}
}
void printPermissions(struct stat filestatus)
{
printf((filestatus.st_mode & S_IRUSR) ? "r" : "-");
printf((filestatus.st_mode & S_IWUSR) ? "w" : "-");
printf((filestatus.st_mode & S_IXUSR) ? "x" : "-");
printf((filestatus.st_mode & S_IRGRP) ? "r" : "-");
printf((filestatus.st_mode & S_IWGRP) ? "w" : "-");
printf((filestatus.st_mode & S_IXGRP) ? "x" : "-");
printf((filestatus.st_mode & S_IROTH) ? "r" : "-");
printf((filestatus.st_mode & S_IWOTH) ? "w" : "-");
printf((filestatus.st_mode & S_IXOTH) ? "x" : "-");
}
void printSize(struct stat filestatus)
{
double size = filestatus.st_size;
int unitIndex=0;
char units[]={'B','K','M','G','T','P','E','Z','Y'};
while(size>1024.0)
{
size/=1024.0;
unitIndex++;
}
printf("%8.2f %c",size,units[unitIndex]);
}
void exitNonCanonicalmode()
{
tcsetattr(STDIN_FILENO, TCSAFLUSH, &originalterm);
}
void enterNonCanonicalmode()
{
atexit(exitNonCanonicalmode);
tcgetattr(STDIN_FILENO, &originalterm);
newterm = originalterm;
newterm.c_lflag &= ~(ECHO | ICANON); // | ISIG | IEXTEN
// newterm.c_iflag &= ~(BRKINT);
// newterm.c_cc[VMIN] = 1;
// newterm.c_cc[VTIME] = 0;
tcsetattr(STDIN_FILENO, TCSAFLUSH, &newterm);
}
void printEntry(char* entryName)
{
char *c; int i; struct passwd *pw; struct group *gp;
struct stat filestatus;
stat(entryName,&filestatus);
printf(" ");
printType(filestatus);
printf(" ");
printPermissions(filestatus);
printf(" ");
pw=getpwuid(filestatus.st_uid);
printf("%s\t",pw->pw_name);
gp=getgrgid(filestatus.st_gid);
printf("%s",gp->gr_name);
printSize(filestatus);
printf(" ");
c=ctime(&filestatus.st_mtime);
for(i=4;i<=15;i++)
printf("%c",c[i]);
printf(" ");
if(!S_ISDIR(filestatus.st_mode))
printf("%s\n",entryName);
else
printf("\033[0;33m%s\033[0m\n",entryName);
}
string getPath(string path)
{
string s;
if(path==".")
{
s=currentDir;
}
else if(path[0]=='~')
{
s=root;
string s1(path.begin()+1,path.end());
s.append(s1);
}
else if(path[0]=='.')
{
s=currentDir;
string s1(path.begin()+1,path.end());
s.append(s1);
}
else
{
s=currentDir;
s.append("/"+path);
}
return s;
}
void exploreDirectory(const char *dirPath) //populates the currentEntries and isDir vectors for the current directory
{
DIR* dirPointer=opendir(dirPath);
chdir(dirPath);
struct dirent *dirEntry;
struct stat filestatus;
isDir.clear();
currentEntries.clear();
cursorline=0;localCursor=0;
while ((dirEntry=readdir(dirPointer)) != 0)
{
currentEntries.push_back(dirEntry->d_name);
stat(dirEntry->d_name,&filestatus);
isDir.push_back(S_ISDIR(filestatus.st_mode));
}
sort(currentEntries.begin(),currentEntries.end());
}
void display(int start)
{
CLS;
ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
nor=w.ws_row; noc=w.ws_col;
printf("\033[3J"); //clear scrollback buffer
printf("\033[%d;%dH\u001b[0m\u001b[7m NORMAL MODE \u001b[0m",nor,noc/2-6);
PUTCURSER(0,0);
epp=min((int)currentEntries.size(),nor-3);
for(int i=start;i<start+epp;i++)
{
printEntry(currentEntries[i]);
}
PUTCURSER(0,0);
}
void enterKey()
{
if(isDir[cursorline] && strcmp(realpath(currentEntries[cursorline],NULL),currentDir)!=0)
{
while(!forward_stack.empty())
forward_stack.pop();
currentDir=realpath(currentEntries[cursorline],NULL);
back_stack.push(currentDir);
exploreDirectory(currentDir);
display(0);
}
else
{
pid_t pid=fork();
if(pid==0)
{
execl("/usr/bin/xdg-open","xdg-open",realpath(currentEntries[cursorline],NULL),NULL);
exit(1);
}
}
}
void backspaceKey()
{
if(strcmp(currentDir,root)!=0)
{
while(!forward_stack.empty())
forward_stack.pop();
currentDir=realpath("..",NULL);
back_stack.push(currentDir);
exploreDirectory(currentDir);
display(0);
}
}
void homeKey()
{
if(strcmp(currentDir,root)!=0)
{
while(!forward_stack.empty())
forward_stack.pop();
currentDir=root;
back_stack.push(currentDir);
exploreDirectory(currentDir);
display(0);
}
}
void backwardKey()
{
if(back_stack.size()>1)
{
forward_stack.push(currentDir);
back_stack.pop();
currentDir=back_stack.top();
exploreDirectory(currentDir);
display(0);
}
}
void forwardKey()
{
if(!forward_stack.empty())
{
currentDir=forward_stack.top();
forward_stack.pop();
back_stack.push(currentDir);
exploreDirectory(currentDir);
display(0);
}
}
void cursorUp()
{
if(cursorline>0)
{
cursorline--;
if(localCursor>0)
{
CURSORUP(1);
localCursor--;
}
else
{
display(cursorline);
PUTCURSER(0,0);
}
}
}
void cursorDown()
{
if(cursorline<(int)currentEntries.size()-1)
{
cursorline++;
if(localCursor<epp-1)
{
CURSORDOWN(1);
localCursor++;
}
else
{
display(cursorline-epp+1);
PUTCURSER(nor-3,0);
}
}
}
void pageDown()
{
cursorline=cursorline+(epp-localCursor)>((int)currentEntries.size()-epp)?((int)currentEntries.size()-epp):cursorline+(epp-localCursor);
localCursor=0;
display(cursorline);
PUTCURSER(0,0);
}
void pageUp()
{
cursorline=cursorline-(epp+localCursor)<0?0:cursorline-(epp+localCursor);
localCursor=0;
display(cursorline);
PUTCURSER(0,0);
}
vector<string> parseCommand()
{
string s;
vector<string> v;
for(int i=0; i<command.length();i++)
{
if(command[i]==' ')
{
v.push_back(s);
s.clear();
continue;
}
s+=command[i];
}
v.push_back(s);
command.clear();
return v;
}
void gotoCommand(string path)
{
while(!forward_stack.empty())
forward_stack.pop();
string s=getPath(path);
char p[s.length()];
strcpy(p,s.c_str());
currentDir=p;
back_stack.push(currentDir);
exploreDirectory(currentDir);
display(0);
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
}
void renameCommand(string old, string _new)
{
string s1=getPath(old);
string s2=getPath(_new);
rename(s1.c_str(),s2.c_str());
exploreDirectory(currentDir);
display(0);
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
}
void create_dirCommand(string name, string path)
{
string dfolder=getPath(path);
string dpath=dfolder+"/"+name;
mkdir(dpath.c_str(),0777);
}
void create_fileCommand(string name, string path)
{
string dfolder=getPath(path);
string dpath=dfolder+"/"+name;
FILE* file=fopen(dpath.c_str(),"w+");
fclose(file);
}
void copyFile(string sourcePath, string dpath)
{
FILE *ff,*tf;
char ch;
if((ff=fopen(sourcePath.c_str(),"r"))==NULL)
return;
if((tf=fopen(dpath.c_str(),"w"))==NULL)
return;
while(!feof(ff))
{
ch=getc(ff);
putc(ch,tf);
}
struct stat fs;
stat(sourcePath.c_str(),&fs);
chown(dpath.c_str(),fs.st_uid, fs.st_gid);
chmod(dpath.c_str(), fs.st_mode);
fclose(ff);
fclose(tf);
}
void copyDirectory(string sourcePath, string dpath)
{
DIR* dp;
dp=opendir(sourcePath.c_str());
struct dirent* d;
while(d=readdir(dp))
{
if(strcmp(d->d_name,".")==0 || strcmp(d->d_name,"..")==0)
continue;
else
{
string recursiveSourcePath=sourcePath+"/"+string(d->d_name);
string recursiveDPath=dpath+"/"+string(d->d_name);
struct stat s;
stat(sourcePath.c_str(),&s);
if(S_ISDIR(s.st_mode))
{
mkdir(recursiveDPath.c_str(),0777);
copyDirectory(recursiveSourcePath,recursiveDPath);
}
else
{
copyFile(recursiveSourcePath,recursiveDPath);
}
}
}
}
void copyCommand(string source, string destination)
{
string sourcePath=getPath(source);
string dfolder=getPath(destination);
size_t index=sourcePath.find_last_of("/\\");
string dpath=dfolder+"/"+sourcePath.substr(index+1,sourcePath.length()-index);
struct stat s;
if(stat(sourcePath.c_str(),&s)==0)
{
if(S_ISDIR(s.st_mode))
{
copyDirectory(sourcePath,dpath);
}
else
{
copyFile(sourcePath,dpath);
}
}
}
void deleteFile(string path)
{
string delpath=getPath(path);
remove(delpath.c_str());
}
void deleteRecursively(string delpath)
{
DIR* dp;
dp=opendir(delpath.c_str());
struct dirent* d;
while(d=readdir(dp))
{
if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0)
continue;
else
{
string recpath=delpath+"/"+string(d->d_name);
struct stat s;
stat(recpath.c_str(),&s);
if(S_ISDIR(s.st_mode))
{
deleteRecursively(recpath);
}
else
{
remove(recpath.c_str());
}
}
}
rmdir(delpath.c_str());
closedir(dp);
return;
}
void deleteDir(string path)
{
string delpath=getPath(path);
deleteRecursively(delpath);
}
bool searchCommand(string file)
{
DIR* dir;
dirent* cur;
dir=opendir(root);
while((cur=readdir(dir))!=NULL)
{
string name=cur->d_name;
if(name=="." || name=="..")
continue;
if(cur->d_type==DT_DIR)
{
if(name==file)
{
closedir(dir);
return true;
}
}
}
return false;
}
void readKeyboardCommand()
{
char key;
while(1)
{
fflush(0);
key=cin.get();
if(key==27)
{
PUTCURSER(nor,0);
CLEARLINE;
printf("\033[%d;%dH\u001b[0m\u001b[7m NORMAL MODE \u001b[0m",nor,noc/2-6);
display(cursorline-localCursor);
PUTCURSER(localCursor+1,0);
return;
}
else if(key==8 || key==127)
{
CURSORBACK(1);
printf("\033[K");
command=command.substr(0,command.length()-1);
}
else if(key==10)
{
vector<string> cmd=parseCommand();
if(cmd[0]=="goto")
{
gotoCommand(cmd[1]);
}
else if(cmd[0]=="rename")
{
renameCommand(cmd[1],cmd[2]);
}
else if(cmd[0]=="create_dir")
{
int count=cmd.size();
for(int i=1;i<count-1;i++)
{
create_dirCommand(cmd[i],cmd[count-1]);
}
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
}
else if(cmd[0]=="create_file")
{
int count=cmd.size();
for(int i=1;i<count-1;i++)
{
create_fileCommand(cmd[i],cmd[count-1]);
}
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
}
else if(cmd[0]=="copy")
{
int count=cmd.size();
for(int i=1;i<count-1;i++)
{
copyCommand(cmd[i],cmd[count-1]);
}
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
}
else if(cmd[0]=="delete_file")
{
deleteFile(cmd[1]);
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
}
else if(cmd[0]=="delete_dir")
{
deleteDir(cmd[1]);
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
}
else if(cmd[0]=="move")
{
int count=cmd.size();
for(int i=1;i<count-1;i++)
{
copyCommand(cmd[i],cmd[count-1]);
string p=getPath(cmd[i]);
struct stat s;
stat(p.c_str(),&s);
if(S_ISDIR(s.st_mode))
{
deleteDir(cmd[i]);
}
else
{
deleteFile(cmd[i]);
}
}
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
}
else if(cmd[0]=="search")
{
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
if(searchCommand(cmd[1]))
printf("true");
}
}
else
{
printf("%c",key);
command+=key;
}
}
}
void commandMode()
{
PUTCURSER(nor,0);
CLEARLINE;
cout<<"command mode: ";
readKeyboardCommand();
}
void readKeyboardNormal()
{
char key;
while(1)
{
fflush(0);
key=cin.get();
if(key==10)
{
enterKey();
}
else if(key==127)
{
backspaceKey();
}
else if((key=='h' || key=='H'))
{
homeKey();
}
else if(key==27)
{
cin.get();
switch(cin.get())
{
case 'A':
cursorUp();
break;
case 'B':
cursorDown();
break;
case 'C':
forwardKey();
break;
case 'D':
backwardKey();
break;
}
}
else if(key==':')
{
commandMode();
}
else if(key=='i' || key=='I')
{
pageUp();
}
else if(key=='k' || key=='K')
{
pageDown();
}
if(key=='q' || key=='Q')
{
CLS;
exit(0);
}
}
}
int main(int argc, char* argv[])
{
getcwd(root,sizeof(root));
currentDir=root;
back_stack.push(currentDir);
exploreDirectory(currentDir);
display(0);
enterNonCanonicalmode();
readKeyboardNormal();
}