-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
384 lines (306 loc) · 8.03 KB
/
main.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
#include <iostream>
#include <pthread.h>
#include <stdlib.h>
#include <sys/syscall.h>
#include <fcntl.h>
#include <unistd.h>
#include <string>
#include <vector>
using namespace std;
// the root for this terminal is Desktop of the machine!
string root_dir;
string current_dir;
string username;
vector<string> split(string str);
string getcmd(string cmd);
void routing(string cmd);
string cookArg(string arg);
void initializeUser();
void cat(string filepath);
void ls(string option = " ", string path = current_dir);
void cp(string src, string dest, string option = " ");
void mv(string src, string dest, string option = " ");
void mkdir(string dir);
void pwd();
void cd(string dir = root_dir);
void help();
void whoami();
vector<string> split(string str){
vector<string> words;
words.push_back("");
int x = 0;
for(int i = 0; i < str.size(); i++){
if(str[i] == ' '){
x++;
words.push_back("");
}
else
words[x].push_back(str[i]);
}
return words;
}
string getcmd(string cmd){
vector<string> words = split(cmd);
return words[0];
}
void routing(string cmd){
vector<string> argv = split(cmd);
for(int i = 1; i < argv.size(); i++){
if(argv[i][0] != '-')
argv[i] = cookArg(argv[i]);
}
if(argv[0] == "ls"){
if(argv.size() == 1)
ls();
else if(argv.size() > 1 && argv[1][0] == '-'){
if(argv.size() == 2)
ls(argv[1]);
else if(argv.size() == 3)
ls(argv[1], argv[2]);
else{
cout << "Wrong number of arguments!";
return;
}
}
else
ls(" ", argv[1]);
return;
}
else if(argv[0] == "cd"){
if(argv.size() == 1)
cd();
else if(argv.size() == 2)
cd(argv[1]);
else
cout << "Wrong number of arguments!";
return;
}
else if(argv[0] == "cp"){
if(argv.size() == 3){
cp(argv[1], argv[2]);
}
else if(argv.size() == 4 && argv[1][0] == '-'){
cp(argv[2], argv[3], argv[1]);
}
else{
cout << "Wrong number of arguments!";
return;
}
return;
}
else if(argv[0] == "mv"){
if(argv.size() == 3){
mv(argv[1], argv[2]);
}
else if(argv.size() == 4 && argv[1][0] == '-'){
mv(argv[2], argv[3], argv[1]);
}
else{
cout << "Wrong number of arguments!";
return;
}
return;
}
else if(argv[0] == "pwd"){
pwd();
return;
}
else if(argv[0] == "help"){
help();
return;
}
else if(argv[0] == "whoami"){
whoami();
return;
}
else if(argv[0] == "exit")
exit(0);
if(argv.size() == 0)
return;
else if(argv.size() == 1){
cout << "Command not found";
return;
}
if(argv[0] == "cat")
cat(argv[1]);
else if(argv[0] == "mkdir")
mkdir(argv[1]);
else
cout << "Command not found!";
}
string cookArg(string arg){
if(arg == "..")
arg = current_dir + "..";
else if(arg[0] == '.')
arg = current_dir;
else if(arg[0] != '/')
arg = current_dir + arg;
return arg;
}
void initializeUser(){
cout << "Welcome to myTerminal!" << endl;
cout << "Please enter username: ";
cin >> username;
root_dir = "/Users/" + username + "/";
current_dir = root_dir;
cout << endl;
}
// ___________________________________________ //
void cat(string filepath){
int status;
const char * arg = filepath.c_str();
pid_t p = fork();
if(p == 0){
execl("/bin/cat", "cat", arg, 0);
}else{
wait(&status);
sleep(1);
}
}
void ls(string option, string path){
int status;
const char * arg = path.c_str();
const char * opt = option.c_str();
pid_t p = fork();
if(p == 0){
if(option != " ")
execl("/bin/ls", "ls", opt, arg, 0);
else
execl("/bin/ls", "ls", arg, 0);
}else{
wait(&status);
sleep(1);
}
}
void cp(string src, string dest, string option){
const char * sr = src.c_str();
const char * ds = dest.c_str();
const char * opt = option.c_str();
int status;
pid_t p = fork();
if(p == 0){
if(option != " ")
execl("/bin/cp", "cp", opt, sr, ds, 0);
else
execl("/bin/cp", "cp", sr, ds, 0);
}else{
wait(&status);
sleep(1);
}
}
void mv(string src, string dest, string option){
const char * sr = src.c_str();
const char * ds = dest.c_str();
const char * opt = option.c_str();
int status;
pid_t p = fork();
if(p == 0){
if(option != " ")
execl("/bin/mv", "mv", opt, sr, ds, 0);
else
execl("/bin/mv", "mv", sr, ds, 0);
}else{
wait(&status);
sleep(1);
}
}
void mkdir(string dir){
const char * d = dir.c_str();
int status;
pid_t p = fork();
if(p == 0){
execl("/bin/mkdir", "mkdir", d, 0);
}else{
wait(&status);
sleep(1);
}
}
void pwd(){
cout << current_dir;
}
void cd(string dir){
if(dir[dir.size() - 1] != '/')
dir += "/";
const char * d = dir.c_str();
current_dir = d;
}
void whoami(){
cout << username;
}
void help(){
cout << "\ncommand name: cat";
cout << endl;
cout << endl;
cout << "void cat(string filepath)";
cout << endl;
cout << "cat command displays the content of the path file followed by the command";
cout << endl;
cout << "-------------------------------------------------------";
cout << "\ncommand name: ls";
cout << endl;
cout << endl;
cout << "void ls(string path = cuurent directory, string option[optional] )";
cout << endl;
cout << "ls command displays the content of the current directory";
cout << endl;
cout << "-------------------------------------------------------";
cout << "\ncommand name: cp";
cout << endl;
cout << endl;
cout << "void cp(string src, string dest, string option[optional] )";
cout << endl;
cout << "copies a file from the given destination to the diven source";
cout << endl;
cout << "-------------------------------------------------------";
cout <<"\ncommand name: mv";
cout<<endl;
cout<<endl;
cout<<"void mv(string src, string dest, string option[optional] )";
cout<<endl;
cout<<"moves a file from the given source to the given destination";
cout << endl;
cout<<"-------------------------------------------------------";
cout <<"\ncommand name: mkdir";
cout<<endl;
cout<<endl;
cout<<"void mkdir(string dir)";
cout<<endl;
cout<<"creates a directory if not exists";
cout << endl;
cout<<"-------------------------------------------------------";
cout <<"\ncommand name: pwd";
cout<<endl;
cout<<endl;
cout<<"void pwd()";
cout<<endl;
cout<<"displays current working directory";
cout << endl;
cout<<"-------------------------------------------------------";
cout <<"\ncommand name: cd";
cout<<endl;
cout<<endl;
cout<<"void cd(string dir = root_dir [optional] )";
cout<<endl;
cout<<"changes current directory";
cout << endl;
cout<<"-------------------------------------------------------";
cout <<"\ncommand name: whoami";
cout<<endl;
cout<<endl;
cout<<"void whoami()";
cout<<endl;
cout<<"displays the current user";
cout << endl;
cout<<"-------------------------------------------------------";
}
int main(){
initializeUser();
string cmd;
while(1){
cout << current_dir + ": " + username + "$ ";
getline(cin, cmd);
routing(cmd);
cout << endl;
}
return 0;
}