14

我希望我yylex()解析字符串而不是文件或标准输入。如何使用随 Solaris 提供的 Lex 和 Yacc 来做到这一点?

4

5 回答 5

15

重新定义 YY_INPUT。这是一个工作示例,使用命令编译和运行

yacc -d parser.y
lex lexer.l
gcc -o myparser *.c

从 globalInputText 读取输入。您可以修改此示例,以便全局输入文本是您想要的任何字符串或来自您想要的任何输入源。

解析器.y:

%{
#include <stdio.h>
extern void yyerror(char* s);
extern int yylex();
extern int readInputForLexer(char* buffer,int *numBytesRead,int maxBytesToRead);
%}

%token FUNCTION_PLUS FUNCTION_MINUS NUMBER

%%

expression:
    NUMBER FUNCTION_PLUS NUMBER { printf("got expression!  Yay!\n"); }
    ;

%%

词法分析器.l:

%{

#include "y.tab.h"
#include <stdio.h>


#undef YY_INPUT
#define YY_INPUT(b,r,s) readInputForLexer(b,&r,s)

%}

DIGIT   [0-9]
%%

\+      { printf("got plus\n"); return FUNCTION_PLUS; }
\-      { printf("got minus\n"); return FUNCTION_MINUS; }
{DIGIT}* { printf("got number\n"); return NUMBER; }
%%


void yyerror(char* s) {
    printf("error\n");
}

int yywrap() {
    return -1;
}

myparser.c:

#include <stdio.h>
#include <string.h>

int yyparse();
int readInputForLexer( char *buffer, int *numBytesRead, int maxBytesToRead );

static int globalReadOffset;
// Text to read:
static const char *globalInputText = "3+4";

int main() {
    globalReadOffset = 0;
    yyparse();
    return 0;
}

int readInputForLexer( char *buffer, int *numBytesRead, int maxBytesToRead ) {
    int numBytesToRead = maxBytesToRead;
    int bytesRemaining = strlen(globalInputText)-globalReadOffset;
    int i;
    if ( numBytesToRead > bytesRemaining ) { numBytesToRead = bytesRemaining; }
    for ( i = 0; i < numBytesToRead; i++ ) {
        buffer[i] = globalInputText[globalReadOffset+i];
    }
    *numBytesRead = numBytesToRead;
    globalReadOffset += numBytesToRead;
    return 0;
}
于 2011-07-19T17:16:48.330 回答
6

如果您使用的是真实的lex而不是flex我相信您可以简单地定义自己的

int input(void);

这可以从字符串或您想要的任何内容中返回字符。

或者,我相信您可以将字符串写入文件,然后在 stream 上打开文件yyin。我怀疑这适用于任何一种实现。

如果使用 flex 那么我认为你重新定义了YY_INPUT()宏,

于 2009-12-20T18:47:14.723 回答
3

另一种方法是使用链接答案中已经提到的 yy_scan_string

于 2012-11-16T11:01:42.203 回答
0

正如之前所说,它可以通过重新定义来完成input()- 我在 aix、hpux 和 solaris 上使用过它。

或者我也使用的另一种方法是制作管道,并使用fdopen()-ed FILE*as yyin

于 2011-02-06T14:51:14.397 回答
0

这是任何实现都应该使用的东西,尽管使用 popen 是有风险的。

$ cat a.l
%%
"abc" {printf("got ABC\n");}
"def" {printf("got DEF\n");}
. {printf("got [%s]\n", yytext);}
%%
int main(int argc, char **argv)
{
    return(lex("abcdefxyz"));
}
lex(char *s)
{
    FILE *fp;
    char *cmd;
    cmd=malloc(strlen(s)+16);
    sprintf(cmd, "/bin/echo %s", s); // major vulnerability here ...
    fp=popen(cmd, "r");
    dup2(fileno(fp), 0);
    return(yylex());
}
yywrap()
{
    exit(0);
}
$ ./a
got ABC
got DEF
got [x]
got [y]
got [z]
于 2009-12-20T20:19:14.237 回答