-
Notifications
You must be signed in to change notification settings - Fork 0
/
terminal.cpp
154 lines (135 loc) · 4.55 KB
/
terminal.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
#include <iostream>
#include <string>
#include <unistd.h>
#include <signal.h>
#include <sys/wait.h>
using namespace std;
void signalHandler(int signal);
void childHandler(int /*signum*/);
void performLsAction(const string& args);
void performCatAction(const string& args);
void performNiceAction(const string& args);
void killAllProcesses(const string& args);
void suspendProcess(pid_t pid);
void resumeProcess(pid_t pid);
void performPsAction(const string& args);
void performTopAction(const string& args);
void executeExternalCommand(const string& args);
int main() {
signal(SIGINT, signalHandler);
signal(SIGCHLD, childHandler);
string command;
while (true) {
usleep(500000);
cout << "Enter a command: ";
getline(cin, command);
size_t space_pos = command.find(' ');
string cmd, args;
if (space_pos != string::npos) {
cmd = command.substr(0, space_pos);
args = command.substr(space_pos + 1);
} else {
cmd = command;
}
if (cmd == "ls") {
performLsAction(args);
} else if (cmd == "cat") {
performCatAction(args);
} else if (cmd == "nice") {
performNiceAction(args);
} else if (cmd == "killall") {
killAllProcesses(args);
} else if (cmd == "suspend") {
pid_t pid = stoi(args);
suspendProcess(pid);
} else if (cmd == "resume") {
pid_t pid = stoi(args);
resumeProcess(pid);
} else if (cmd == "ps") {
performPsAction(args);
} else if (cmd == "run") {
executeExternalCommand(args);
} else if (cmd == "top") {
performTopAction(args);
} else if (cmd == "exit") {
cout << "Exiting...\n";
break;
} else {
cout << "Invalid command\n";
}
}
return 0;
}
// Обработчик сигналов
void signalHandler(int signal) {
if (signal == SIGINT) {
cout << "\nReceived SIGINT. Exiting...\n";
exit(0);
}
}
// Обработчик сигнала SIGCHLD (завершение дочернего процесса)
void childHandler(int /*signum*/) {
pid_t pid;
int status;
while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
cout << "Child process " << pid << " terminated\n";
}
}
// Функция для выполнения "ls" действия
void performLsAction(const string& args) {
cout << "Listing directory contents:\n";
string command = "ls " + args;
system(command.c_str());
}
// Функция для выполнения "cat" действия
void performCatAction(const string& args) {
cout << "Reading your file:'\n'";
string command = "cat " + args;
system(command.c_str());
}
// Функция для выполнения "nice" действия
void performNiceAction(const string& args) {
cout << "Performing a nice action...\n";
string command = "nice " + args;
system(command.c_str());
}
// Функция для завершения всех процессов
void killAllProcesses(const string& args) {
cout << "Killing all \"" << args << "\" processes...\n";
string command = "killall '" + args + "'";
system(command.c_str());
}
// Функция для приостановки выполнения процесса
void suspendProcess(pid_t pid) {
kill(pid, SIGSTOP);
cout << "Process with PID " << pid << " suspended\n";
}
// Функция для продолжения выполнения процесса
void resumeProcess(pid_t pid) {
kill(pid, SIGCONT);
cout << "Process with PID " << pid << " resumed\n";
}
// Функция для просмотра процессов
void performPsAction(const string& args) {
cout << "Performing ps action...\n";
string command = "ps " + args;
system(command.c_str());
}
// Функция для просмотра процессов
void performTopAction(const string& args) {
cout << "Performing top action...\n";
string command = "top " + args;
system(command.c_str());
}
//Функция для запуска внешней программы
void executeExternalCommand(const string& args) {
pid_t pid = fork();
if (pid == 0) { // Child process
string tmpCmd = "/Applications/" + args + ".app/Contents/MacOS/" + args;
execlp(tmpCmd.c_str(), args.c_str(), NULL);
cerr << "Failed to execute external program\n";
exit(1);
} else if (pid < 0) { // Fork failed
cerr << "Fork failed\n";
}
}