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.

111 lines
2.7 KiB

3 years ago
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* parser.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mea <marvin@42.fr> +#+ +:+ +#+ */
3 years ago
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/02 16:09:25 by narnaud #+# #+# */
3 years ago
/* Updated: 2022/05/06 11:21:18 by narnaud ### ########.fr */
3 years ago
/* */
/* ************************************************************************** */
#include "minishell.h"
int push_heredoc(t_datas *datas, char *str)
{
char *line;
3 years ago
int pip[2];
3 years ago
pipe(pip);
while(1)
{
line = readline(">");
if (!ft_strncmp(line, str, ft_strlen(str) + 1))
break;
ft_putstr_fd(expend_str(datas, line), pip[1]);
write(pip[1], "\n", 1);
}
close(pip[1]);
3 years ago
return (pip[0]);
}
3 years ago
size_t count_arguments(t_token *tok)
{
size_t ret;
ret = 0;
3 years ago
while (tok && tok->type != PIPE)
3 years ago
{
if (tok->type == WORD)
3 years ago
ret++;
3 years ago
tok = tok->next;
3 years ago
}
return (ret);
}
void update_redir(t_datas *datas, t_command *cmd, t_token *tok)
3 years ago
{
3 years ago
if (tok->type == OUT)
{
if (cmd->fd[1])
close(cmd->fd[1]);
cmd->fd[1] = open(tok->value, O_CREAT | O_TRUNC | O_WRONLY, 0644);
}
else if (tok->type == ADD)
{
if (cmd->fd[1])
close(cmd->fd[1]);
cmd->fd[1] = open(tok->value, O_CREAT | O_APPEND | O_WRONLY, 0644);
}
else if (tok->type == IN)
{
if (cmd->fd[0])
close(cmd->fd[0]);
cmd->fd[0] = open(tok->value, O_RDONLY);
}
else if (tok->type == HD)
{
if (cmd->fd[0])
close(cmd->fd[0]);
cmd->fd[0] = push_heredoc(datas, tok->value);
}
3 years ago
}
3 years ago
t_token *parse_cmd(t_datas *datas, t_token *tok, t_command *cmd)
{
t_token *prev_tok;
if (tok->type)
update_redir(datas, cmd, tok);
else
cmd->argv[cmd->argc++] = ft_strdup(tok->value);
prev_tok = tok;
tok = tok->next;
free(prev_tok->value);
free(prev_tok);
return (tok);
}
3 years ago
3 years ago
t_command *parser(t_datas *datas, t_token *tok, t_command *prev)
{
t_command *cmd;
if (!tok)
return (NULL);
cmd = ft_calloc(1, sizeof(t_command));
if (prev)
cmd->prev = prev;
cmd->argv = ft_calloc(count_arguments(tok) + 1, sizeof(char *));
3 years ago
cmd->argc = 0;
3 years ago
while(tok && tok->type != PIPE)
3 years ago
tok = parse_cmd(datas, tok, cmd);
3 years ago
if (tok && tok->type == PIPE)
{
3 years ago
cmd->next = parser(datas, tok->next, cmd);
free(tok->value);
free(tok);
}
3 years ago
return(cmd);
}