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

【RFC】- 可视化调试 #5

Open
MingkHe opened this issue Jun 24, 2020 · 2 comments
Open

【RFC】- 可视化调试 #5

MingkHe opened this issue Jun 24, 2020 · 2 comments

Comments

@MingkHe
Copy link
Collaborator

MingkHe commented Jun 24, 2020

客户需求:
Input: 提供测试代码,指定需要可视化的变量, 指定可视化变量的数据类型
Output: 一堆关于指定可视化变量的演化图片

思路:
分析用户代码,在可视化变量每次更新时画一张图,把这些图片收集起来再返回就行了。

使用工具:
代码分析和插入: python AST
绘图: Graphviz

具体实现:
关于如何在变量更新后绘图:
把用户代码转化成抽象语法树,然后找出要可视化的变量的位置,在更新这个变量的语句后插入绘制图片的函数。
关于如何绘图:
把变量的stage传递进绘图函数,然后绘图函数把变量所需的信息转化成我们定义好的绘图数据结构,然后再把这种数据结构转化成Graphviz所需的代码格式,最后通过Graphviz生成图片即可。

定义的绘图数据结构如下:
Screen Shot 2020-07-03 at 2 34 19 PM

第一阶段的目标:
画出数组和链表

@azl397985856
Copy link
Contributor

azl397985856 commented Jul 6, 2020

stage1 目标: 提供使用demo,提供绘图的API(不包括AST部分)

用例(初始版):
Untitled Diagram (41)

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