-
Notifications
You must be signed in to change notification settings - Fork 0
/
mbash.c
302 lines (277 loc) · 7.84 KB
/
mbash.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
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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <dirent.h>
#include <termios.h>
#define MAXLI 2048
#define MAX_ARGS 10
char cmd[MAXLI];
int commandLength = 0;
char *args[MAX_ARGS];
int i;
int current_command = 0;
int nbCommandes;
FILE *fp;
// 0 si invalide, 1 si valide et 2 si les flèches sont pressés (pour reprendre les anciennes commandes)
int caractereValide = 1;
// 1 si flèche du haut pressée, 0 si flèche du bas
int up = 1;
void mbash();
int parseCommand(char *command);
void clearScreen();
//int tabCompletion(char *commandPart);
int traiterTouchesSpe(char *touche, struct termios term);
int traiterTouchesSpe(char *touche, struct termios term) {
// Permet de traiter les touches spéciales / raccourcis dans le bash
if (*touche == 12) {
clearScreen();
*touche = '\n';
return 0;
} else if (*touche == 127) {
if (commandLength > 0) {
printf("\b \b");
commandLength--;
cmd[commandLength] = ' ';
}
caractereValide = 0;
return 1;
} else if (*touche == VEOF) {
printf("\n\n FIN DU PROGRAMME\n\n");
tcgetattr(STDIN_FILENO, &term);
term.c_lflag |= ICANON | ECHO;
tcsetattr(STDIN_FILENO, TCSANOW, &term);
exit(0);
return 0;
} else if (*touche == 65) {
caractereValide=2;
commandLength = commandLength-2;
up = 1;
return 1;
} else if (*touche == 66) {
commandLength = commandLength-2;
caractereValide=2;
up = 0;
return 1;
} else if (*touche == '\n') {
if (commandLength == 0) {
printf("\n");
}
return 0;
}
return 1;
}
//int tabCompletion(char *commandPart) {
// Permet de compléter la commande avec la touche tab
// char* results[100];
//int nbResults = 0;
//char* smallestFileName = "lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll";
// char* dirname = ".";
//DIR* dir = opendir(dirname);
//struct dirent* entry;
//while ((entry = readdir(dir)) != NULL) {
// if (strstr(entry->d_name, commandPart) != NULL) {
//printf("%s\n", entry->d_name);
// results[nbResults] = entry->d_name;
// nbResults++;
// if (strlen(entry->d_name) < strlen(smallestFileName)) {
// smallestFileName = entry->d_name;
// }
// }
// }
// if (nbResults == 1) {
// commandPart = results[0];
// } else if (nbResults > 1) {
// for (int j = 0; j < nbResults; j++) {
// printf("%s\n", results[nbResults]);
// }
// }
// closedir(dir);
// return 0;
//}
void clearScreen() {
printf("\033[2J\033[1;1H");
}
int main(int argc, char** argv) {
// Déclaration des attriburs nécessaires à la méthode
char ch;
int chValide = 1;
int iterateur = 0;
char *home = getenv("HOME");
char file_path[200];
sprintf(file_path, "%s/.history", home);
struct termios term, save;
char ligne[MAXLI];
nbCommandes = 0;
if (access(file_path, F_OK) != -1) {
fp = fopen(file_path, "r");
if (fp != NULL) {
while (fgets(ligne, sizeof(ligne), fp) != NULL) {
nbCommandes++;
}
}
fclose(fp);
}
while (1) {
// On récupère le répertoire courant
char cwd[1024];
if (getcwd(cwd, sizeof(cwd)) == NULL) {
perror("getcwd() error");
}
// Puis on l'affiche en tant que prompt
printf("%s > ",cwd);
// On désactive la bufferisation et l'affichage pour pouvoir traiter les raccourcis (on réactivera l'affichage uniquement pour les caractères non spéciaux)
tcgetattr(STDIN_FILENO, &term);
save = term;
term.c_lflag &= ~(ICANON | ECHO );
tcsetattr(STDIN_FILENO, TCSANOW, &term);
// On entre les caractères 1 par 1 jusqu'à que ce soit un caractère spécifique comme Entrée
ch = getchar();
while (traiterTouchesSpe(&ch, term)) {
tcgetattr(STDIN_FILENO, &term); term.c_lflag &= ~ECHO; tcsetattr(STDIN_FILENO, TCSANOW, &term);
// Si le caractère est "lambda"
if (caractereValide == 1) {
tcgetattr(STDIN_FILENO, &term); term.c_lflag |= ECHO; tcsetattr(STDIN_FILENO, TCSANOW, &term);
printf("%c",ch);
cmd[commandLength] = ch;
commandLength++;
tcgetattr(STDIN_FILENO, &term); term.c_lflag &= ~ECHO; tcsetattr(STDIN_FILENO, TCSANOW, &term);
// Si les flèches sont pressées
} else if (caractereValide == 2) {
tcgetattr(STDIN_FILENO, &term); term.c_lflag |= ECHO; tcsetattr(STDIN_FILENO, TCSANOW, &term);
if (up == 1) {
if (current_command > 0) {
current_command--;
}
} else {
if (current_command < nbCommandes) {
current_command++;
}
}
if (current_command >= 0 && current_command <= nbCommandes) {
fp = fopen(file_path, "r");
if (fp != NULL) {
memset(cmd, 0, sizeof(cmd));
commandLength = 0;
for (int k = 0; k <= current_command; k++) {
fgets(ligne, sizeof(ligne), fp);
}
int j = 0;
while (ligne[j] != '\0') {
cmd[j] = ligne[j];
printf("%c", cmd[j-1]);
j++;
commandLength++;
}
}
fclose(fp);
}
tcgetattr(STDIN_FILENO, &term); term.c_lflag &= ~ECHO; tcsetattr(STDIN_FILENO, TCSANOW, &term);
}
caractereValide = 1;
ch = getchar();
}
tcgetattr(STDIN_FILENO, &term); term.c_lflag |= ECHO; tcsetattr(STDIN_FILENO, TCSANOW, &term);
// On traite la commande si elle n'est pas NULL
if (commandLength > 0) {
printf("\nCommande : %s\n",cmd);
fp = fopen(file_path, "a");
if (fp != NULL) {
fprintf(fp, "%s\n", cmd);
}
fclose(fp);
// Si la commande n'est pas "spéciale", il faut l'exécuter
if (parseCommand(cmd) == 0) {
mbash();
}
// Supprime l'ancienne commande et l'enregistre dans un tableau (pour history)
while (iterateur < commandLength) {
cmd[iterateur] = ' ';
iterateur++;
}
// Reset des variables
nbCommandes++;
current_command = nbCommandes;
iterateur = 0;
commandLength = 0;
chValide = 1;
}
}
return 0;
}
int parseCommand(char *command) {
// Déclaration des attriburs nécessaires à la méthode
char *home = getenv("HOME");
char file_path[200];
sprintf(file_path, "%s/.history", home);
char ligne[MAXLI];
i = 0;
// On découpe la commande par espace pour chaque argument
char *token = strtok(command, " ");
while (token) {
args[i++] = token;
token = strtok(NULL, " ");
}
args[i] = NULL;
// Traitement des commandes spéciales
if (strcmp(args[0], "exit") == 0) {
exit(0);
}
if (strcmp(args[0], "clear") == 0) {
clearScreen();
return 1;
}
if (strcmp(args[0], "cd") == 0) {
if (args[1] != NULL) {
if (chdir(args[1]) != 0) {
perror("ERROR");
printf("erreur bien ici");
}
} else {
chdir(getenv("HOME"));
}
return 1;
}
if (strcmp(args[0], "home") == 0) {
chdir(getenv("HOME"));
return 1;
}
if (strcmp(args[0], "upd") == 0) {
system("sudo apt-get update");
return 1;
}
if (strcmp(args[0], "upg") == 0) {
system("sudo apt-get upgrade");
return 1;
}
if (strcmp(args[0], "history") == 0) {
fp = fopen(file_path, "r");
int iterator = 1;
while (fgets(ligne, sizeof(ligne), fp) != NULL) {
printf("%d : %s", iterator,ligne);
iterator++;
}
fclose(fp);
return 1;
}
return 0;
}
void mbash() {
// fork() pour traiter les cas avec &
pid_t pid = fork();
if (pid == 0) {
if (execvp(args[0], args) == -1) {
perror("ERROR");
}
exit(EXIT_FAILURE);
} else if (pid < 0) {
perror ("ERROR");
} else {
if (strcmp(args[i-1], "&") != 0) {
waitpid(pid, NULL, WUNTRACED);
}
}
}