使用lex和yacc解析文件的C ++程序中的编译错误

时间:2015-01-13 22:12:52

标签: c++ c yacc lex

我想在C ++程序中读取一个文件并将其传递给lex和yacc进行解析,但是我收到了编译错误。这是我的main.cpp文件(第一个错误):

extern "C"
{
    #include "parser_iface.h"
    #include "parser.h"
    #include "lexer.h"
}

#include <stdio.h>
#include <iostream>

int yyparse(yyscan_t scanner);

int main(void)
{
    yyscan_t scanner;
    extern FILE *yyin;

    if (yylex_init(&scanner))
        return NULL;
    yyin = fopen("test_file.cws", "r");  // <- error C2039: 'yyin_r' : is not a member of '_iobuf'
    if(yyin == NULL)
    {
         std::cout << "Error!" << std::endl;
    }
    else 
    {
        std::cout << "Parsing" << std::endl;
        yyparse(scanner);
    }
    yy_delete_buffer(0, scanner);
    yylex_destroy(scanner);
    printf("Press ENTER to close. ");
    getchar();
    return 0;
}

我的lex文件(.l)的顶部如下:

%{
    #include "parser_iface.h"
    #include "parser.h"
    #include <stdio.h>
%}

%option outfile="lexer.c" header-file="lexer.h"
%option warn reentrant noyywrap never-interactive nounistd bison-bridge

我的yacc文件(.y)的顶部如下:

%{
    #include "parser_iface.h"
    #include "parser.h"
    #include "lexer.h"
    int yyerror(yyscan_t scanner, const char *msg);
    int curr_mod;
%}

%code requires
{
    #ifndef YYSCAN_T
        #define YYSCAN_T
        typedef void* yyscan_t;
    #endif
}

%output  "parser.c"
%defines "parser.h"
%define api.pure
%lex-param   { yyscan_t scanner }
%parse-param { yyscan_t scanner }

我正在使用win_flex和win_bison。

1 个答案:

答案 0 :(得分:2)

yyin目前被玷污为一个奇怪的宏,不应该被使用。改为使用可重入的API:

FILE * src = fopen("test_file.cws", "r");
yyset_in(src, scanner);