Changing the parsing to be traited in string and not in char

This commit is contained in:
Raphaël 2024-03-31 20:09:19 +02:00
parent 8941f67cf1
commit 70c9c5aac1
8 changed files with 161 additions and 299 deletions

View file

@ -6,79 +6,66 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/28 14:40:38 by rparodi #+# #+# */
/* Updated: 2024/03/29 14:58:04 by rparodi ### ########.fr */
/* Updated: 2024/03/31 20:08:28 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/minishell.h"
i32 ft_check_type_cmd(i8 *cmd)
i32 ft_check_type_cmd(i8 **cmd)
{
usize i;
usize j;
i = 0;
while (cmd[i] != '\0')
j = 0;
while (cmd[j])
{
if (cmd[i] == '>')
{
if (cmd[++i] == '>')
printf("Have to redirect at the end of the file after\n");
else if (cmd[i] == '&')
printf("Have to redirect the stdout in the file\n");
else
printf("Have to redirect in the file\n");
}
else if (cmd[i] == '<')
{
if (cmd[++i] == '<')
printf("Have to redirect at the end of the file before\n");
else if (cmd[i] == '&')
printf("Have to redirect the stdin in the file\n");
else
printf("Have to redirect in the file\n");
}
else if (cmd[i] == ';')
if (ft_strcmp(cmd[j], ">") == 0)
printf("Have to redirect in the file\n");
else if (ft_strcmp(cmd[j], ">>") == 0)
printf("Have to redirect at the end of the file after\n");
else if (ft_strcmp(cmd[j], ">&") == 0)
printf("Have to redirect the stdout in the file\n");
else if (ft_strcmp(cmd[j], "<") == 0)
printf("Have to redirect at the end of the file before\n");
else if (ft_strcmp(cmd[j], "<<") == 0)
printf("Have to redirect at the end of the file after\n");
else if (ft_strcmp(cmd[j], "<&") == 0)
printf("Have to redirect the stdout in the file\n");
else if (ft_strcmp(cmd[j], ";") == 0)
printf("Have to execute one more command\n");
else if (cmd[i] == '"')
{
i++;
while (cmd[i] != '\0')
{
if (cmd[i] == '"')
{
printf("Quote span found !\n");
break ;
}
i++;
}
if (cmd[i] == '\0')
printf("Quote span not found !\n");
}
else if (cmd[i] == '|')
{
if (cmd[++i] == '|')
printf("Or something\n");
else
printf("I have to pipe a cmd !\n");
}
else if (ft_strcmp(cmd[j], ";") == 0)
printf("Have to execute one more command\n");
else if (ft_strcmp(cmd[j], "|") == 0)
printf("I have to pipe a cmd !\n");
else if (ft_strcmp(cmd[j], "||") == 0)
printf("Or something\n");
else if (ft_strcmp(cmd[j], "&&") == 0)
printf("Only if the first has exit status 0\n");
else if (ft_strcmp(cmd[j], "&") == 0)
printf("Parreil mais chelou\n");
else
printf("Error!\n");
i++;
j++;
}
return (1);
}
void ft_take_cmd(void)
{
i32 i = 0;
i32 i;
i8 *user_input = NULL;
while (i < 10000000)
{
i8 **args = NULL;
i = 0;
while (i < 10000000)
{
user_input = readline("shcat > ");
if (!user_input || strcmp("exit", user_input) == 0)
ft_exit(user_input, 0);
ft_check_type_cmd(user_input);
if (!user_input || strcmp("exit", user_input) == 0)
ft_exit(user_input, 0);
args = ft_split(user_input, ' ');
if (!user_input)
exit(1);
ft_check_type_cmd(args);
add_history(user_input);
free(user_input);
i++;