-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cpp
647 lines (623 loc) · 17.3 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
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
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
#include <csignal>
#include <windows.h>
#include <thread>
#include "Feature/features.h"
CommandHistory commandHistory;
FunctionManager functionManager;
EnvironmentManager environmentManager;
VariableManager variableManager(environmentManager);
FileManager fileManager;
ProcessManager processManager;
DirectoryManager directoryManager;
SystemUtils systemUtils;
AliasManager aliasManager;
BookmarkManager bookmarkManager;
ConsoleColor currentColor = ConsoleColor::WHITE;
// Hàm in ra các thông tin ban đầu khi shell khởi động
void printInitialInfo()
{
// Lấy PID của chính tiến trình hiện tại (main.exe)
DWORD pid = GetCurrentProcessId();
// In ra các thông tin ban đầu
std::cout << "========================================" << std::endl;
std::cout << " Tiny Shell " << std::endl;
std::cout << "========================================" << std::endl;
std::cout << "Welcome to Tiny Shell!" << std::endl;
std::cout << "This is a simple shell program to interact with the Windows operating system." << std::endl;
std::cout << "PID of Tiny Shell: " << pid << std::endl;
std::cout << "Type 'help' to see the list of available commands." << std::endl;
std::cout << "========================================" << std::endl;
}
// Hàm thực thi lệnh -> Có tất cả 58 lệnh
void executeCommand(const std::string &command, const std::vector<std::string> &args)
{
if (command == "change_color")
{
if (!args.empty())
{
currentColor = parseColor(args[0]);
setColor(currentColor);
std::cout << "Color changed to " << args[0] << std::endl;
}
else
{
std::cout << "Usage: change_color <color_name>" << std::endl;
}
return; // Ensure the color change command exits the function
}
if (command == "delete")
{
directoryManager.deleteDirectory(args);
}
else if (command == "move")
{
directoryManager.moveDirectory(args);
}
else if (command == "open")
{
fileManager.openFile(args);
}
else if (command == "create_file")
{
fileManager.createFile(args);
}
else if (command == "delete_file")
{
fileManager.deleteFile(args);
}
else if (command == "move_file")
{
fileManager.moveFile(args);
}
else if (command == "copy_file")
{
fileManager.copyFile(args);
}
else if (command == "check_file")
{
fileManager.checkFileExistence(args);
}
else if (command == "extension_file")
{
fileManager.printFileExtensions(args);
}
else if (command == "list_file")
{
fileManager.listFilesWithExtension(args);
}
else if (command == "exit")
{
exitShell();
PostQuitMessage(0); // Exit the program
}
else if (command == "list_tree")
{
directoryManager.listDirectoryTree(args);
}
else if (command == "create")
{
directoryManager.createDirectory(args);
}
else if (command == "copy")
{
directoryManager.copyDirectory(args);
}
else if (command == "run")
{
runScript(args);
}
else if (command == "help")
{
showHelp(args);
}
else if (command == "rename")
{
fileManager.renameFile(args);
}
else if (command == "cd")
{
changeDirectory(args);
}
else if (command == "dir")
{
listDirectoryContents(args);
}
else if (command == "pwd")
{
printWorkingDirectory(args);
}
else if (command == "start_foreground")
{
processManager.startProcessForeground(args);
}
else if (command == "start_background")
{
processManager.startProcessBackground(args);
}
else if (command == "terminate")
{
processManager.terminateProcess(args);
}
else if (command == "list_processes")
{
processManager.listProcesses(args);
}
else if (command == "list_children")
{
processManager.printAllChildProcesses(args);
}
else if (command == "child")
{
processManager.startChildProcess();
}
else if (command == "countdown")
{
processManager.startCountdownProcess();
}
else if (command == "manage_threads")
{
handleManageThreadsCommand(args);
}
else if (command == "time")
{
systemUtils.showSystemTime(args);
}
else if (command == "date")
{
systemUtils.showSystemDate(args);
}
else if (command == "uptime")
{
systemUtils.showSystemUptime(args);
}
else if (command == "cpuinfo")
{
systemUtils.showCPUInfo(args);
}
else if (command == "meminfo")
{
systemUtils.showMemoryInfo(args);
}
else if (command == "diskinfo")
{
systemUtils.showDiskInfo(args);
}
else if (command == "calculator")
{
systemUtils.showCalculator(args);
}
else if (command == "history")
{
commandHistory.show();
}
else if (command == "clear_history")
{
commandHistory.clear();
}
else if (command == "clear")
{
clearScreen();
}
else if (command == "calculate")
{
// Nếu có tham số truyền vào thì thực hiện tính toán
if (!args.empty())
{
// Gọi hàm evaluateExpression từ biến variableManager để tính toán biểu thức
try
{
double result = variableManager.evaluateExpression(args);
std::cout << result << std::endl;
}
catch (const std::exception &e)
{
std::cout << "Error: " << e.what() << std::endl;
}
}
else
{
std::cout << "Usage: calculate <expression>" << std::endl;
}
}
else if (command == "dancing")
{
dancing();
}
else if (command == "tictactoe")
{
processManager.startTicTacToe();
}
else if (command == "duck")
{
processManager.startDuck();
}
else if (command == "function")
{
try
{
functionManager.defineFunction(args);
}
catch (const std::exception &e)
{
std::cout << "Error: " << e.what() << std::endl;
}
}
else if (command == "evaluate")
{
try
{
double result = functionManager.evaluateFunction(args, variableManager);
std::cout << result << std::endl;
}
catch (const std::exception &e)
{
std::cout << "Error: " << e.what() << std::endl;
}
}
else if (command == "if")
{
if (args.size() < 1)
{
std::cout << "Usage: if (<condition>): <command> else <command>" << std::endl;
}
else
{
handleIfElse(args, variableManager);
}
}
else if (command == "loop")
{
if (args.size() < 1)
{
std::cout << "Usage: loop <number_of_iterations> <command1> & <command2> & ..." << std::endl;
}
else
{
handleLoop(args);
}
}
else if (command == "suspend")
{
processManager.suspendProc(args);
}
else if (command == "resume")
{
processManager.resumeProc(args);
}
else if (command == "add_path")
{
if (!args.empty())
{
environmentManager.addToPath(args[0]);
}
else
{
std::cout << "Usage: add_path <path>" << std::endl;
}
}
else if (command == "remove_path")
{
if (!args.empty())
{
environmentManager.removeFromPath(args[0]);
}
else
{
std::cout << "Usage: remove_path <path>" << std::endl;
}
}
else if (command == "print_env")
{
if (!args.empty())
{
environmentManager.printEnv(args[0]);
}
else
{
std::cout << "Usage: print_env <variable>" << std::endl;
}
}
else if (command == "set_env")
{
// // Nếu có đúng 2 tham số thì thiết lập biến môi trường
// if (args.size() == 2)
// {
// environmentManager.setEnv(args[0], args[1]);
// }
// // Nếu có nhiều hơn 2 tham số thì phần tử thứ 2 trở đi sẽ là biểu thức cần tính toán
// else if (args.size() > 2)
// {
// std::vector<std::string> expression(args.begin() + 1, args.end());
// try
// {
// int result = variableManager.evaluateExpression(expression);
// environmentManager.setEnv(args[0], std::to_string(result));
// }
// catch (const std::exception &e)
// {
// std::cout << "Error: " << e.what() << std::endl;
// }
// } // Nếu không có tham số nào thì thông báo lỗi
// else
// {
// std::cout << "Usage: set_env <variable> <value> or set_env <variable> <expression>" << std::endl;
// }
// Nếu có đúng 3 tham số và tham số thứ 2 là dấu bằng (=) thì thiết lập biến môi trường
if (args.size() == 3 && args[1] == "=")
{
environmentManager.setEnv(args[0], args[2]);
}
// Nếu có nhiều hơn 3 tham số thì phần tử thứ 2 trở đi sẽ là biểu thức cần tính toán
else if (args.size() > 3)
{
std::vector<std::string> expression(args.begin() + 2, args.end());
try
{
int result = variableManager.evaluateExpression(expression);
environmentManager.setEnv(args[0], std::to_string(result));
}
catch (const std::exception &e)
{
std::cout << "Error: " << e.what() << std::endl;
}
}
// Nếu không có tham số nào thì thông báo lỗi
else
{
std::cout << "Usage: set_env <variable> = <value> or set_env <variable> = <expression>" << std::endl;
}
}
else if (command == "unset_env")
{
if (!args.empty())
{
environmentManager.unsetEnv(args[0]);
}
else
{
std::cout << "Usage: unset_env <variable>" << std::endl;
}
}
else if (command == "list_env")
{
environmentManager.listAllEnv();
}
else if (command == "is_in_path")
{
if (!args.empty())
{
bool result = environmentManager.isInPath(args[0]);
std::cout << args[0] << (result ? " is" : " is not") << " in PATH." << std::endl;
}
else
{
std::cout << "Usage: is_in_path <path>" << std::endl;
}
}
else if (command == "save_env")
{
if (!args.empty())
{
environmentManager.saveEnvToFile(args[0]);
}
else
{
std::cout << "Usage: save_env <filename>" << std::endl;
}
}
else if (command == "load_env")
{
if (!args.empty())
{
environmentManager.loadEnvFromFile(args[0]);
}
else
{
std::cout << "Usage: load_env <filename>" << std::endl;
}
}
else if (command == "write_file")
{
try
{
fileManager.writeFile(args);
}
catch (const std::exception &e)
{
std::cout << "Error: " << e.what() << std::endl;
}
}
else if (command == "read_file")
{
try
{
fileManager.readFile(args);
}
catch (const std::exception &e)
{
std::cout << "Error: " << e.what() << std::endl;
}
}
else if (command == "file_size")
{
if (!args.empty())
{
fileManager.showFileSize(args[0]);
}
else
{
std::cout << "Usage: file_size <file_name>" << std::endl;
}
}
else if (command == "convert")
{
handleBaseConversion(args);
}
else if (command == "bookmark")
{
if (args.size() == 3 && args[0] == "add")
{
bookmarkManager.addBookmark(args[1], args[2]);
}
else if (args.size() == 2 && args[0] == "remove")
{
bookmarkManager.removeBookmark(args[1]);
}
else if (args.size() == 1 && args[0] == "list")
{
bookmarkManager.listBookmarks();
}
else if (args.size() == 2 && args[0] == "go")
{
bookmarkManager.goBookmark(args[1]);
}
else if (args.size() == 1 && args[0] == "home")
{
bookmarkManager.goHomeDirectory();
}
else
{
std::cerr << "Usage: bookmark [add <name> <path> | remove <name> | list | go <name> | home]" << std::endl;
}
}
else if (command == "after")
{
scheduleCommand(args);
}
else if (command == "alias")
{
if (args.empty())
{
aliasManager.listAliases();
}
else if (args.size() == 3)
{
aliasManager.addAlias(args[0], args[2]);
}
else
{
std::cerr << "Usage: alias <name> = <command> or alias" << std::endl;
}
}
else if (command == "unalias")
{
if (!args.empty())
{
aliasManager.removeAlias(args[0]);
}
else
{
std::cerr << "Usage: unalias <name>" << std::endl;
}
}
else
{
std::cout << "Unknown command: " << command << std::endl;
}
}
// Hàm này để tách input thành các tokens, mỗi token là một phần của input
/* Ví dụ:
| Input: calcualte 1 + 2 => tokens: ["calculate", "1", "+", "2"]
| Input write_file "Hello World" "output.txt" => tokens: ["write_file", "Hello World", "output.txt"]
|
| [!] Một số trường hợp khi toán tử (các dấu ngoặc, +, -, *, /) không có khoảng trắng ở giữa,
| cần phải tách ra thành các token riêng biệt.
| Ví dụ: calculate (1+2) => tokens: ["calculate", "(", "1", "+", "2", ")"]
|
| [!] Một số trường hợp khi có dấu ngoặc kép, cần phải giữ nguyên nội dung trong dấu ngoặc.
| Và nếu gặp dấu phẩy (,) thì cũng cần phải tách ra thành token riêng biệt.
| Ví dụ: function f(x, y) "x + y" => tokens: ["function", "f", "(", "x", ",", "y", ")", "\"x + y\""]
*/
std::vector<std::string> splitInput(const std::string &input)
{
std::vector<std::string> tokens;
std::string token;
bool inQuotes = false;
for (char ch : input)
{
if (ch == '\"')
{
inQuotes = !inQuotes;
if (!inQuotes) // End of quoted string
{
tokens.push_back(token);
token.clear();
}
}
else if (isspace(ch) && !inQuotes)
{
if (!token.empty())
{
tokens.push_back(token);
token.clear();
}
}
else if ((ch == '(' || ch == ')' || ch == ',' || ch == '+' || ch == '-' || ch == '*' || ch == '/' || ch == '<' || ch == '>') && !inQuotes)
{
if (!token.empty())
{
tokens.push_back(token);
token.clear();
}
tokens.push_back(std::string(1, ch));
}
else
{
token += ch;
}
}
if (!token.empty())
{
tokens.push_back(token);
}
// Nếu tokens không rỗng thì giải quyết alias
if (!tokens.empty())
{
tokens[0] = aliasManager.resolveAlias(tokens[0]);
}
return tokens;
}
int main()
{
// In ra thông tin ban đầu khi shell khởi động
printInitialInfo();
commandHistory.load(); // Tải lịch sử từ file (nếu có)
std::string input;
signal(SIGINT, SIG_IGN);
while (true)
{
setColor(ConsoleColor::YELLOW);
std::cout << "tiny_shell> ";
resetColor();
setColor(currentColor);
std::getline(std::cin, input);
if (std::cin.fail() || std::cin.eof())
{
std::cin.clear();
std::cout << std::endl;
continue;
}
// Ghi câu lệnh vào lịch sử
commandHistory.add(input);
// splitInput để tách input thành các tokens
std::vector<std::string> tokens = splitInput(input);
if (tokens.empty())
continue;
// Lấy lệnh từ tokens, là phần tử đầu tiên
/* Ví dụ:
| Input: calculate 1 + 2 => tokens: ["calculate", "1", "+", "2"] => command: "calculate"
| Input write_file "Hello World" "output.txt" => tokens: ["write_file", "Hello World", "output.txt"] => command: "write_file"
| Thành phần này quyết định hành động tiếp theo sẽ được thực hiện.
*/
std::string command = tokens[0];
// Xóa lệnh ra khỏi tokens => tokens chỉ còn các tham số của lệnh
tokens.erase(tokens.begin());
// Xử lý các lệnh còn lại
executeCommand(command, tokens);
}
return 0;
}