You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
2.2 KiB

3 years ago
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mea <marvin@42.fr> +#+ +:+ +#+ */
3 years ago
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/02 12:14:09 by narnaud #+# #+# */
3 years ago
/* Updated: 2022/05/07 23:08:05 by narnaud@stude ### ########.fr */
3 years ago
/* */
/* ************************************************************************** */
3 years ago
#include "minishell.h"
void termios(int ctl)
{
struct termios termios_p;
int tty;
tty = ttyslot();
tcgetattr(tty, &termios_p);
if (ctl)
{
3 years ago
termios_p.c_lflag |= ECHOCTL;
signal(SIGINT, nothing);
signal(SIGQUIT, nothing);
}
else
{
termios_p.c_lflag &= ~(ECHOCTL);
signal(SIGINT, sigs_handler);
signal(SIGQUIT, sigs_handler);
}
termios_p.c_cc[VQUIT] = ctl * 28;
tcsetattr(tty, TCSANOW, &termios_p);
}
3 years ago
void free_cmd(t_command *cmd)
{
int i;
3 years ago
3 years ago
if (!cmd)
return ;
3 years ago
i = 0;
while (cmd->argv[i])
{
free(cmd->argv[i]);
i++;
}
free(cmd->argv);
3 years ago
free_cmd(cmd->next);
3 years ago
free(cmd);
}
void prompt(t_datas *datas)
3 years ago
{
char *line;
t_command *cmd;
termios(0);
line = readline("$ ");
termios(1);
if (line == NULL)
halt(datas, EXIT_SUCCESS);
if (is_empty(line))
return ;
cmd = parser(datas, lexer(datas, line), NULL);
if (!cmd->prev && !cmd->next && is_builtin(cmd->argv[0]))
builtin_call(datas, cmd);
else
piper(datas, cmd);
3 years ago
free_cmd(cmd);
add_history(line);
}
int main(int argc, char **argv, char **envp)
{
static t_datas datas;
static int i = 0;
datas.envp = ft_calloc(ENVP_MAX_SIZE, sizeof(char *));
while (*envp)
datas.envp[i++] = ft_strdup(*(envp++));
datas.exit_code = 0;
3 years ago
if (argc < 2)
(void)argv;
while (1)
prompt(&datas);
3 years ago
halt(&datas, EXIT_SUCCESS);
3 years ago
}