当前位置: 首页 > news >正文

免费建站网站号山西泽庆建设公司官网

免费建站网站号,山西泽庆建设公司官网,一个空间2个网站代码,温州房产信息网上一节我们运行了 gcc 使用的词法解析器#xff0c;使用它从.l 文件中生成对应的词法解析程序。同时我们用相同的词法规则对 golex 进行测试#xff0c;发现 golex 同样能实现相同功能#xff0c;当然这个过程我们也发现了 golex 代码中的不少 bug#xff0c;本节我们继续对…上一节我们运行了 gcc 使用的词法解析器使用它从.l 文件中生成对应的词法解析程序。同时我们用相同的词法规则对 golex 进行测试发现 golex 同样能实现相同功能当然这个过程我们也发现了 golex 代码中的不少 bug本节我们继续对 golex 和 flex 进行比较研究首先我们在上一节.l 文件的基础上增加更多的判断规则其内容如下 { /* this sample demostrates simple recognition: a verb/ not a verb */ %}%% [\t ] /* ignore witespace */; is | am | are | were | was | be | being | been | do | does | did | will | would | should | can | could | has | have | had | go {printf(%s: is a verb\n, yytext);}very | simply | gently | quitely | calmly | angrily {printf(%s: is an adverb\n, yytext);}to | from | behind | above | below | between {printf(%s: is a preposition\n, yytext);}if | then | and | but | or {printf(%s: is a conjunction\n, yytext);} their | my | your | his | her | its {printf(%s: is a adjective\n, yytext);}I | you | he | she | we | they {printf(%s: is a pronoun\n, yytext);}[a-zA-z] {printf(%s: is not a verb\n, yytext);}%%main() {yylex(); } 将上面内容存储城 ch1-03.l然后运行如下命令 lex ch1-03.l gcc lex.yy.c -o ch1-03于是在本地目录就会生成 ch1-03 的可执行文件通过./ch1-03 运行该程序然后输入文本如下 我们将相同的词法规则内容放到 golex 试试于是在 input.lex 中输入内容如下 %{/*this sample demostrates simple recognition: a verb/ not a verb*/ %} %% is| am| are| was| be| being| been| do| does| did| will| would| should| can| could| has| have| had| go {printf(%s is a verb\n,yytext);}very| simply| gently| quietly| calmly| angrily {printf(%s is a adverb\n, yytext);}to| from| behind| above| below| between {printf(%s is a preposition\n, yytext);}if| then| and| but| or {printf(%s is a conjunction\n, yytext);}their| my| your| his| her| its {printf(%s is a adjective\n, yytext);}I| you| he| she| we| they {printf(%s is a pronoun\n, yytext);}[a-zA-Z] {printf(%s is a not verb\n, yytext);} (\s) {printf(ignoring space\n);} %% int main() {int fd ii_newfile(/Users/my/Documents/CLex/num.txt);if (fd -1) {printf(value of errno: %d\n, errno);}yylex();return 0; } 然后执行 golex 程序生成 lex.yy.c将其内容拷贝到 CLex 项目的 main.c然后编译。在 num.txt 中添加内容如下 did I have fun? I should have had fun he and she has fun from the park they are enjoying the day very much运行 CLex 项目所得结果如下 Ignoring bad input did is a verb ignoring space I is a pronoun ignoring space have is a verb ignoring space fun is a not verb Ignoring bad input Ignoring bad input I is a pronoun ignoring space should is a verb ignoring space have is a verb ignoring space had is a verb ignoring space fun is a not verb Ignoring bad input he is a pronoun ignoring space and is a conjunction ignoring space she is a pronoun ignoring space has is a verb ignoring space fun is a not verb ignoring space from is a preposition ignoring space the is a not verb ignoring space park is a not verb Ignoring bad input they is a pronoun ignoring space are is a verb ignoring space enjoying is a not verb ignoring space the is a not verb ignoring space day is a not verb ignoring space very is a adverb ignoring space much is a not verb可以看到 CLex的输出结果跟 flex一致这意味着golex 和 flex 目前在功能上等价。可以看到当前我们的词法解析程序不够灵活每次相应增加新的解析规则或是要判断新单词时我们需要更改.lex 文件然后重新编译执行并生成新的 lex.yy.c 文件。 下面我们希望能做到不要重新编译执行 golex我们也能动态识别新增加的单词。这里我们需要使用符号表的方法同时我们需要在.l 或.lex 文件中设置更加复杂的规则和代码首先我们定义模板文件的头部内容如下 %option noyywrap%{/*word recognizer with a symbol table*/enum {LOOKUP 0,VERB,ADJ,ADV,NOUN,PREP,PRON,CONJ };int state;int add_word(int type, char* word); int lookup_word(char* word); %}在上面内容我们先定义一系列命令关键字也就是当我们在命令行输入 “verb时state 变量的值就是 verb,此时 add_word 将把用户在 verb 命令之后的单词作为类型 verb 加入到符号表中。此时用户输入的单词verb”, “ADJ等都会作为命令来使用这些词就相当于编程语言中的关键字。函数 add_word 将把用户输入的单词加入到符号表对应类别例如verb has”,这条命令就会将单词has加入到符号表,并且设置其类型为 verb。lookup_word 用于在符号表中查询给定单词是否已经存在。 我们看模板文件的接下来部分: \n {state LOOKUP;} ^verb {state VERB;} ^adj {state ADJ;} ^noun {state NOUN;} ^prep {state PREP;} ^pron {state PRON;} ^conj {state CONJ;}[a-zA-Z] {if (state ! LOOKUP) {add_word(state, yytext);}else {switch(lookup_word(yytext)) {case VERB: printf(%s: verb\n, yytext); break;case ADJ: printf(%s: adjective\n, yytext); break;case ADV: printf(%s: adverb\n, yytext); break;case NOUN: printf(%s: noun\n, yytext); break;case PREP: printf(%s: propsition\n, yytext); break;case PRON: printf(%s: pronoun\n, yytext); break;case CONJ: printf(%s: conjunction\n, yytext); break;default:printf(%s: dont recognize\n, yytext); break;}} } %% 可以看到上面代码比较复杂首先它规定如果用户输入的是换行那么程序进入 LOOKUP 状态后续输入的字符串就会在符号表中进行匹配。如果在一行的起始用户输入的是关键字例如 verb, adj 等那么程序进入单词插入状态如果命令是 verb那么后面输入的字符串都会以 verb 类型加入到符号表其他命令例如 adj, adv 等的逻辑也相同。 我们看模板文件第三部分的内容 main() {yylex(); }struct word {char* word_name;int word_type;struct word* next; };struct word* word_list;extern void *malloc();int add_word(int type, char* word) {struct word* wp;if (lookup_word(word) ! LOOKUP) {printf(!!! warning: word %s already defined\n, word);return 0;}wp (struct word*)malloc(sizeof(struct word));wp-next word_list;wp-word_name (char*) malloc(strlen(word)1);strcpy(wp-word_name, word);wp-word_type type;word_list wp;return 1; }int lookup_word(char* word) {struct word* wp word_list;for(; wp; wp wp-next) {if (strcmp(wp-word_name, word)0) {return wp-word_type;}}return LOOKUP; } 在上面代码中我们用一个列表来存储插入的单词每个插入单词对应一个 Word 结构它包含了单词的字符串类型还有指向下一个 Word对象的指针。lookup_word 函数遍历整个列表看看有没有与给定字符串匹配的单词add_word新增加一个 Word 结构将给定字符串写入 Word 结构的 word_name 对象设置其类型也就是 word_type 的值然后插入队列的开头。 将上面内容存为文件 ch1-04.l使用如下命令构建 lex.yy.c lex ch1-04.l gcc lex.yy.c -o 1-04我们看看生成程序 1-04 的执行效果 为了实现对应功能GoLex 需要做相应修改它需要做到如果输入是从控制台进来那么每次读完一行数据后它下次还需要再次从控制台读取因此我们需要在 CLex 程序中增加一个 ii_console 函数它判断当前输入是否来自控制台,在 input.c中添加如下代码 int ii_console() {//返回输入是否来自控制台return Inp_file STDIN; }同时在 l.h 中增加该函数的声明 extern int ii_console();接下来我们需要修改 yywrap它需要判断当前输入是否来自控制台如果是那么它要再次打开控制台获取输入在 GoLex中的 lex.par 中修改 yywrap 如下 int yywrap() {//默认不要打开新文件if (ii_console()) {//如果输入来自控制台那么程序不要返回ii_newfile(NULL);return 0;}return 1; }在上面代码实现中如果输入来自控制台那么 ii_console 返回 1ii_newfile 调用时传入 NULL,输入系统就会再次打开控制台然后等待用户输入。同时在这次比较中我也发现 GoLex 有 bug,那就是在 LexReader 的Head 函数中当我们从输入读入一行字符串时我们没有检测读入的是否是空字符串如果是空字符串我们需要继续读入下一行因此在 LexReader.go 中我们做如下修改 func (l *LexReader) Head() {/*读取和解析宏定义部分*/transparent : falsefor l.scanner.Scan() {l.ActualLineNo 1l.currentInput l.scanner.Text()if l.Verbose {fmt.Printf(h%d: %s\n, l.ActualLineNo, l.currentInput)}//bug here//如果读入的行为空,那么重新读入下一行if len(l.currentInput) 0 {continue}if l.currentInput[0] % {。。。。有了上面修改后GoLex 基本上也能做到前面 flex 程序的功能但还有一个问题那就是如果我们把前面 ch01-4.l 中的如下所示的代码直接放到 input.lex 中GoLex 就会崩溃 [a-zA-Z] {if (state ! LOOKUP) {add_word(state, yytext);}else {switch(lookup_word(yytext)) {case VERB: printf(%s: verb\n, yytext); break;case ADJ: printf(%s: adjective\n, yytext); break;case ADV: printf(%s: adverb\n, yytext); break;case NOUN: printf(%s: noun\n, yytext); break;case PREP: printf(%s: propsition\n, yytext); break;case PRON: printf(%s: pronoun\n, yytext); break;case CONJ: printf(%s: conjunction\n, yytext); break;default:printf(%s: dont recognize\n, yytext); break;}} }这是因为 GoLex 的 RegParser 在解析正则表达式时它一次只读入一行。上面代码中正则表达式在匹配后对应的处理代码跨越了多行因此这种格式会导致我们 RegParser 解析出错。一种解决办法是修改 RegParser 的解析方法让他能解析跨越多行的匹配处理代码这种修改比较麻烦我们暂时放弃。一种做法是将上面多行代码全部放入一行但这样会导致一行内容长度过长使得模板文件很难看目前我们的解决办法是用一个函数将这些代码封装起来例如使用一个 Handle_string()函数来封装上面代码于是上面部分修改如下 [a-zA-Z] {handle_string();} %% void handle_string() {f (state ! LOOKUP) {add_word(state, yytext);}else {switch(lookup_word(yytext)) {case VERB: printf(%s: verb\n, yytext); break;case ADJ: printf(%s: adjective\n, yytext); break;case ADV: printf(%s: adverb\n, yytext); break;case NOUN: printf(%s: noun\n, yytext); break;case PREP: printf(%s: propsition\n, yytext); break;case PRON: printf(%s: pronoun\n, yytext); break;case CONJ: printf(%s: conjunction\n, yytext); break;default:printf(%s: dont recognize\n, yytext); break;}} }综上所述GoLex 中 input.lex 的文本内容如下 %{ #includestring.henum {LOOKUP 0,VERB,ADJ,ADV,NOUN,PREP,PRON,CONJ };int state;int add_word(int type, char* word); int lookup_word(char* word); void handle_string(); %} %% ^verb {state VERB;} ^adj {state ADJ;} ^noun {state NOUN;} ^prep {state PREP;} ^pron {state PRON;} ^conj {state CONJ;} (\n) {state LOOKUP;}[a-zA-Z] {handle_string();} %% int main() {yylex();return 0; }struct word {char* word_name;int word_type;struct word* next; };struct word* word_list;extern void *malloc();int add_word(int type, char* word) {struct word* wp;if (lookup_word(word) ! LOOKUP) {printf(!!! warning: word %s already defined\n, word);return 0;}wp (struct word*)malloc(sizeof(struct word));wp-next word_list;wp-word_name (char*) malloc(strlen(word)1);strcpy(wp-word_name, word);wp-word_type type;word_list wp;return 1; }int lookup_word(char* word) {struct word* wp word_list;for(; wp; wp wp-next) {if (strcmp(wp-word_name, word)0) {return wp-word_type;}}return LOOKUP; }void handle_string() {if (state ! LOOKUP) {add_word(state, yytext);}else {switch(lookup_word(yytext)) {case VERB: printf(%s: verb\n, yytext); break;case ADJ: printf(%s: adjective\n, yytext); break;case ADV: printf(%s: adverb\n, yytext); break;case NOUN: printf(%s: noun\n, yytext); break;case PREP: printf(%s: propsition\n, yytext); break;case PRON: printf(%s: pronoun\n, yytext); break;case CONJ: printf(%s: conjunction\n, yytext); break;default:printf(%s: dont recognize\n, yytext); break;}} }注意上面代码增加了一句#includestring.h这是因为我们在代码中使用了 malloc 函数这个函数声明在 string.h 头文件中。完成上面修改后运行 GoLex,将生成的 lex.yy.c 里面的内容拷贝到 CLex 中的 main.c中编译运行后结果如下 从上图执行效果可以看到这次我们用 flex 实现的比较复杂功能在 GoLex 上稍微修改也能实现同等功能。更多调试演示请在 B 站搜索 coding 迪斯尼。代码下载 链接: https://pan.baidu.com/s/1Yg_PXPhWD4RlK16Fk7O0ig 提取码: auhs github: https://github.com/wycl16514/golang-implement-compiler-flex.git
http://wiki.neutronadmin.com/news/272823/

相关文章:

  • myeclipse怎样做网站百度商店应用市场
  • 云南网站建设的价值天元建设集团有限公司咋样
  • 华阴市住房和城乡建设局网站可以做线路板网站的背景图
  • 广州网站建设平台阿里巴巴外贸圈app
  • 摄影网站建设目的app网站开发书籍下载
  • 培训机构网站php源码不屏蔽网站的浏览器
  • 绛帐做企业网站cn.wordpress
  • 无锡网站建设网络推广图形网站建设软件
  • 中国商城网站建设网站建设的主要观点
  • 可以申请微信号的网站查询网站备案进度查询
  • 佛山网站建设及优化公司网站模板 免费下载
  • 建设学校网站的需求分析百度大数据平台
  • 哪个网站可以做奖状集思吧网站怎么做问卷
  • 网站后台 灰色wordpress对比
  • 商城网站租服务器安全不福州php做网站
  • 做学校网站的济南公司曲靖企业网站建设
  • 江苏省城乡与建设厅网站桂林优化公司
  • 网站建设 千助单位网站建设情况汇报
  • 海口市网站开发内容网站管理系统
  • 廉江市住房和城乡建设局网站黄岩路桥网站设计
  • 自己如何在网上做网站八亿wap建站
  • 网站运行费用预算公司网站出现空白页
  • 做私房蛋糕在哪些网站写东西建立大数据平台
  • 重庆做公司网站高端酒店网站模板
  • 广州 网站制高唐网站开发
  • 实战网站开发北京出名的室内设计公司
  • 手机端网站seo做手表网站用什么源码比较好
  • 电子网站设计wordpress 微信支付插件
  • 智能行业网站模板门户网站开发技术服务合同
  • 汉口江岸区城市建设局网站wordpress和di