- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 C 扫描仪的一部分,它基于 Lex n Yacc,我使用的是 flex、bison 和 gcc 编译器。这是我的 yacc 文件的一部分。因此,我尝试将扫描时间实现为秒,例如扫描仪将在命令行中的最后打印扫描时间,因为扫描仪是基于 cmd 的扫描仪。我添加了时间函数(位于此中的最后一个)文件),但作为输出,我得到了 0.00 秒。所以我不确定我在哪里犯了错误。如果有人对此有任何想法。
%{
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
FILE *outFile_p;
FILE *outFile_p1;
extern FILE *yyin;
int counter=0;
int pointer[500];
int pointer2;
char *temp[500];
char *temp2;
int i=0;
int yylex(void);
int yyparse(void);
void yyerror(const char* str)
{
fprintf(stderr,"error: %s in line: %d please check your function arguments!\n*** NOW:
if you are sure your code is correct, \n please insert// before your function call\nin orderto ignore this syntax error\n",str,counter+1);
}
int yywrap()
{
return 1;
}
%}
%token STRCPY
%token STRCAT
%token GETS
%left NUMBER
%%
commands:
{
fprintf(outFile_p,"%s","#include \"SafeLib.h\"\n");
} /*empty*/
| commands command
;
command:search1
|
search2
|
search3
|
search4
;
search3:CHAR WORD
{
fprintf(outFile_p,"%s%s","char",$2);
}
|
CHAR WORD LB WORD
{
printf("pointer_before=%d",pointer);
temp[i]=$2;
printf("\ni=%d\n",i);
if(!strcmp($4,"4"))
{
pointer[i]=1;
printf("pointer=%d",pointer[i]);
}
else
{
pointer[i]=0;printf("pointer=%d",pointer[i]);
}
i++;
fprintf(outFile_p,"%s%s%s%s","char",$2,$3,$4);
printf("\ntemp=%s\n",temp[i-1]);
}
|
CHAR WORD LB WORD SIMICOL search4
{
printf("pointer_before=%d",pointer);
temp[i]=$2;
printf("\ni=%d\n",i);
if (!strcmp($4,"4"))
{
pointer[i]=1;printf("pointer=%d",pointer[i]);
}
else
{
pointer[i]=0;printf("pointer=%d",pointer[i]);
}
i++;
fprintf(outFile_p,"%s%s%s%s","char",$2,$3,$4);
printf("\ntemp=%s\n",temp[i-1]);
}
|
NEW WORD
{
fprintf(outFile_p,"%s%s","new ",$2);
}
|
NEW CHAR
{fprintf(outFile_p,"%s%s","new ","char");}
|
NEW
{fprintf(outFile_p,"new");}
|
CHAR
{fprintf(outFile_p,"char");}
|
CHAR WORD LB RB
{fprintf(outFile_p,"%s%s%s%s","char ",$2,$3,$4);}
|
WORD LB RB
{fprintf(outFile_p,"%s%s%s",$1,$2,$3);}
|
WORD LB PLUS
{fprintf(outFile_p,"%s%s%s",$1,$2,$3);}
|
GETS LBRAK WORD RBRAK
{int flipper1=0;int fals=0;temp2=$3;printf("\ntemp2=%s\n",temp2);int j=0;int k=0;
for (j=0;j<i;j++)
{if(!strcmp(temp[k],temp2) && pointer[k]==1)
{fprintf(outFile_p,"%s%s%s%s","/*warning: This function gets() has a buffer overflow security problem*/","gets(",$3,")");
fprintf(outFile_p1,"\n Very High-Risk Warning::There is a gets() buffer overflow security problem in line %d::It is recommended to use fgets() instead....\n",counter+1);flipper1=1;fals=1;break;}
if(!strcmp(temp[k],temp2))
{fprintf(outFile_p,"%s%s%s%s","/*warning: This function gets() has a buffer overflow security problem*/","gets(",$3,")");fprintf(outFile_p1,"\n Very High-Risk Warning::There is a gets() buffer overflow security problem in line %d::It is recommended to use fgets() instead....\n",counter+1);flipper1=1;break;}k++;}if(flipper1==0)
fprintf(outFile_p,"%s%s%s","gets(",$3,")");}
|
........................................
.........................................
.........................................
|COM {fprintf(outFile_p,";");}
|LB {fprintf(outFile_p,"[");}
|RB {fprintf(outFile_p,"]");}
%%
int main(int argc,char*argv[])
{
FILE *fp;
if(argc<3)
{
printf("please specify the input and out file \n");
exit(0);
}
fp=fopen(argv[1],"r");
if(!fp)
{
printf("couldn't open file for reading \n");
exit(0);
}
outFile_p=fopen(argv[2],"w");
outFile_p1=fopen(argv[3],"w");
if(!outFile_p)
{
printf("couldn't open temp for writing outfile_p \n");
exit(0);
}
if(!outFile_p1)
{
printf("couldn't open temp for writing outfile_p1 \n");
exit(0);
}
clock_t begin, end;
double time_spent;
begin = clock();
yyin=fp;
yyparse();
fclose(fp);
fclose(outFile_p);
end = clock();
time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
printf("\nTotal Time for Scanning %f", time_spent);
}
最佳答案
@zwol 写道:
This is so obvious that I must be missing something, but: The first call to
clock
should be before the call toyyparse
.
OP 写道:
As taken advice from @Zack and @user3121023 I have made some changes, yacc for a bigger input file scanner is showing the time but for a smaller input its showing 0.00 seconds,is there any workaround for this.......
I have fixed the problem using
gettimeofday
function.Right now scanner is showing the time but I'm not sure of how much that is accurate.
关于c - 扫描时间无法正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22592587/
使用 C# (VS2008) 和 WIA - 扫描到 TIFF 格式; 当我在平板或文档进纸器上使用扫描仪扫描 1 页时,该方法执行没有任何问题。当我将多个表单加载到进纸器时,扫描第一页后执行停止(保
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
给定一个列表 :: [(Foo, Bar)] ,我想在 Bar 上执行 scanl1 s,但保留他们的 Foo “标签”。 IE。我想要一个类型为 :: [(a, b)] -> ([b] -> [c]
我有一个 HBase 表,我需要从多个范围获取结果。例如,我可能需要从不同范围获取数据,例如第 1-6 行、100-150..... 我知道对于每次扫描,我可以定义开始行和停止行。但是如果我有 6 个
我看到了这段代码。我是 C 语言的新手,所以请原谅。 while下面的循环将继续循环 if i = SIZE,则 == 是无关紧要的,因为它根本不会被执行。如果 i 小于 SIZE 那么 scanf(
这是一个关于编译过程的相当技术性的问题ABAP代码。 我知道有ABAP解析器和扫描器类实际上调用 C 内核函数来完成实际工作。然后就是代码补全事务的功能,该事务以 ABAP 列表或 XML 的形式返回
给定以下程序: int main(){ float x = non_det_float(); float y = NAN; if (isnan(y) && x == 1.0f){
我在工作中使用由供应商生成的二维码。实际上我需要通过网站手动记录所有这些项目。 QR 码包含所有这些数据,所以我想创建一个自动执行操作的应用。 例如,二维码表示“AAA|BBB|CCC|123”。我想
我有一个像这样的字符串:@"ololo width: 350px jijiji width:440px ... text=12... "我想将@"width: "之后的所有数字替换为280。所以在扫描
我在玩 scanf 时遇到了一个小问题……更具体地说,我想读取整个输入,然后忽略其余部分。让我告诉你我的意思: #include int main(void) { int number_of
我正在使用 matlab/octave 创建扫描/线性调频信号,我的结束信号似乎以错误的频率结束。我该如何修复它,以便信号以正确的频率结束。 PS:我不能在 Octave 音程中使用 chirp 命令
我正在寻找一个可以扫描 WiFi 网络并打印所有 SSID 的程序。我试过 scapy 但我失败了。我正在使用 pyCharm 编辑器。 我试过这段代码: from scapy.all import
概述 Linux 完全是用于大型服务器的最流行和最安全的操作系统之一。尽管它被广泛使用,但它仍然容易受到网络攻击。黑客以服务器为目标,窃取有价值的信息。所以迫切需要开发反黑客方法来应对安全漏洞和恶
如何获取我的 Git 存储库的某种统计信息? 我目前在 BitBucket 中托管 Git 存储库,想查找以下详细信息: 提交总数 使用过的编程语言 每种编程语言的总代码行数 您认为这可以实现吗?还是
我目前正在使用以下代码来扫描作为申请表的一部分上传的文件: $safe_path = escapeshellarg($dir . $file); $command = '/usr/bin/clamsc
我在存储库中有十几个项目。存储库结构如下所示: / ------- + project1 +------- trunk +------- tags +----
我正在使用 Dynamo DB 并想使用过滤器扫描一个表。例如,是否可以使用全局二级索引仅扫描表中的特定行? 最佳答案 这不可能!扫描始终针对基表中的所有行,当您扫描索引表作为响应时,您将仅获得该索引
我正在尝试从这里使用 SOLStumbler:Accessing & Using the MobileWiFi.framework扫描 wifi 网络。我知道苹果不支持这一点,但它是用于教育目的和实验
我知道 iPhone 蓝牙功能在 3.0 之前无法通过 SDK 访问,但是需要多长时间才能找到该区域的设备?它取决于该区域的设备数量吗?如果范围内有大约 5 个设备,扫描发现所有设备是否需要花费 30
我正在使用Elasticsearch 6.2,并且有一些查询可以分析大量文档。我正在对索引内的一个字段进行排序。 Elasticsearch检查10.000个文档(默认配置值),然后将它们分页返回。
我是一名优秀的程序员,十分优秀!