文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

我在GitHub上又找到一个堪称神器的命令行工具

2024-12-03 05:21

关注

[[399817]]

平常解析源代码也算是程序员的家常便饭了,如果有个工具帮你一把那是最好不过的了,Semantic具体如何使用,猿妹下面一说你就明白了:

首先呢,运行semantic --help获取最新的完整选项列表:

解析

  1. Usage: semantic parse ([--sexpression] | [--json] | [--json-graph] | [--symbols] 
  2.                       | [--dot] | [--show] | [--quiet]) [FILES...] 
  3.   Generate parse trees for path(s) 
  4.  
  5. Available options: 
  6.   --sexpression            Output s-expression parse trees (default) 
  7.   --json                   Output JSON parse trees 
  8.   --json-graph             Output JSON adjacency list 
  9.   --symbols                Output JSON symbol list 
  10.   --dot                    Output DOT graph parse trees 
  11.   --show                   Output using the Show instance (debug only, format 
  12.                            subject to change without notice) 
  13.   --quiet                  Don't produce output, but show timing stats 

Semantic使用树形图来生成解析树,现在我们拿一个简单的程序来解析你会看的更明了,打开test.A.py文件,粘贴如下:

  1. def Foo(x): 
  2.     return x 
  3. print Foo("hi") 

现在,让我们生成一个抽象语法树(AST)

  1. $ semantic parse test.A.py 
  2. (Statements 
  3.   (Annotation 
  4.     (Function 
  5.       (Identifier) 
  6.       (Identifier) 
  7.       (Return 
  8.         (Identifier))) 
  9.     (Empty)) 
  10.   (Call 
  11.     (Identifier) 
  12.     (Call 
  13.       (Identifier) 
  14.       (TextElement) 
  15.       (Empty)) 
  16.     (Empty))) 

默认的s-expression输出是一种很好的格式,可以快速可视化代码结构。我们可以看到有一个声明的函数,然后有一个调用表达式,嵌套在另一个调用表达式中,它与函数调用print和Foo。你还可以使用其他的输出格式。

DIFF(比较)

  1. Usage: semantic diff ([--sexpression] | [--json] | [--json-graph] | [--toc] | 
  2.                      [--dot] | [--show]) [FILE_A] [FILE_B] 
  3.   Compute changes between paths 
  4.  
  5. Available options: 
  6.   --sexpression            Output s-expression diff tree (default) 
  7.   --json                   Output JSON diff trees 
  8.   --json-graph             Output JSON diff trees 
  9.   --toc                    Output JSON table of contents diff summary 
  10.   --dot                    Output the diff as a DOT graph 
  11.   --show                   Output using the Show instance (debug only, format 
  12.                            subject to change without notice) 

Graph(图)

  1. Usage: semantic graph ([--imports] | [--calls]) [--packages] ([--dot] | [--json] 
  2.                       | [--show]) ([--root DIR] [--exclude-dir DIR] 
  3.                       DIR:LANGUAGE | FILE | --language ARG (FILES... | --stdin)) 
  4.   Compute a graph for a directory or from a top-level entry point module 
  5.  
  6. Available options: 
  7.   --imports                Compute an import graph (default) 
  8.   --calls                  Compute a call graph 
  9.   --packages               Include a vertex for the package, with edges from it 
  10.                            to each module 
  11.   --dot                    Output in DOT graph format (default) 
  12.   --json                   Output JSON graph 
  13.   --show                   Output using the Show instance (debug only, format 
  14.                            subject to change without notice) 
  15.   --root DIR               Root directory of project. Optional, defaults to 
  16.                            entry file/directory. 
  17.   --exclude-dir DIR        Exclude a directory (e.g. vendor) 
  18.   --language ARG           The language for the analysis. 
  19.   --stdin                  Read a list of newline-separated paths to analyze 
  20.                            from stdin. 

语言支持

多语言支持是Semantic的一大优势,目前支持Ruby、JavaScript、typescript、Python、Go、PHP、Java等主流编程语言都支持

Semantic最低要求GHC 8.6.4和Cabal 2.4,建议使用ghcup沙箱GHC版本,为通过操作系统的软件包管理器安装的GHC软件包可能无法安装静态链接版本的GHC启动库。

  1. git clone git@github.com:github/semantic.git 
  2. cd semantic 
  3. script/bootstrap 
  4. cabal new-build 
  5. cabal new-test 
  6. cabal new-run semantic -- --help 

创建者使用cabal的Nix风格的本地版本进行开发。要快速入门,可以按照以上操作。

目前,semantic已经在GitHub上获得 8000 个Star,450 个Fork,感兴趣的可以到GitHub上查阅更多详情

(GitHub地址:https://github.com/github/semantic)。

 

来源:开源最前线内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯