我正在编写我的第一个Ragel程序。我的目标是编写一个四功能计算器。请不要将您的密码发给我。这对我来说是一个学习经验。
我想要做的是将正则表达式与float匹配并打印出值。 Ragel程序和C / CPP代码编译,但我的返回值始终为零,并且从不执行print语句。以下是我的代码。我做错了什么?
/*
* This is a four function calculator.
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
%%{
machine calculator;
write data;
}%%
float calculator(char* string)
{
int cs;
char* p;
char* pe;
char* eof;
int act;
char* ts;
char* te;
float value;
int length;
length = strlen(string);
string[length -1] = 0;
%%{
action get_value {
value = atof(string);
}
action cmd_err {
printf("Error\n");
fhold;
}
main := ([0-9])@get_value;
# Initialize and execute.
write init;
write exec;
}%%
return value;
};
#define BUFSIZE 1024
int main()
{
char buf[BUFSIZE];
float val;
val = 0.0;
while ( fgets( buf, sizeof(buf), stdin ) != 0 ) {
val = calculator( buf );
printf( "%f\n", val );
}
return 0;
}
答案 0 :(得分:0)
您没有使用您要解析的内容设置 char * p 缓冲区。这就是你的测试没有输出的原因。
Ragel需要知道要解析的数据所在的位置。 char * p必须指向要分析的数据,如在线documentation
的第一个示例第6页中所述答案 1 :(得分:0)
您不仅需要将p
设置为指向缓冲区的开头,还应将pe
和eof
指向其末尾。在分配长度后,此代码应覆盖它:
p = string;
pe = string + length - 1;
eof = pe;
注意:在这种情况下,不应该act
,ts
和te
,因为这些变量仅用于扫描程序。