-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini_shell.c
817 lines (722 loc) · 22 KB
/
mini_shell.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
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
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
/*
Autores:
- Marc Link Cladera
- Carlos Gálvez Mena
- Jesús Castillo Benito
*/
#define _POSIX_C_SOURCE 200112L
#define RESET "\033[0m"
#define NEGRO_T "\x1b[30m"
#define NEGRO_F "\x1b[40m"
#define GRIS_T "\x1b[94m"
#define ROJO_T "\x1b[31m"
#define VERDE_T "\x1b[32m"
#define AMARILLO_T "\x1b[33m"
#define AZUL_T "\x1b[34m"
#define MAGENTA_T "\x1b[35m"
#define CYAN_T "\x1b[36m"
#define BLANCO_T "\x1b[97m"
#define NEGRITA "\x1b[1m"
#define COMMAND_LINE_SIZE 1024
#define ARGS_SIZE 64
#define N_JOBS 64
#define DEBUGN1 0
#define DEBUGN2 0
#define DEBUGN3 0
#define DEBUGN4 0
#define DEBUGN5 0
#define DEBUGN6 0
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <signal.h>
#include <fcntl.h>
struct info_job
{
pid_t pid;
char estado;
char cmd[COMMAND_LINE_SIZE];
};
static char mi_shell[COMMAND_LINE_SIZE];
static struct info_job jobs_list[N_JOBS];
int n_job = 0;
// Function prototypes
char *read_line(char *line);
int execute_line(char *line);
int parse_args(char **args, char *line);
int check_internal(char **args);
int internal_cd(char **args);
int internal_export(char **args);
int internal_source(char **args);
int internal_jobs();
int internal_fg(char **args);
int internal_bg(char **args);
void print_prompt();
void reaper(int signum);
void ctrlc(int signum);
void ctrlz(int signum);
int is_background(char **args);
int jobs_list_add(pid_t pid, char estado, char *cmd);
int jobs_list_find(pid_t pid);
int jobs_list_remove(int pos);
int is_output_redirection(char **args);
/// @brief The main function that starts an infinite loop to read and execute commands.
int main(int argc, char *argv[])
{
signal(SIGCHLD, reaper);
signal(SIGINT, ctrlc);
signal(SIGTSTP, ctrlz);
strcpy(mi_shell, argv[0]);
struct info_job *job0 = malloc(sizeof(struct info_job));
if (job0 == NULL)
{
perror("malloc");
return -1;
}
job0->pid = 0;
job0->estado = 'N';
memset(job0->cmd, '\0', COMMAND_LINE_SIZE);
jobs_list[0] = *job0;
char line[COMMAND_LINE_SIZE];
while (1)
{
if (read_line(line))
{
execute_line(line);
}
}
}
/// @brief reads a line of user input and trims it.
/// @param line where the input will be saved.
/// @return the read line.
char *read_line(char *line)
{
print_prompt();
char *result_fgets = fgets(line, COMMAND_LINE_SIZE, stdin);
if (result_fgets)
line[strlen(line) - 1] = '\0';
else
{
printf("\r");
if (feof(stdin))
{
printf(NEGRITA MAGENTA_T "\nSee you soon! :D\n" RESET);
exit(0);
}
}
return result_fgets;
}
/// @brief parses the line into tokens and checks if the first token refers to an internal command.
/// @param line the input line.
/// @return 0 if successful.
int execute_line(char *line)
{
char full_line[ARGS_SIZE] = "";
char *args[ARGS_SIZE];
pid_t pid;
//Save the number of arguments.
int num_args = parse_args(args, line);
if (num_args > 0)
{
// Concatenate the tokens to get the full line.
for (int i = 0; args[i] != NULL; i++)
{
strcat(full_line, args[i]);
if (args[i + 1] != NULL)
{
strcat(full_line, " ");
}
}
if (check_internal(args) == 0)
{
#if DEBUGN2
printf(ROJO_T "%s: command not found\n" RESET, args[0]);
#endif
int background = is_background(args);
pid = fork();
// Child process
if (pid == 0)
{
signal(SIGCHLD, SIG_DFL);
signal(SIGINT, SIG_IGN);
signal(SIGTSTP, SIG_IGN);
if (is_output_redirection(args) == 1)
{
int fd = open(args[num_args - 1], O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if (fd < 0)
{
perror("open");
exit(-1);
}
if (dup2(fd, STDOUT_FILENO) < 0)
{
perror("dup2");
exit(-1);
}
if (close(fd) < 0)
{
perror("close");
exit(-1);
}
}
execvp(args[0], args);
perror(ROJO_T "execvp");
printf(RESET);
exit(-1);
}
// Parent process
else if (pid > 0)
{
#if DEBUGN3
printf(BLANCO_T "[execute_line() -> PID padre: %d (%s)]\n" RESET, getpid(), mi_shell);
printf(BLANCO_T "[execute_line() -> PID hijo: %d (%s)]\n" RESET, pid, full_line);
#endif
if (background == 0)
{
strcpy(jobs_list[0].cmd, full_line);
jobs_list[0].estado = 'E';
jobs_list[0].pid = pid;
while (jobs_list[0].pid > 0)
pause();
}
else
{
jobs_list_add(pid, 'E', full_line);
}
}
// pid < 0 --> error
else
{
perror("fork");
exit(-1);
}
}
}
return 0;
}
/// @brief parses the line into tokens, dividing the input by spaces.
/// Deletes the comments (tokens starting with '#').
/// @param args the array where the tokens will be saved.
/// @param line the input line.
/// @return the number of tokens found.
int parse_args(char **args, char *line)
{
// The input will be separated on this chars.
char *delim = " ";
int i = 0;
args[i] = strtok(line, delim);
while (args[i] != NULL)
{
if (args[i][0] == '#')
{
break;
}
i++;
args[i] = strtok(NULL, delim);
}
args[i] = NULL;
#if DEBUGN1
printf(BLANCO_T "Número de tokens: %d\n" RESET, i);
int j = 0;
while (args[j] != NULL)
{
printf(BLANCO_T "[Token %d -> %s]\n" RESET, j, args[j]);
j++;
}
printf(BLANCO_T "[Token %d -> (null)]\n" RESET, j);
#endif
return i;
}
/// @brief Checks if the first argument refers to an internal command
/// and calls the corresponding function.
/// @param args The array of arguments.
/// @return 1 if successful; 0 if not successful.
int check_internal(char **args)
{
if (strcmp(args[0], "exit") == 0)
{
printf(NEGRITA MAGENTA_T "See you soon! :D\n" RESET);
exit(0);
}
else if (strcmp(args[0], "cd") == 0)
internal_cd(args);
else if (strcmp(args[0], "export") == 0)
internal_export(args);
else if (strcmp(args[0], "source") == 0)
internal_source(args);
else if (strcmp(args[0], "jobs") == 0)
internal_jobs(args);
else if (strcmp(args[0], "fg") == 0)
internal_fg(args);
else if (strcmp(args[0], "bg") == 0)
internal_bg(args);
else
return 0;
return 1;
}
/// @brief changes the current directory.
/// @param args the array of arguments.
/// @return 0 if successful.
int internal_cd(char **args)
{
#if DEBUGN1
printf(BLANCO_T "[internal_cd() -> Esta función cambia de directorio]\n" RESET);
#endif
if (args[1] == NULL)
{
if (chdir(getenv("HOME")) < 0)
{
perror("chdir");
return -1;
}
}
else if (args[2])
{
int i = 1;
char *advanced_cd = malloc(COMMAND_LINE_SIZE);
if (advanced_cd == NULL)
{
perror("malloc");
return -1;
}
strcpy(advanced_cd, args[1]);
while (args[i + 1])
{
if (strchr(advanced_cd, '\\'))
{
advanced_cd[strlen(advanced_cd) - 1] = '\0';
}
strcat(advanced_cd, " ");
strcat(advanced_cd, args[++i]);
}
if (strchr(advanced_cd, '\'') || strchr(advanced_cd, '\"'))
{
advanced_cd = &advanced_cd[1];
advanced_cd[strlen(advanced_cd) - 1] = '\0';
}
if (chdir(advanced_cd) < 0)
{
fprintf(stderr, ROJO_T "-mini_shell: cd: %s: %s\n" RESET, advanced_cd, strerror(errno));
return -1;
}
}
else
{
if (chdir(args[1]) == -1)
{
fprintf(stderr, ROJO_T "-mini_shell: cd: %s: %s\n" RESET, args[1], strerror(errno));
return -1;
}
}
#if DEBUGN2
char cwd[COMMAND_LINE_SIZE];
getcwd(cwd, COMMAND_LINE_SIZE);
printf(BLANCO_T "[internal_cd() -> PWD: %s]\n" RESET, cwd);
#endif
return 0;
}
/// @brief Assigns values to enviroment variables.
/// @param args the array of arguments.
/// @return 0 if successful.
int internal_export(char **args)
{
#if DEBUGN1
printf(BLANCO_T "[internal_export() -> Esta función asigna valores a variables de entorno]\n" RESET);
#endif
char *delim = "=";
char *name = strtok(args[1], delim);
char *value = strtok(NULL, " \n\t\r");
if (name == NULL || value == NULL)
{
fprintf(stderr, ROJO_T "-mini_shell: export: invalid syntax. Expected NAME=value\n" RESET);
return -1;
}
#if DEBUGN2
printf(BLANCO_T "[internal_export() -> name: %s]\n" RESET, name);
printf(BLANCO_T "[internal_export() -> value: %s]\n" RESET, value);
printf(BLANCO_T "[internal_export() -> previous value of %s: %s]\n" RESET, name, getenv(name));
#endif
if (setenv(name, value, 1) < 0)
{
perror("setenv");
return -1;
}
#if DEBUGN2
printf(BLANCO_T "[internal_export() -> new value of %s: %s]\n" RESET, name, getenv(name));
#endif
return 0;
}
/// @brief Executes a command file.
/// @param args the array of arguments.
/// @return 0 if successful.
int internal_source(char **args)
{
#if DEBUGN1
printf(BLANCO_T "[internal_source() -> Esta función ejecutará un fichero de linea de comandos]\n" RESET);
#endif
if (args[1] == NULL)
{
fprintf(stderr, ROJO_T "-mini_shell: source: invalid syntax. Expected source \"filename\"\n" RESET);
return -1;
}
FILE *fp;
char line[COMMAND_LINE_SIZE];
fp = fopen(args[1], "r");
if (fp == NULL)
{
fprintf(stderr, ROJO_T "-mini_shell: source: file doesn't exist.\n" RESET);
return -1;
}
while (fgets(line, COMMAND_LINE_SIZE, fp) != NULL)
{
fflush(fp);
line[strlen(line) - 1] = '\0';
#if DEBUGN3
printf(BLANCO_T "\n[internal_source() -> LINE: %s]\n" RESET, line);
#endif
execute_line(line);
}
if (fclose(fp) < 0)
{
perror("fclose");
return -1;
}
return 0;
}
/// @brief Shows the PIDs of processes not in the foreground.
/// @return 0 if successful.
int internal_jobs()
{
#if DEBUGN1
printf(BLANCO_T "[internal_jobs() -> Esta función mostrará el PID de los procesos que no estén en fg]\n" RESET);
#endif
for (int i = 1; i <= n_job; i++)
{
if (jobs_list[i].pid > 0)
{
printf("[%d] %d\t%c\t%s\n", i, jobs_list[i].pid, jobs_list[i].estado, jobs_list[i].cmd);
}
}
return 0;
}
/// @brief Brings a process to the foreground.
/// @param args the array of arguments.
/// @return 0 if successful.
int internal_fg(char **args)
{
#if DEBUGN1
printf(BLANCO_T "[internal_fg() -> Esta función envía un proceso al fg]\n" RESET);
#endif
// Check if the syntax is correct.
if (args[1] == NULL)
{
fprintf(stderr, ROJO_T "-mini_shell: fg: invalid syntax. Expected fg (job_number)\n" RESET);
return -1;
}
// Check if the job number is valid.
int job_number = atoi(args[1]);
if (job_number <= 0 || job_number > n_job)
{
fprintf(stderr, ROJO_T "-mini_shell: fg: invalid job number.\n" RESET);
return -1;
}
if (jobs_list[job_number].estado == 'D')
{
if (kill(jobs_list[job_number].pid, SIGCONT) < 0)
{
fprintf(stderr, ROJO_T "-mini_shell: fg: %s\n" RESET, strerror(errno));
}
#if DEBUGN6
printf(BLANCO_T "[intenal_fg() -> Señal %d enviada a %d (%s)]\n" RESET, SIGCONT, jobs_list[job_number].pid, jobs_list[job_number].cmd);
#endif
jobs_list[job_number].estado = 'E';
}
// Remove the & at the end of the command.
if (jobs_list[job_number].estado == 'E')
{
char *pos = strstr(jobs_list[job_number].cmd, " &");
if (pos != NULL)
{
*pos = '\0';
}
}
// Move the job to the foreground.
jobs_list[0] = jobs_list[job_number];
jobs_list[0].estado = 'E';
jobs_list_remove(job_number);
printf("%s\n", jobs_list[0].cmd);
// Wait until the foreground job is finished.
while (jobs_list[0].pid > 0)
pause();
return 0;
}
/// @brief Sends a process to the background.
/// @param args the array of arguments.
/// @return 0 if successful.
int internal_bg(char **args)
{
#if DEBUGN1
printf(BLANCO_T "[internal_bg() -> Esta función envía un proceso al bg]\n" RESET);
#endif
// Check if the syntax is correct.
if (args[1] == NULL)
{
fprintf(stderr, ROJO_T "-mini_shell: bg: invalid syntax. Expected fg (job_number)\n" RESET);
return -1;
}
// Check if the job number is valid.
int job_number = atoi(args[1]);
if (job_number <= 0 || job_number > n_job)
{
fprintf(stderr, ROJO_T "-mini_shell: bg: the job doesn't exist.\n" RESET);
return -1;
}
if (jobs_list[job_number].estado == 'E')
{
fprintf(stderr, ROJO_T "-mini_shell: bg: the job is already in the background.\n" RESET);
return -1;
}
// Send the SIGCONT signal to the process.
if (kill(jobs_list[job_number].pid, SIGCONT) < 0)
{
fprintf(stderr, ROJO_T "-mini_shell: bg: %s\n" RESET, strerror(errno));
}
#if DEBUGN6
printf(BLANCO_T "[intenal_bg() -> Señal %d enviada a %d (%s)]\n" RESET, SIGCONT, jobs_list[job_number].pid, jobs_list[job_number].cmd);
#endif
// Move the job to the background.
jobs_list[job_number].estado = 'E';
strcat(jobs_list[job_number].cmd, " &");
printf("[%d] %d\t%c\t%s\n", job_number, jobs_list[job_number].pid, jobs_list[job_number].estado, jobs_list[job_number].cmd);
return 0;
}
/// @brief Prints the prompt of the mini shell.
void print_prompt()
{
char cwd[COMMAND_LINE_SIZE];
getcwd(cwd, COMMAND_LINE_SIZE);
printf(NEGRITA AMARILLO_T "%s" RESET ":" CYAN_T "%s" RESET "$ " RESET, getenv("USER"), cwd);
sleep(0.5);
fflush(stdout);
}
/// @brief Handles the SIGCHLD signal.
/// @param signum signal number.
void reaper(int signum)
{
signal(SIGCHLD, reaper);
int status;
int ended;
while ((ended = waitpid(-1, &status, WNOHANG)) > 0)
{
if (ended == jobs_list[0].pid)
{
#if DEBUGN4
char mensaje[1200];
sprintf(mensaje, BLANCO_T "[reaper() -> Proceso hijo %d en foreground (%s) finalizado con exit code %d]\n" RESET, ended, jobs_list[0].cmd, status);
write(2, mensaje, strlen(mensaje));
#endif
memset(jobs_list[0].cmd, '\0', COMMAND_LINE_SIZE);
jobs_list[0].estado = 'F';
jobs_list[0].pid = 0;
}
else if (ended == -1)
{
perror("waitpid");
}
else
{
int pos_ended = jobs_list_find(ended);
#if DEBUGN5
char mensaje[1200];
sprintf(mensaje, BLANCO_T "[reaper() -> Proceso hijo %d en background (%s) finalizado con exit code %d]\n" RESET, ended, jobs_list[pos_ended].cmd, status);
write(2, mensaje, strlen(mensaje));
#endif
printf("\nTerminado PID %d (%s) en jobs_list[%d] con status %d\n", ended, jobs_list[pos_ended].cmd, pos_ended, status);
jobs_list_remove(pos_ended);
}
}
fflush(stdout);
}
/// @brief Handles the SIGINT signal.
/// @param signum signal number.
void ctrlc(int signum)
{
signal(SIGINT, ctrlc);
#if DEBUGN4
char mensaje[3000];
sprintf(mensaje, BLANCO_T "\n[ctrlc() -> Soy el proceso con PID %d (%s), el proceso en el foreground es %d (%s)]\n" RESET, getpid(), mi_shell, jobs_list[0].pid, jobs_list[0].cmd);
write(2, mensaje, strlen(mensaje));
#endif
if (jobs_list[0].pid > 0)
{
if (strcmp(mi_shell, jobs_list[0].cmd) != 0)
{
if (kill(jobs_list[0].pid, SIGTERM) < 0)
{
fprintf(stderr, ROJO_T "-mini_shell: ctrlc: %s\n" RESET, strerror(errno));
}
#if DEBUGN4
char mensaje[3000];
sprintf(mensaje, BLANCO_T "[ctrlc() -> Señal %d enviada a %d (%s) por %d (%s)]\n" RESET, SIGTERM, jobs_list[0].pid, jobs_list[0].cmd, getpid(), mi_shell);
write(2, mensaje, strlen(mensaje));
#endif
}
else
{
#if DEBUGN4
char mensaje[2000];
sprintf(mensaje, BLANCO_T "[ctrlc() -> Señal %d no enviada por %d (%s) debido a que su proceso en foreground es el shell]\n" RESET, SIGTERM, getpid(), mi_shell);
write(2, mensaje, strlen(mensaje));
#endif
}
}
else
{
#if DEBUGN4
char mensaje[2000];
sprintf(mensaje, BLANCO_T "[ctrlc() -> Señal %d no enviada por %d (%s) debido a que no hay procesos en el foreground]\n" RESET, SIGTERM, getpid(), mi_shell);
write(2, mensaje, strlen(mensaje));
#endif
}
printf("\n");
fflush(stdout);
}
/// @brief Handles the SIGTSTP signal.
/// @param signum signal number.
void ctrlz(int signum)
{
signal(SIGTSTP, ctrlz);
#if DEBUGN5
char mensaje[3000];
sprintf(mensaje, BLANCO_T "\n[ctrlz() -> Soy el proceso con PID %d (%s), el proceso en el foreground es %d (%s)]\n" RESET, getpid(), mi_shell, jobs_list[0].pid, jobs_list[0].cmd);
write(2, mensaje, strlen(mensaje));
#endif
if (jobs_list[0].pid > 0)
{
if (strcmp(mi_shell, jobs_list[0].cmd) != 0)
{
if (kill(jobs_list[0].pid, SIGSTOP) < 0)
{
fprintf(stderr, ROJO_T "-mini_shell: ctrlz: %s\n" RESET, strerror(errno));
}
jobs_list[0].estado = 'D';
jobs_list_add(jobs_list[0].pid, jobs_list[0].estado, jobs_list[0].cmd);
#if DEBUGN5
char mensaje[3000];
sprintf(mensaje, BLANCO_T "\n[ctrlz() -> Señal %d enviada a %d (%s) por %d (%s)]\n" RESET, SIGSTOP, jobs_list[0].pid, jobs_list[0].cmd, getpid(), mi_shell);
write(2, mensaje, strlen(mensaje));
#endif
strcpy(jobs_list[0].cmd, "");
jobs_list[0].pid = 0;
}
else
{
#if DEBUGN5
char mensaje[2000];
sprintf(mensaje, BLANCO_T "\n[ctrlz() -> Señal %d no enviada por %d (%s) debido a que su proceso en foreground es el shell]\n" RESET, SIGSTOP, getpid(), mi_shell);
write(2, mensaje, strlen(mensaje));
#endif
}
}
else
{
#if DEBUGN5
char mensaje[2000];
sprintf(mensaje, BLANCO_T "\n[ctrlz() -> Señal %d no enviada por %d (%s) debido a que no hay procesos en el foreground]\n" RESET, SIGSTOP, getpid(), mi_shell);
write(2, mensaje, strlen(mensaje));
#endif
}
printf("\n");
fflush(stdout);
}
/// @brief Checks if the command is to be executed in the background.
/// @param args tokenized command.
/// @return 1 if the command is to be executed in the background; 0 if not.
int is_background(char **args)
{
int i = 0;
while (args[i] != NULL)
{
i++;
}
if (strcmp(args[i - 1], "&") == 0)
{
args[i - 1] = NULL;
return 1;
}
return 0;
}
/// @brief Adds a job to the jobs list and increments the number of jobs.
/// @param pid pid of the job.
/// @param estado state of the job.
/// @param cmd command of the job.
int jobs_list_add(pid_t pid, char estado, char *cmd)
{
n_job++;
if (n_job < N_JOBS)
{
jobs_list[n_job].pid = pid;
jobs_list[n_job].estado = estado;
strcpy(jobs_list[n_job].cmd, cmd);
}
else
{
fprintf(stderr, ROJO_T "-mini_shell: jobs_list_add: jobs_list is full.\n" RESET);
return -1;
}
printf("\n[%d] %d\t%c\t%s\n", n_job, pid, estado, cmd);
fflush(stdout);
sleep(0.4);
return 0;
}
/// @brief Finds a job in the jobs list by its pid.
/// @param pid pid of the job.
/// @return the position of the job in the jobs list.
int jobs_list_find(pid_t pid)
{
for (int i = 0; i < N_JOBS; i++)
{
if (jobs_list[i].pid == pid)
return i;
}
return 0;
}
/// @brief Removes a job from the jobs list.
/// @param pos position of the job in the jobs list.
/// @return 0 if successful.
int jobs_list_remove(int pos)
{
if (pos < N_JOBS)
{
// Move the last job to the position of the deleted job.
jobs_list[pos].pid = jobs_list[n_job].pid;
jobs_list[pos].estado = jobs_list[n_job].estado;
strcpy(jobs_list[pos].cmd, jobs_list[n_job].cmd);
}
else
{
fprintf(stderr, ROJO_T "-mini_shell: jobs_list_remove: possition is out of bounds.\n" RESET);
return -1;
}
n_job--;
return 0;
}
/// @brief Checks if the command is an output redirection and removes the redirection from the command.
/// @param args tokenized command.
/// @return 1 if the command is an output redirection; 0 if not.
int is_output_redirection(char **args)
{
int i = 0;
while (args[i] != NULL) i++;
if (i < 2) return 0;
if (strcmp(args[i - 2], ">") == 0)
{
args[i - 2] = NULL;
return 1;
}
return 0;
}