66 lines
2.0 KiB
C
Executable File
66 lines
2.0 KiB
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* exit.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/02/07 16:04:11 by tomoron #+# #+# */
|
|
/* Updated: 2024/03/26 09:14:22 by marde-vr ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
void numeric_arg_err(char *arg, int *exit_code)
|
|
{
|
|
ft_putstr_fd("minishell: exit: ", 2);
|
|
ft_putstr_fd(arg, 2);
|
|
ft_putstr_fd(": numeric argument required\n", 2);
|
|
*exit_code = 2;
|
|
}
|
|
|
|
void get_exit_bt_return_code(t_msh *msh, int *exit_code)
|
|
{
|
|
t_cmd *cur_cmd;
|
|
|
|
cur_cmd = msh->cmds->next;
|
|
if (cur_cmd && cur_cmd->type == ARG && !ft_strisnbr(cur_cmd->token))
|
|
numeric_arg_err(cur_cmd->token, exit_code);
|
|
else if (cur_cmd && cur_cmd->type == ARG)
|
|
*exit_code = (unsigned char)ft_atoi(cur_cmd->token);
|
|
else
|
|
*exit_code = g_return_code;
|
|
}
|
|
|
|
void exit_bt(t_msh *msh)
|
|
{
|
|
t_cmd *cur_cmd;
|
|
int exit_code;
|
|
int cmd_count;
|
|
|
|
cur_cmd = msh->cmds->next;
|
|
ft_printf("exit\n");
|
|
if (cur_cmd && cur_cmd->next && cur_cmd->next->type == ARG
|
|
&& ft_strisnbr(cur_cmd->token))
|
|
{
|
|
ft_putstr_fd("minishell: exit: too many arguments\n", 2);
|
|
g_return_code = 1;
|
|
}
|
|
else
|
|
{
|
|
get_exit_bt_return_code(msh, &exit_code);
|
|
if (msh->fds)
|
|
{
|
|
cmd_count = get_cmd_count(msh->cmds);
|
|
while (cmd_count)
|
|
{
|
|
free(msh->fds[cmd_count - 1]);
|
|
cmd_count--;
|
|
}
|
|
}
|
|
free_msh(msh);
|
|
exit(exit_code);
|
|
}
|
|
}
|