First Steps into exec part

This commit is contained in:
Raphaël 2024-04-30 13:45:03 +02:00 committed by GitHub
parent 54cefca53f
commit edd3712b5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 41 additions and 71 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */ /* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/28 14:41:15 by rparodi #+# #+# */ /* Created: 2024/03/28 14:41:15 by rparodi #+# #+# */
/* Updated: 2024/04/28 18:34:45 by maiboyer ### ########.fr */ /* Updated: 2024/04/29 15:07:54 by rparodi ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -27,6 +27,8 @@
# include <readline/readline.h> # include <readline/readline.h>
# include <readline/history.h> # include <readline/history.h>
# define PATH_FILES "/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
typedef struct s_utils typedef struct s_utils
{ {
t_str name_shell; t_str name_shell;

View file

@ -1 +0,0 @@
Alors pour le coup, il faut que j'arrive a separer les strings par commande puis a chaque sep regarder les autres cmd (bisous lpb si tu passe par la ;))

View file

@ -6,43 +6,16 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */ /* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/28 14:40:38 by rparodi #+# #+# */ /* Created: 2024/03/28 14:40:38 by rparodi #+# #+# */
/* Updated: 2024/04/29 13:29:01 by maiboyer ### ########.fr */ /* Updated: 2024/04/29 16:06:33 by rparodi ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
#include "../includes/minishell.h"
t_i32 ft_check_type_operators(t_str operators) { #include "app/node.h"
if (operators == NULL) #include "me/string/str_len.h"
printf("End of input"); #include "parser/api.h"
else if (ft_strcmp(operators, ">") == 0) #include "parser/parser.h"
printf("Have to redirect in the file\n"); #include "../includes/minishell.h"
else if (ft_strcmp(operators, ">>") == 0)
printf("Have to redirect at the end of the file after\n");
else if (ft_strcmp(operators, ">&") == 0)
printf("Have to redirect the stdout in the file\n");
else if (ft_strcmp(operators, "<") == 0)
printf("Have to redirect at the end of the file before\n");
else if (ft_strcmp(operators, "<<") == 0)
printf("Have to redirect at the end of the file after\n");
else if (ft_strcmp(operators, "<&") == 0)
printf("Have to redirect the stdout in the file\n");
else if (ft_strcmp(operators, ";") == 0)
printf("Have to execute one more command\n");
else if (ft_strcmp(operators, ";") == 0)
printf("Have to execute one more command\n");
else if (ft_strcmp(operators, "|") == 0)
printf("I have to pipe a operators !\n");
else if (ft_strcmp(operators, "||") == 0)
printf("Or something\n");
else if (ft_strcmp(operators, "&&") == 0)
printf("Only if the first has exit status 0\n");
else if (ft_strcmp(operators, "&") == 0)
printf("Parreil mais chelou\n");
else
return (0);
return (1);
}
void ft_check(t_utils *shcat, char **input) { void ft_check(t_utils *shcat, char **input) {
t_usize i; t_usize i;
@ -51,14 +24,10 @@ void ft_check(t_utils *shcat, char **input) {
i = 0; i = 0;
prev_i = 0; prev_i = 0;
while (input[i] != NULL) { while (input[i] != NULL) {
while (ft_check_type_operators(input[i]) == 1)
i++;
if (ft_strcmp(input[i], "exit") == 0) if (ft_strcmp(input[i], "exit") == 0)
ft_exit(shcat, 0); ft_exit(shcat, 0);
else if (ft_strcmp(input[i], "pwd") == 0) else if (ft_strcmp(input[i], "pwd") == 0)
ft_pwd(); ft_pwd();
else if (ft_strcmp(input[i], "echo") == 0)
ft_echo("ECHO MAIS PAS ARG BORDEL !\n", "flag");
else else
ft_other_cmd(shcat, i, prev_i); ft_other_cmd(shcat, i, prev_i);
prev_i = i; prev_i = i;
@ -66,7 +35,8 @@ void ft_check(t_utils *shcat, char **input) {
} }
} }
void ft_take_args(t_utils *shcat) { void ft_take_args(t_utils *shcat)
{
t_i32 i; t_i32 i;
i = 0; i = 0;
@ -85,33 +55,25 @@ void ft_take_args(t_utils *shcat) {
} }
} }
void ft_init_arge(t_str arge[], t_utils *utils) { void ft_find_path(t_str arge[], t_utils *utils)
size_t i; {
char *temp; t_i32 i;
t_u8 check;
i = 0; i = 0;
temp = NULL; check = 0;
while (arge[i] != NULL) { while (arge[i] != NULL)
if (arge[i][0] == 'P' && arge[i][1] == 'A' && arge[i][2] == 'T' && {
arge[i][3] == 'H' && arge[i][4] == '=') { if (arge[i][0] == 'P' && arge[i][1] == 'A' && arge[i][2] == 'T' && arge[i][3] == 'H' && arge[i][4] == '=')
temp = ft_strdup(arge[i] + 5); {
if (!temp) utils->path = ft_split(arge[i] + 5, ':');
ft_exit(utils, 1); return ;
else
utils->path = ft_split(temp, ':');
break;
} }
i++; i++;
} }
if (temp != NULL) utils->path = ft_split(PATH_FILES, ':');
free(temp);
} }
#include "app/node.h"
#include "me/string/str_len.h"
#include "parser/api.h"
#include "parser/parser.h"
TSLanguage *tree_sitter_bash(void); TSLanguage *tree_sitter_bash(void);
t_node parse_to_nodes(TSParser *parser, t_const_str input) { t_node parse_to_nodes(TSParser *parser, t_const_str input) {
@ -158,12 +120,19 @@ t_node parse_string(t_myparser *parser, t_const_str input) {
return (parse_to_nodes(parser->parser, input)); return (parse_to_nodes(parser->parser, input));
} }
t_i32 main() { t_i32 main(t_i32 argc, t_str argv[], t_str arge[])
t_myparser parser; {
t_node node; // t_myparser parser;
// t_node node;
t_utils utils;
parser = create_myparser(); (void)argc;
node = parse_string(&parser, "banane \"$VAR\"'truc'"); (void)argv;
print_node_data(&node, 0); ft_find_path(arge, &utils);
free_node(node); utils.name_shell = "42sh > ";
ft_take_args(&utils);
// parser = create_myparser();
// node = parse_string(&parser, "banane \"$VAR\"'truc'");
// print_node_data(&node, 0);
// free_node(node);
} }