Show simple example

This commit is contained in:
Maieul BOYER 2024-04-29 13:29:22 +02:00
parent 06b57272c7
commit 10795d4cee
No known key found for this signature in database

View file

@ -6,129 +6,107 @@
/* 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/28 20:07:10 by maiboyer ### ########.fr */ /* Updated: 2024/04/29 13:29:01 by maiboyer ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
#include "../includes/minishell.h" #include "../includes/minishell.h"
t_i32 ft_check_type_operators(t_str operators) t_i32 ft_check_type_operators(t_str operators) {
{ if (operators == NULL)
if (operators == NULL) printf("End of input");
printf("End of input"); else if (ft_strcmp(operators, ">") == 0)
else if (ft_strcmp(operators, ">") == 0) printf("Have to redirect in the file\n");
printf("Have to redirect in the file\n"); else if (ft_strcmp(operators, ">>") == 0)
else if (ft_strcmp(operators, ">>") == 0) printf("Have to redirect at the end of the file after\n");
printf("Have to redirect at the end of the file after\n"); else if (ft_strcmp(operators, ">&") == 0)
else if (ft_strcmp(operators, ">&") == 0) printf("Have to redirect the stdout in the file\n");
printf("Have to redirect the stdout in the file\n"); else if (ft_strcmp(operators, "<") == 0)
else if (ft_strcmp(operators, "<") == 0) printf("Have to redirect at the end of the file before\n");
printf("Have to redirect at the end of the file before\n"); else if (ft_strcmp(operators, "<<") == 0)
else if (ft_strcmp(operators, "<<") == 0) printf("Have to redirect at the end of the file after\n");
printf("Have to redirect at the end of the file after\n"); else if (ft_strcmp(operators, "<&") == 0)
else if (ft_strcmp(operators, "<&") == 0) printf("Have to redirect the stdout in the file\n");
printf("Have to redirect the stdout in the file\n"); else if (ft_strcmp(operators, ";") == 0)
else if (ft_strcmp(operators, ";") == 0) printf("Have to execute one more command\n");
printf("Have to execute one more command\n"); else if (ft_strcmp(operators, ";") == 0)
else if (ft_strcmp(operators, ";") == 0) printf("Have to execute one more command\n");
printf("Have to execute one more command\n"); else if (ft_strcmp(operators, "|") == 0)
else if (ft_strcmp(operators, "|") == 0) printf("I have to pipe a operators !\n");
printf("I have to pipe a operators !\n"); else if (ft_strcmp(operators, "||") == 0)
else if (ft_strcmp(operators, "||") == 0) printf("Or something\n");
printf("Or something\n"); else if (ft_strcmp(operators, "&&") == 0)
else if (ft_strcmp(operators, "&&") == 0) printf("Only if the first has exit status 0\n");
printf("Only if the first has exit status 0\n"); else if (ft_strcmp(operators, "&") == 0)
else if (ft_strcmp(operators, "&") == 0) printf("Parreil mais chelou\n");
printf("Parreil mais chelou\n"); else
else return (0);
return (0); return (1);
return (1);
} }
void ft_check(t_utils *shcat, char **input) void ft_check(t_utils *shcat, char **input) {
{ t_usize i;
t_usize i; t_usize prev_i;
t_usize prev_i;
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)
while (ft_check_type_operators(input[i]) == 1) i++;
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)
else if (ft_strcmp(input[i], "echo") == 0) ft_echo("ECHO MAIS PAS ARG BORDEL !\n", "flag");
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; i++;
i++; }
}
} }
void ft_take_args(t_utils *shcat) void ft_take_args(t_utils *shcat) {
{ t_i32 i;
t_i32 i;
i = 0; i = 0;
while (1) while (1) {
{ shcat->str_input = readline((t_const_str)shcat->name_shell);
shcat->str_input = readline((t_const_str)shcat->name_shell); if (!shcat->str_input)
if (!shcat->str_input) ft_exit(shcat, 0);
ft_exit(shcat, 0); shcat->strs_input = ft_split(shcat->str_input, ' ');
shcat->strs_input = ft_split(shcat->str_input, ' '); if (!shcat->strs_input)
if (!shcat->strs_input) exit(1);
exit(1); ft_check(shcat, shcat->strs_input);
ft_check(shcat, shcat->strs_input); add_history(shcat->str_input);
add_history(shcat->str_input); ft_free_strs(shcat->strs_input);
ft_free_strs(shcat->strs_input); free(shcat->str_input);
free(shcat->str_input); i++;
i++; }
}
} }
void ft_init_arge(t_str arge[], t_utils *utils) void ft_init_arge(t_str arge[], t_utils *utils) {
{ size_t i;
size_t i; char *temp;
char *temp;
i = 0; i = 0;
temp = NULL; temp = NULL;
while (arge[i] != NULL) while (arge[i] != NULL) {
{ if (arge[i][0] == 'P' && arge[i][1] == 'A' && arge[i][2] == 'T' &&
if (arge[i][0] == 'P' && arge[i][1] == 'A' && arge[i][2] == 'T' && arge[i][3] == 'H' && arge[i][4] == '=') {
arge[i][3] == 'H' && arge[i][4] == '=') temp = ft_strdup(arge[i] + 5);
{ if (!temp)
temp = ft_strdup(arge[i] + 5); ft_exit(utils, 1);
if (!temp) else
ft_exit(utils, 1); utils->path = ft_split(temp, ':');
else break;
utils->path = ft_split(temp, ':'); }
break; i++;
} }
i++; if (temp != NULL)
} free(temp);
if (temp != NULL)
free(temp);
} }
// t_i32 main(t_i32 argc, t_str argv[], t_str arge[])
// {
// t_utils *shcat;
//
// shcat = (t_utils *)ft_calloc(sizeof(t_utils), 1);
// if (argc == 2)
// shcat->name_shell = ft_strdup(strcat(argv[1], " \001🐱\002 > "));
// else
// shcat->name_shell = ft_strdup("shcat \001🐱\002 > ");
// shcat->envp = arge;
// ft_init_arge(arge, shcat);
// ft_take_args(shcat);
// }
#include "app/node.h" #include "app/node.h"
#include "me/string/str_len.h" #include "me/string/str_len.h"
#include "parser/api.h" #include "parser/api.h"
@ -136,48 +114,56 @@ void ft_init_arge(t_str arge[], t_utils *utils)
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) {
{ TSTree *tree;
TSTree *tree; TSNode node;
TSNode node; t_node ret;
t_node ret;
tree = ts_parser_parse_string(parser, NULL, input, str_len(input)); tree = ts_parser_parse_string(parser, NULL, input, str_len(input));
node = ts_tree_root_node(tree); node = ts_tree_root_node(tree);
ret = build_node(node, input); ret = build_node(node, input);
ts_tree_delete(tree); ts_tree_delete(tree);
return (ret); return (ret);
} }
void print_node_data(t_node *t, t_usize depth) void print_node_data(t_node *t, t_usize depth) {
{ t_usize idx;
t_usize idx;
idx = 0; idx = 0;
while (idx++ < depth) while (idx++ < depth)
printf("\t"); printf("\t");
idx = 0; idx = 0;
printf("%s = %s\n", t->kind_str, node_getstr(t)); printf("%s = %s\n", t->kind_str, node_getstr(t));
while (idx < t->childs_count) while (idx < t->childs_count)
print_node_data(&t->childs[idx++], depth + 1); print_node_data(&t->childs[idx++], depth + 1);
} }
t_i32 main(t_i32 argc, t_str argv[], t_str envp[]) typedef struct s_myparser {
{ TSParser *parser;
t_str input; } t_myparser;
TSLanguage *lang;
TSParser *parser;
t_node root_node;
(void)(argc); t_myparser create_myparser(void) {
(void)(argv); TSLanguage *lang;
(void)(envp); TSParser *parser;
lang = tree_sitter_bash();
parser = ts_parser_new(); lang = tree_sitter_bash();
ts_parser_set_language(parser, lang); parser = ts_parser_new();
input = "test \n \\cmd"; ts_parser_set_language(parser, lang);
root_node = parse_to_nodes(parser, input); return ((t_myparser){.parser = parser});
print_node_data(&root_node, 0); }
free_node(root_node);
ts_parser_delete(parser); void free_myparser(t_myparser self) { ts_parser_delete(self.parser); }
t_node parse_string(t_myparser *parser, t_const_str input) {
return (parse_to_nodes(parser->parser, input));
}
t_i32 main() {
t_myparser parser;
t_node node;
parser = create_myparser();
node = parse_string(&parser, "banane \"$VAR\"'truc'");
print_node_data(&node, 0);
free_node(node);
} }