- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
有没有办法使用 libclang 检测匿名枚举而不依赖拼写名称中的文本?
python 绑定(bind)到 libclang包括使用 clang.cindex.Cursor.is_anonymous 检测 C/C++ 结构或 union 是否匿名的功能, 最终调用 clang_Cursor_isAnonymous .
以下示例演示了该问题。
import sys
from clang.cindex import *
def nodeinfo(n):
return (n.kind, n.is_anonymous(), n.spelling, n.type.spelling)
idx = Index.create()
# translation unit parsed correctly
tu = idx.parse(sys.argv[1], ['-std=c++11'])
assert(len(tu.diagnostics) == 0)
for n in tu.cursor.walk_preorder():
if n.kind == CursorKind.STRUCT_DECL and n.is_anonymous():
print nodeinfo(n)
if n.kind == CursorKind.UNION_DECL and n.is_anonymous():
print nodeinfo(n)
if n.kind == CursorKind.ENUM_DECL:
if n.is_anonymous():
print nodeinfo(n)
else:
print 'INCORRECT', nodeinfo(n)
在 sample.cpp 上运行时
enum
{
VAL = 1
};
struct s
{
struct {};
union
{
int x;
float y;
};
};
给予:
INCORRECT (CursorKind.ENUM_DECL, False, '', '(anonymous enum at sample1.cpp:1:1)')
(CursorKind.STRUCT_DECL, True, '', 's::(anonymous struct at sample1.cpp:8:5)')
(CursorKind.UNION_DECL, True, '', 's::(anonymous union at sample1.cpp:9:5)')
最佳答案
不幸的是,clang_Cursor_isAnonymous
仅适用于结构和 union ,正如您在 tools/libclang/CXType.cpp 中的 clang 源代码中看到的那样
unsigned clang_Cursor_isAnonymous(CXCursor C){
if (!clang_isDeclaration(C.kind))
return 0;
const Decl *D = cxcursor::getCursorDecl(C);
if (const RecordDecl *FD = dyn_cast_or_null<RecordDecl>(D))
return FD->isAnonymousStructOrUnion();
return 0;
}
所以回退到 clang.cindex.Cursor.is_anonymous 中的 conf.lib.clang_Cursor_isAnonymous
没有任何新功能,因为游标类型已经根据 FIELD_DECL 进行了检查(这仅适用于结构和 union )
def is_anonymous(self):
"""
Check if the record is anonymous.
"""
if self.kind == CursorKind.FIELD_DECL:
return self.type.get_declaration().is_anonymous()
return conf.lib.clang_Cursor_isAnonymous(self)
您可以尝试提取当前元素的标识符(示例中为 n)并检查它是否存在或为空
关于python - 使用 libclang 查找匿名枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35113197/
如果我在一个大项目中有多个文件,所有文件共享大量包含的头文件,有什么办法可以共享解析头文件的工作吗?我曾希望创建一个索引,然后向其中添加多个 translationUnits 可能会导致一些工作被共享
如果我在一个大项目中有多个文件,所有这些文件共享大量包含的头文件,有没有办法分担解析头文件的工作?我曾希望创建一个 Index 然后向其添加多个 translationUnits 可能会导致一些工作被
我使用 libclang 来解析源文件并获取对某种类型的引用,如 CXType ,假设它是“const std::__1::basic_string ”(由 clang_getTypeSpelling
我正在使用最新的 LibClang 来解析一些 C 头文件。我处理的代码来自 CXUnsavedFile 的(它都是动态生成的,没有任何内容存在于磁盘上)。例如: FileA.h 包含: struct
有时,当我尝试在Xcode中构建项目时(大约十分之一),它崩溃并退出。然后,我得到一个错误框,其中显示:“使用libclang.dylib插件时Xcode意外退出”。 Xcode有时也会随机崩溃,没有
我使用的是 Linux Mint,并且使用 Clang Complete 中的 makefile 安装了 clang_complete ,但它不起作用。当我打开 cpp 文件时,出现错误消息: Loa
我正在尝试使用 libclang 构建一个小型解析程序。 要解析的源文件(Node.h): #pragma once struct Node { int value; struct N
Currentlty 我正在做一个项目,用 libclang 转储 C++ 代码的类信息。还有一些关于类型限定符的悲惨经历:const、volatile、&、&& 以及它们的组合。以下是转储函数删除参
有什么方法可以从 libclang 中获取信息,了解源文件中的 C++ 代码是否具有正确的语法?即使使用无效的 C++ 代码,Libclang 也会尝试创建翻译单元。 最佳答案 一般问题的一般答案是肯
如何使用 libclang 获取原始文字的值? 例如,如果我有一个游标类型为 CXCursor_IntegerLiteral 的 CXCursor,我该如何提取文字值。 更新: 我在使用 libcla
我有以下使用 clang-c API 的代码。 #include #include #include CXChildVisitResult printVisitor(CXCursor curso
我有一个 c++ 文件,它会更改,其余所有头文件保持不变。但是每当我重新解析一个翻译单元时,libclang 最终会消耗大量的 cpu 和 ram。虽然它使用预编译头和所有(我可以看到生成的前导文件)
class aclass{ public: int num; }; int main() { aclass *ok; ok->num = 4; return 0; }
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 4年前关闭。 Improve this qu
我正在使用 LibClang 列出所有函数调用及其相应的定义。 以下是执行此操作的python脚本: def traverse(node): if node.kind == CALL_EXPR:
我尝试使用 libClang 解析 C++ 方法,但在尝试获取函数的参数/参数时,有时会给出错误的类型。 例子: 我有两种不同的方法 std::string Method::exportMethod(
我尝试使用 libClang 解析 C++ 方法,但在尝试获取函数的参数/参数时,有时会给出错误的类型。 例子: 我有两种不同的方法 std::string Method::exportMethod(
我试图了解如何使用 libclang 完成代码。我看过“超越编译器的思考”,并且查看了 c-index-test,我发现了一个简单的示例程序 here 我编译了该程序,并在我制作的示例文件上运行它,该
我需要解析一个 C++ 代码文件并找到其中所有具有完全限定名称的函数调用。我正在使用 libclang 的 Python 绑定(bind),因为它似乎比编写我自己的 C++ 解析器更容易,即使文档很少
我正在学习使用 Python + libclang 解析 C++ 文件,并借助 Eli Bendersky 提供的这个信息量很大(但有点过时)的教程. 我的目标是解析 C++ 文件并识别这些文件中存在
我是一名优秀的程序员,十分优秀!