c – 如何使用Python绑定解析单个文件到Clang?

前端之家收集整理的这篇文章主要介绍了c – 如何使用Python绑定解析单个文件到Clang?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在编写一个简单的工具来帮助重构我们的应用程序的源代码.我想解析基于wxWidgets库的C代码,它定义了GUI并生成用于Qt的XML .ui文件.我需要获取所有函数调用和参数值.

目前我正在使用Python绑定到Clang,使用下面的示例代码我得到了令牌及其种类和位置,但是游标种类总是CursorKind.INVALID_FILE.

import sys
import clang.cindex

def find_typerefs(node):
    """ Find all references to the type named 'typename'
    """

    for t in node.get_tokens():
        if not node.location.file != sys.argv[1]:
            continue
        if t.kind.value != 0 and t.kind.value != 1 and t.kind.value != 4:
            print t.spelling
            print t.location
            print t.cursor.kind
            print t.kind
            print "\n"

index = clang.cindex.Index.create()
tu = index.parse(sys.argv[1])
print 'Translation unit:',tu.spelling
find_typerefs(tu.cursor)

确定光标种类的正确方法是什么?

除了很少的博客文章,我找不到任何文档,但它们已经过时或者没有涵盖这个主题.我无法从Clang附带的例子中解决这个问题.

最佳答案
对于游标对象,只需使用cursor.kind即可.也许问题是你走的是令牌而不是子游标对象(不确定).
您可以使用get_children来转向AST,而不是get_tokens.

为了了解AST的外观,当我想编写AST行走函数时,我使用这个脚本:https://gist.github.com/2503232.
这只是在我的系统上显示了cursor.kind,并给出了合理的输出.没有CursorKind.INVALID_FILE.

原文链接:https://www.f2er.com/python/439407.html

猜你在找的Python相关文章