Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用方面 #9

Open
bizehao opened this issue Dec 16, 2023 · 4 comments
Open

使用方面 #9

bizehao opened this issue Dec 16, 2023 · 4 comments

Comments

@bizehao
Copy link

bizehao commented Dec 16, 2023

我可以自定义一些语法,用这个库来进行解析吗

@vczh
Copy link
Member

vczh commented Dec 19, 2023

https://github.com/vczh-libraries/Workflow/tree/master/Source/Parser/Syntax
https://github.com/vczh-libraries/Workflow/tree/master/Source/Parser/Generated

参考一下这里,用 GlrParserGen.exe 编译一下这些xml文件就可以生成一大堆C++代码了,拿那些代码跟你的项目一起编译,你就得到了你的parser。

GlrParserGen.exe 可以在release repo里面找到,linux下用的话有一个makefile。不过有一段时间没跑过makefile了,如果你遇到什么问题可以来这里说一声。没有其他问题的话我过一阵子就会关掉issue。

@bizehao
Copy link
Author

bizehao commented Dec 22, 2023

好的,我今天试一下,谢谢

@bizehao
Copy link
Author

bizehao commented Dec 24, 2023

不知道是不是版本的问题,我用这种格式

<Ast` name="Ast">
     <CppNamespace>vl::JsonParser</CppNamespace>
     <ReflectionNamespace>system::JsonParser</ReflectionNamespace>
     <ClassPrefix>Wf</ClassPrefix>
       <File file="Ast/Ast.txt"/>
   </Ast>
 </Asts>

 <Lexer file="Lexer.txt"/>
 <Syntax name="Parser">
     <File file="Syntax/Syntax.txt"/>
 </Syntax>

就报错 -> Missing /Parser/Asts/Ast@file[@name="Ast"].

看源码, 发现得改成这种才行

<Asts>
    <Ast name="Ast" file="Ast/Ast.txt">
      <CppNamespace>vl::JsonParser</CppNamespace>
      <ReflectionNamespace>system::JsonParser</ReflectionNamespace>
      <ClassPrefix>Wf</ClassPrefix>
    </Ast>
  </Asts>

  <Lexer file="Lexer.txt"/>
  <Syntax name="Parser" file="Syntax/Syntax.txt"/>

@vczh
Copy link
Member

vczh commented Dec 27, 2023

报错的这个是新版本的,正好我还没出新的release版本号。你如果再1.2.7.0或者以前的话,syntax确实只支持一个文件的。不过Release Repo里面的代码只是还差GacUI的几个bug,如果你只用VlppParser2的话,你可以直接用了,我觉得我从现在到出release中间不会修改VlppParser2了。

如果你现在在1.2.7.0或者以前的话,以后升级到新版本,就必须改成报错的那种写法了。如果你的语法很复杂(就像我上面Workflow的例子一样),多文件的syntax可以让你的语法变得清晰一点,因为里面加了新的关键字,可以约束本syntax文件只有若干个rule name可以被其他syntax文件看到。

如果你的syntax至始至终都只有一个文件的话,那以后升级只需要改xml就可以了。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants