-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
93 lines (64 loc) · 2.08 KB
/
main.c
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
#include "commands/commands.h"
#include <stdio.h>
#include <string.h>
#include <regex.h>
#include <stdlib.h>
#include <ctype.h>
char *strupr(char *str) {
unsigned char *p = (unsigned char *)str;
while (*p) {
*p = toupper(*p);
p++;
}
return str;
}
int main(int argc, char *argv[]){
int control = 0;
char line[500];
char *params[5];
char *delim = " ";
FILE *__stream__ = stdin;
if (argc > 1) {
if (!strcmp(argv[1], "--arquivo")){
__stream__ = fopen(argv[2], "r");
}
}
while (control == 0) {
printf("[SHELL >$]");
fgets(line, 500, __stream__); //Lê os comandos no terminalW
int param_index = 0;
char *pch;
pch = strtok(line, delim); //Encontra o primeiro delimitador (" ") na string {line}
while (pch != NULL) {
if (pch[strlen(pch)-1] == '\n')
pch[strlen(pch)-1] = '\0';
params[param_index] = malloc(sizeof(char)*(strlen(pch)+1)); // Alocação dinâmica dos parâmetros contidos na string {pch}
params[param_index][strlen(pch)] = '\0';
strcpy(params[param_index], pch);
param_index++;
pch = strtok(NULL, delim);
}
free(pch);
if (param_index != 0) {
strcpy(params[0], strupr(params[0]));
char result[500];
int func_index = check_functions(params[0]);
if (!strcmp(params[0], "EB")){
strcpy(result, "saindo");
control = 1;
} else if (func_index != -1) {
interpreter(result, param_index, params, func_index);
} else if (!strcmp(params[0], "")) {
strcpy(result, "");
} else {
strcpy(result, "syntax error");
}
printf ("%s\n", result);
if (!strcmp(result, "syntax error")){
control = 1;
}
// fgetc(stdin);
}
}
return 0;
}