我在做一个Flex &野牛的项目我让我的flex &野牛完美地工作,但我试图给予argv作为输入(yyin)。所以我改变了yyin,让它接受argv[1],但它实际上不起作用。看起来它接受了argv[1],但后来我得到了一个语法错误,即使我的字符串我认为可以完美地工作。
这是我的Flex:
%{
#include "parser.hpp"
extern int yyparse();
%}
%option noyywrap
texte [a-zA-z]+
entier [0-9]+(\.[0-9])?
%%
{entier} { yylval.num = atoi(yytext); return(NUMBER);}
"pi" return(PI);
"," return(SEP);
"(" return(OP);
")" return(CP);
"+" return(ADD);
"-" return(SUB);
"*" return(MUL);
"/" return(DIV);
"%" return (MODULO);
"sin" return(SIN);
"cos" return(COS);
"tan" return(TAN);
"acos" return(ACOS);
"asin" return(ASIN);
"atan" return(ATAN);
"sqrt" return(ROOT);
"pow" return(POW);
"exp" return(EXP);
"\n" return(END);
{texte} return(ERROR);
%%
然后我的野牛(我没有实现COS SIN和其他最容易阅读的):
%defines
%{
#include <iostream>
#include <math.h>
using namespace std;
extern int yylex();
extern void yyerror(char const* msg);
%}
%union {double num;}
/* CARACTERES */
%token <num> NUMBER PI
%token OP CP SEP END
/* TRIGO */
%token COS SIN TAN
%token ACOS ASIN ATAN
/* CALCUL */
%token ADD SUB
%token MUL DIV
%token ROOT POW MODULO EXP ABS
/* CALCUL ORDER */
%left ADD SUB
%left MUL DIV
/* TRASH */
%token ERROR
%type <num> calclist exp factor term
%start calclist
%%
calclist: /* nothing */
| calclist exp END {cout << $2 << endl;}
;
exp: factor
| exp ADD factor { $$ = $1 + $3; }
| exp SUB factor { $$ = $1 - $3; }
;
factor: term
| factor MUL term { $$ = $1 * $3; }
| factor DIV term { $$ = $1 / $3; }
;
term: NUMBER
| OP exp CP {$$ = $2;}
;
%%
extern void yyerror(char const* msg){
cerr << "Error " << msg << endl;
}
然后我的主:
#include <iostream>
#include "parser.hpp"
#include <string.h>
using namespace std;
extern FILE *yyin;
extern int yy_scan_string(const char *);
int main(int argc, char const *argv[]) {
/*string buf(argv[1]);
buf.append("\0");*/
yy_scan_string(argv[1]);
return yyparse();
}
最后是我的makefile:
all: bison flex main.cpp
g++ parser.cpp lexer.cpp main.cpp -o parser
rm lexer.cpp parser.cpp parser.hpp
./parser "(1+2)"
bison: parser.y
bison -o parser.cpp parser.y
flex: lexer.l
flex -o lexer.cpp lexer.l
我也试过./parser (1+2)
,但我得到了更多的错误。谢谢帮忙!
3条答案
按热度按时间zbdgwd5y1#
来自Flex & Bison book(第124页):
例程
yy_scan_bytes
和yy_scan_string
创建一个缓冲区,其中包含要扫描的文本副本。(强调我的)
然后呢
创建字符串缓冲区后,使用
yy_switch_to_buffer
命令扫描仪从中读取数据。..yy_scan_string
只 * 创建 * 一个需要显式使用的buffer对象:gdx19jrr2#
我终于找到了答案。我只需要稍微改变一下我的主题:
因为yyin是0-Terminated。希望这能帮助到其他人!
wooyq4lh3#
您可以完全用一个文件重新启动lexer。举个例子: