Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Theres a bit of C code something like:

int doCommand(char* command)
{
    // +2 on strlen is for the two extra '\0' characters
    // needed by flex when scanning strings.
    YY_BUFFER_STATE yybs = yy_scan_buffer(command, strlen(command)+2);
    yy_switch_to_buffer(yybs);
    yyparse();
    yy_delete_buffer(yybs);
}

It gets called in a loop something like (psuedocode):

read characters upto and including '\n' into a buffer;
add two '\0' characters;
call doCommand(buffer);
zero the buffer; // NOTE: same buffer will be used next loop.

What goes wrong is that after the first command has been processed successfully, any further commands entered do not get processed.

I have printed out yylineno (which gets increased when the flex scanner sees '\n') and it only increases once, after the first command.

I cant work out if it is something Im doing wrong with flex, or if it is yyparse that stops calling the scanner after the first go.

I would be most pleased if someone could point out exactly what is happening.

share|improve this question

1 Answer

up vote 2 down vote accepted

Can you please try this with a debug? Check which tokens are read. Whether it switches in time, what is the input.

I don't use flex enhancements, because i need portability, so i implement this mechanism a bit differently - through YY_INPUT. Probably the produced tokens are different from what you expect, so i advise to debug the lex part first.

share|improve this answer
Hello again pooh thanks for the reply and tip off to use yydebug. It turned out to be nothing to do with flex or yyparse, it was my string-reset function in the loop. It reset the index-where-next-character-goes to 0 but because of the way my string-add-character works, it needed to be reset to -1 ...... so I was passing a string that started with '\0' to the scanner and it obviously didnt work. – Paul Kersey Feb 6 '11 at 16:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.