gpt4 book ai didi

c - 如何在换行后退出 yyparse 函数?

转载 作者:行者123 更新时间:2023-11-30 16:56:48 25 4
gpt4 key购买 nike

我的大学有一个项目,用C语言制作一个迷你shell。为了解析命令行,我使用以下工具:lex 和 yacc。但我想解析该行。当检测到 token 时,在我的 struct 命令中添加参数,当我找到换行符时,退出 yyparse 来执行命令。打印提示并重新启动解析后...我的 lex 文件:

Chiffre [0-9]
Lettre [a-zA-Z]
Alphanum ({Chiffre}{Lettre})+

%{

#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "parser.tab.h"

%}
%%
[ \t]+ {}
"\n" {
return '\n';
}
"||" {
return OR;
}
"|" {
return PIPE;
}
"&&" {
return AND;
}
"&" {
return AMPERSAND;
}

"2>" {
return ERR_GREAT;
}

">&" {
return GREAT_AMP;
}

"2>>" {
return ERR_GREAT_GREAT;
}
">>&" {
return GREAT_GREAT_AMP;
}
">>" {
return GREAT_GREAT;
}

">" {
return GREAT;
}

"<" {
return LESS;
}

";" {
return SEMICOLON;
}

"exit" {
return EXIT;
}

({Lettre}_){1}({Alphanum}_) {
return IDENTIFIER;
}
[^ \t|><&\;][^ \t|><&\;]* {
return WORD;
}
%%
int yywrap(void){return 1;}

我尝试使用 YYACCEPT 退出 yyparse 但不起作用。yacc 文件:

%{
#include <stdio.h>
void yyerror(const char *s);
extern int yylex();
extern char* yytext;
%}
%token PIPE AND OR AMPERSAND BLANK WORD IDENTIFIER GREAT GREAT_GREAT LESS ERR_GREAT ERR_GREAT_GREAT GREAT_AMP GREAT_GREAT_AMP SEMICOLON EXIT
%start cmd_lists
%union { char str[256]; int val; }
%error-verbose
%%
list_arg: list_arg WORD | /*empty*/;
cmd_args: WORD list_arg io_list;
pipeline: pipeline PIPE cmd_args | pipeline SEMICOLON cmd_args | pipeline AND cmd_args | pipeline OR cmd_args | cmd_args ;
io: GREAT WORD | GREAT_GREAT WORD | LESS WORD | ERR_GREAT WORD | ERR_GREAT_GREAT WORD | GREAT_AMP WORD | GREAT_GREAT_AMP WORD;
io_list: io_list io | /*empty*/ ;
background: AMPERSAND | /*empty*/ ;
command: pipeline background '\n'{
printf("cmd newline\n");
YYACCEPT;
}
|'\n'{
printf("newline\n");
YYACCEPT;
}
|EXIT '\n'{
printf("exit newline\n");
YYACCEPT;
}
;

cmd_lists: cmd_lists command | ;
%%

void yyerror(const char *s){
fprintf(stderr,"yyerror : erreur : %s.\n",s);
}

感谢您的帮助。

最佳答案

cmd_lists: cmd_lists command | ;

这似乎是终端符号,尽管它们通常放在顶部,而不是底部。不管怎样,这个语法表明 cmd_list 可以包含零个或多个 command 项,因此解析器通过准备接受另一个项来表现正确。

如果您不希望这样,请删除 cmd_list 产品。

关于c - 如何在换行后退出 yyparse 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39803846/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com