-
Notifications
You must be signed in to change notification settings - Fork 0
/
Trabalho1_FabianaFerreiraFonseca.cpp
384 lines (345 loc) · 11.5 KB
/
Trabalho1_FabianaFerreiraFonseca.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
/*Universidade Federal do Rio de Janeiro
Departamento de Engenharia Eletrôncia e de Computação
Sistemas Operacionais - 2018.2
Aluna: Fabiana Ferreira Fonseca
DRE: 115037241*/
/*TRABALHO: IMPLEMENTAÇÃO DE UM SHELL PARA LINUX COM MULTIPLAS TELAS*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string>
#include <iomanip>
#include <vector>
#include <fstream>
#include <iostream>
#include <chrono>
#include <thread>
#include <atomic>
#include "screen.h"
#include "functions.h"
#include "consts.h"
using std::chrono::system_clock;
using namespace std::this_thread; // sleep_for, sleep_until
using namespace std::chrono_literals; // ns, us, ms, s, h, etc.
using namespace std;
/*Variavel global que armazena o pid do processo que eu criei com o meu shell*/
pid_t child_pid;
pid_t currentScreen_pid;
Screen * currentScreen;
std::atomic<bool> stopThread(false);
/*Funcao que funciona como listener do sinal SIGUSR1, que matará
o processo que está rodando no meu shell*/
void signal_handler(int sigNumber)
{
if (sigNumber == SIGUSR1 && child_pid != getpid())
{
printf("Recebi um sinal de SIGUSR1. Terminando processo criado.\n");
kill(child_pid, SIGTERM);
}
}
/*Funcao que ira printar o uso de memoria e CPU continnuamente
ate keyboard interrupt*/
void printCpuAndRamUsage ()
{
double cpuUsage;
int ramUsage;
while (!stopThread){
cpuUsage = getCurrentUseOfCPU();
ramUsage = getCurrentUseOfRAM();
std::cout << std::fixed;
std::cout << std::setprecision(2);
cout << "CPU usage (%): " << cpuUsage << std::setw(2) << " | RAM usage (KB): " << ramUsage << endl;
sleep_for(2s);
}
cout << endl;
}
int main ()
{
FILE* stream;
char commandList[BUFFER*20];
char userInput [BUFFER];
char inputCopy [BUFFER];
vector <string> screenArguments;
/*Alocando memoria para criar o array que armazenará os argumentos*/
char** arguments = (char**)malloc(BUFFER*sizeof(char*));
string pathOutput = "";
unsigned exit = 0;
int pipefd[2];
/*Faço uma chamada de execv para listar os comandos que estão na
pasta bin, de forma a conseguir tratar o erro, caso o usuário entre
com um comando que não está na pasta*/
pipe(pipefd);
pid_t binDir_pid = fork();
if (binDir_pid == 0)
{
//Fecha o lado de entrada do pipe (do filho)
close(pipefd[0]);
dup2(pipefd[1], fileno(stdout));
close(pipefd[1]);
execlp("/bin/dir", "dir","-1","/bin/",NULL);
}
else
{
wait(NULL);
close(pipefd[1]);
while(read(pipefd[0], commandList, sizeof(commandList)) != 0) {}
}
/*Comeca o programa que eh visto pelo usuario*/
printUserGreeting();
/*Loop enquanto nao sai do programa principal*/
while (!exit)
{
printf(GREEN_COLOR);
cout << "$fabitsShell: ";
printf(RESET_COLOR);
signal(SIGUSR1, signal_handler);
if (fgets(userInput, BUFFER, stdin) != NULL)
{
/*Tratando a retirada do caracter de retorno que vem com a chamada da fgets*/
unsigned inputLength = strlen(userInput);
int flagCd = -1;
int flagMan = -1;
int flagClear = -1;
int flagScreen = -1;
int flagExit = -1;
int flagMonitor = -1;
/*String auxiliar para pegar apenas o nome do comando e nao as suas opcoes
na hora de checar sua existencia*/
strcpy(inputCopy,userInput);
strtok(inputCopy, DELIMITER);
flagCd = strcmp(inputCopy, "cd");
flagMan = strcmp(userInput, MAN_COMMAND);
flagClear = strcmp(userInput, CLEAR_COMMAND);
flagExit = strcmp(userInput, EXIT_COMMAND);
flagMonitor = strcmp(userInput, MONITOR_COMMAND);
string userInputString (userInput);
flagScreen = (userInputString.find(SCREEN_COMMAND) == 0) ? 0 : 1;
/*Tratando o caso em que o usuário apenas dá enter e quando o comando não existe*/
if ((inputLength == 1 && userInput[inputLength - 1] == '\n') || inputLength == 2)
{
typeCommand();
continue;
}
/*Testa todos os casos de comandos validos, se nao for, eh invalido e pede entrada de novo*/
if (strstr(commandList, inputCopy) == NULL && flagExit != 0
&& flagMan != 0
&& flagCd != 0
&& flagClear != 0
&& flagScreen != 0
&& flagMonitor != 0)
{
printInvalidCommand();
continue;
}
/*Se nao caiu nos ifs acima, o comando eh valido. Existe na pasta /bin ou eh exit ou eh man ou eh screen*/
/*Se nao caiu em nenhum dos casos anteriores, pega o input e tira o \n*/
if (inputLength > 1 && userInput[inputLength - 1] == '\n')
userInput[inputLength - 1] = '\0';
/*Trata e faz o parser da string recebida na linha de comando caso não seja man nem clear nem screen*/
if (flagMan != 0 && flagClear != 0 && flagScreen != 0 && flagExit != 0 && flagMonitor != 0)
getArgumentsFromCommand(userInput, arguments, &pathOutput);
/*Se for screen, usa outro parser*/
else if (flagScreen == 0)
{
// Clear screen arguments before parsing it again
screenArguments.clear();
screenArguments = parseString(userInput, ' ');
}
/*Entrou com um comando que não é o exit*/
if (flagExit == 0)
{
/*No caso do exit, preciso que o sigterm passe para o pid certo, o cara ativo no momento */
/*Preciso matar todos os filhos tambem*/
Screen::killAllScreens();
exit = 1;
printf("Saindo do shell. Obrigada por testar!\n");
}
else if (flagCd == 0)
chdir(arguments[1]);
else if (flagMan == 0)
printUserGuide();
else if (flagClear == 0)
system("clear");
else if (flagMonitor == 0)
{
/*Cria uma thread para rodar o print separado*/
std::thread t(printCpuAndRamUsage);
/*Observa se usuario entrou com qualquer input*/
if (getchar()) {
stopThread = true;
/*Isso aqui nao esta funcionando totalmente*/
t.join();
printf(RED_COLOR);
cout << "Comando interrompido pelo usuario" << endl;
printf(RESET_COLOR);
}
stopThread = false;
continue;
}
else if (flagScreen == 0)
{
if (screenArguments.size() > 1)
{
string command = screenArguments[1];
string screenName = "";
if (screenArguments.size() > 2)
screenName = screenArguments[2];
// list, remove, switch
if (command.compare("list") == 0)
{
Screen::listScreens();
}
else if (command.compare("remove") == 0 && !screenName.empty())
{
bool removeu = Screen::removeScreen(screenName);
if (!removeu)
{
printf(RED_COLOR);
cout << "Nome de tela invalido. Nao foi possivel exclui-la" << endl;
printf(RESET_COLOR);
continue;
}
// cout << "remove screen " << screenName << endl;
}
else if (command.compare("switch") == 0 && !screenName.empty())
{
// cout << "switch to screen " << screenName << endl;
bool achou = Screen::activateScreen(screenName);
if (!achou)
{
printf(RED_COLOR);
cout << "Nome de tela invalido. Nao foi possivel fazer o switch." << endl;
printf(RESET_COLOR);
continue;
}
}
else
{
printInvalidCommand();
continue;
}
}
else
{
currentScreen = new Screen(true);
checkError(mkfifo(currentScreen->getFilename().c_str(), 0777), "Could not create pipe");
currentScreen_pid = fork();
if (currentScreen_pid > 0)
{
//Eh o pai
currentScreen->setPid(currentScreen_pid);
}
else if (currentScreen_pid == 0)
{
/*Eh o filho*/
int pipe_read_fd = checkError(open(currentScreen->getFilename().c_str(), O_RDONLY), "Could not open pipe for reading");
char buf[20];
char input[BUFFER];
for (;;) {
ssize_t num_read = checkError(read(pipe_read_fd, buf, sizeof(buf)), "Could not read from pipe");
if (num_read == 0) {
write_str(1, "Read EOF; closing read end\n");
// checkError(close(pipe_read_fd), "Could not close pipe read end");
break;
}
else {
strncpy(input, buf, num_read);
input[num_read] = '\0';
getArgumentsFromCommand(input, arguments, &pathOutput);
char* commandPath = (char*)malloc(sizeof(char*)*20);
strcpy(commandPath, PATH);
strcat(commandPath,arguments[0]);
child_pid = fork();
if (child_pid == 0)
{
/*CHILD*/
/*Testa o caso em que o usuario não quer printar na tela a saída do comando
Nesse caso, o usuario coloca no comando onde que ele quer salvar a saida*/
if (pathOutput.length() != 0)
{
cout << "Caminho da saida foi configurado para: " + pathOutput << endl;;
stream = fopen(pathOutput.c_str(), "w");
dup2(fileno(stream), fileno(stdout));
}
execv(commandPath, arguments);
if (pathOutput.length() != 0)
fclose(stream);
}
else
{
/*PARENT*/
/*Usei o WCONTINUED pois se fosse NULL, estava recebendo um warning de cast de pointer para int.
A descrição da constante: "also return if a stopped child has been resumed by delivery of SIGCONT*/
waitpid(child_pid, NULL, WCONTINUED);
}
free(commandPath);
} /*else*/
/*Libera o espaço de memoria utilizado pelas strings dentro do array*/
freeArray(arguments);
}
} /*filho*/
} /*else*/
}
else
{
/*Tratamento do caminho para o comando a ser executado*/
char* commandPath = (char*)malloc(sizeof(char*)*20);
strcpy(commandPath, PATH);
strcat(commandPath,arguments[0]);
if (Screen::activeScreens.size() != 0)
{
/*Se for o caso de ter pelo menos uma screen ativa*/
/*Pega a screen ativa atual*/
Screen activeScreen = Screen::getActiveScreen();
// cout << "PID do processo atual: " << activeScreen.getPid() << endl;
// Parent
int pipe_write_fd = checkError(open(activeScreen.getFilename().c_str(), O_WRONLY), "Could not open pipe for writing");
write_str(pipe_write_fd, userInput);
// checkError(close(pipe_write_fd), "Could not close pipe write end");
}
else
{
child_pid = fork();
if (child_pid == 0)
{
/*CHILD*/
/*Testa o caso em que o usuario não quer printar na tela a saída do comando
Nesse caso, o usuario coloca no comando onde que ele quer salvar a saida*/
if (pathOutput.length() != 0)
{
cout << "Caminho da saida foi configurado para: " + pathOutput << endl;
stream = fopen(pathOutput.c_str(), "w");
dup2(fileno(stream), fileno(stdout));
}
/*Executa o comando pedido pelo usuario*/
execv(commandPath, arguments);
if (pathOutput.length() != 0)
fclose(stream);
}
else
{
/*PARENT*/
/*Usei o WCONTINUED pois se fosse NULL, estava recebendo um warning de cast de pointer para int.
A descrição da constante: "also return if a stopped child has been resumed by delivery of SIGCONT*/
waitpid(child_pid, NULL, WCONTINUED);
}
free(commandPath);
}
}
/*Libera o espaço de memoria utilizado pelas strings dentro do array*/
freeArray(arguments);
}
}
/*Liberado o espaço de memoria alocado pelo proprio array*/
free(arguments);
delete currentScreen;
/*Excluindo arquivos dentro da pasta de files*/
if (!Screen::activeScreens.empty())
system("exec rm -r ./.files/screen*");
return 0;
}