A lot of edit but adding the struct (Yes, i just use parameters of the function util now, See u morrow)

This commit is contained in:
Raphaël 2024-04-01 01:55:59 +02:00
parent 9c4dfafdf7
commit 56655f5426
15 changed files with 403 additions and 30 deletions

39
sources/ft_cmd.c Normal file
View file

@ -0,0 +1,39 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_cmd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/01 01:00:30 by rparodi #+# #+# */
/* Updated: 2024/04/01 01:54:23 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/minishell.h"
void ft_exec_cmd(t_utils *utils, char *cmd, char *cmd_args)
{
const char **args = (const char **)ft_split(cmd_args, ' ');
if (execve(cmd, (char *const *)args, (char *const *)utils->envp) == -1)
{
ft_free_strs((char **)args);
ft_exit(utils, 1);
}
}
void ft_other_cmd(t_utils *shcat, t_usize i)
{
pid_t pid;
t_i32 options;
printf("ft_other_cmd = %s", shcat->strs_input[i]);
options = 0;
pid = fork();
if (pid == -1)
ft_exit(shcat, 1);
if (pid == 0)
ft_exec_cmd(shcat, shcat->strs_input[i], NULL);
waitpid(pid, NULL, options);
}

20
sources/ft_echo.c Normal file
View file

@ -0,0 +1,20 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_echo.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/31 21:48:04 by rparodi #+# #+# */
/* Updated: 2024/03/31 21:51:41 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/minishell.h"
void ft_echo(t_str txt, t_str flag)
{
printf("%s", txt);
if (ft_strcmp(flag, "-n") != 0)
printf("\n");
}

View file

@ -6,15 +6,41 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/29 11:35:51 by rparodi #+# #+# */
/* Updated: 2024/03/31 20:54:49 by rparodi ### ########.fr */
/* Updated: 2024/04/01 01:16:47 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/minishell.h"
void ft_exit(t_str str, t_u8 exit_status)
void ft_free_strs(t_str *strs)
{
free(str);
t_usize i;
i = 0;
while (strs[i])
{
free(strs[i]);
i++;
}
free(strs);
}
t_str str_input;
t_str *strs_input;
void ft_free_utils(t_utils *s)
{
if (s->str_input)
free(str_input);
if (s->strs_input)
ft_free_strs(strs_input);
free(s);
}
void ft_exit(t_utils *maiboyerlpb, t_u8 exit_status)
{
if (maiboyerlpb)
ft_free_utils(maiboyerlpb);
printf("exit\n");
exit(exit_status);
}

35
sources/ft_pwd.c Normal file
View file

@ -0,0 +1,35 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_pwd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/31 22:14:33 by rparodi #+# #+# */
/* Updated: 2024/03/31 22:27:33 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/minishell.h"
void ft_pwd(void)
{
t_str str;
t_usize size;
size = 1024;
str = (t_str)ft_calloc((size + 1), sizeof(t_i8));
if (str == NULL)
ft_exit(NULL, 0);
while (getcwd(str, size) == NULL) {
if (str)
free(str);
size *= 2;
str = (t_str)ft_calloc(sizeof(t_i8), size);
if (str == NULL) {
ft_exit(NULL, 0);
}
}
printf("%s\n", str);
free(str);
}

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/28 14:40:38 by rparodi #+# #+# */
/* Updated: 2024/03/31 21:02:40 by rparodi ### ########.fr */
/* Updated: 2024/04/01 01:51:47 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -50,7 +50,7 @@ t_i32 ft_check_type_operators(t_str *operators)
return (1);
}
void ft_check(char **input)
void ft_check(t_utils *shcat, char **input)
{
t_usize i;
@ -60,34 +60,76 @@ void ft_check(char **input)
if (ft_check_type_operators(input) == 1)
printf("Operateur\n");
else
printf("Commande ou args\n");
{
if (ft_strcmp(input[i], "exit") == 0)
ft_exit(NULL, 0);
else if (ft_strcmp(input[i], "pwd") == 0)
ft_pwd();
else
ft_other_cmd(shcat, i);
}
i++;
}
}
void ft_take_args(void)
void ft_take_args(t_utils *shcat)
{
t_i32 i;
t_str user_input = NULL;
t_str *args = NULL;
i = 0;
while (i < 10000000)
while (1)
{
user_input = readline("shcat > ");
if (!user_input || strcmp("exit", user_input) == 0)
ft_exit(user_input, 0);
args = ft_split(user_input, ' ');
shcat->str_input = readline(shcat->name_shell);
if (!user_input)
ft_exit(shcat, 0);
shcat->strs_input = ft_split(user_input, ' ');
if (!args)
exit(1);
ft_check(args);
add_history(user_input);
free(user_input);
ft_check(shcat, shcat->strs_input);
add_history(shcat->str_input);
ft_free_strs(shcat->strs_input);
free(shcat->str_input);
i++;
}
}
t_i32 main(void)
void ft_init_arge(t_str arge[], t_utils *utils)
{
ft_take_args();
size_t i;
char *temp;
i = 0;
temp = 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] == '=')
{
temp = ft_strdup(arge[i] + 5);
if (!temp)
ft_exit(utils, 1);
else
utils->path = ft_split(temp, ':');
break ;
}
i++;
}
if (temp != NULL)
free(temp);
}
t_i32 main(t_i32 argc, t_str argv[], t_str arge[])
{
t_utils *shcat;
shcat = (t_utils *)malloc(sizeof(t_utils));
if (argc == 2)
shcat->name_shell = ft_strdup(strcat(argv[1], " > "));
else
shcat->name_shell = ft_strdup("shcat > ");
ft_init_arge(arge, shcat);
shcat->envp = arge;
ft_take_args(shcat);
}