78 lines
2 KiB
C
78 lines
2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* error_syntax.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/02/09 20:15:35 by ariard #+# #+# */
|
|
/* Updated: 2017/02/21 18:13:47 by ariard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "parser.h"
|
|
|
|
t_errormatch g_errormatch[] =
|
|
{
|
|
{TK_NEWLINE, "newline"},
|
|
{TK_SEMI, ";"},
|
|
{TK_PIPE, "|"},
|
|
{TK_AMP, "&"},
|
|
{TK_LESS, "<"},
|
|
{TK_GREAT, ">"},
|
|
{TK_DGREAT, ">>"},
|
|
{TK_LESSAND, "<&"},
|
|
{TK_GREATAND, ">&"},
|
|
{TK_LESSGREAT, "<>"},
|
|
{TK_CLOBBER, ">|"},
|
|
{TK_DLESS, "<<"},
|
|
{TK_DLESSDASH, "<<-"},
|
|
{TK_AND_IF, "&&"},
|
|
{TK_OR_IF, "||"},
|
|
{TK_DSEMI, ";;"},
|
|
{TK_IF, "if"},
|
|
{TK_THEN, "then"},
|
|
{TK_ELSE, "else"},
|
|
{TK_ELIF, "elif"},
|
|
{TK_FI, "fi"},
|
|
{TK_DO, "do"},
|
|
{TK_DONE, "done"},
|
|
{TK_CASE, "case"},
|
|
{TK_ESAC, "esac"},
|
|
{TK_WHILE, "while"},
|
|
{TK_UNTIL, "until"},
|
|
{TK_FOR, "for"},
|
|
{TK_LBRACE, "{"},
|
|
{TK_RBRACE, "}"},
|
|
{TK_BANG, "!"},
|
|
{TK_IN, "in"},
|
|
{0, NULL},
|
|
};
|
|
|
|
int error_syntax(t_list **lst)
|
|
{
|
|
t_token *token;
|
|
int i;
|
|
|
|
token = (*lst)->content;
|
|
i = 0;
|
|
while (g_errormatch[i].token)
|
|
{
|
|
if (g_errormatch[i].token == token->type)
|
|
{
|
|
ft_putstr_fd("syntax error near unexpetcted token `", 2);
|
|
ft_putstr_fd(g_errormatch[i].error, 2);
|
|
ft_putstr_fd("'", 2);
|
|
return (1);
|
|
}
|
|
i++;
|
|
}
|
|
ft_putstr_fd("grammar error, notify ariard", 2);
|
|
return (1);
|
|
}
|
|
|
|
int error_EOF(void)
|
|
{
|
|
ft_putstr_fd("syntax error near unexpected EOF", 2);
|
|
return (1);
|
|
}
|