How can I get the parent cursor that appears in clang_visitChildren
callback?
For instance, consider the following code to be parsed:
__attribute__((visibility("default"))) void func();
If I traverse recursively, I can locate the attribute cursor (visibility) with the parent setting to the function declaration. But when I try to get the parent of this cursor later with clang_getCursorSemanticParent
or clang_getCursorLexicalParent
, I both get a CXCursor_InvalidFile
.
That is because attributes are "attached" to other entities.
I suggest running clang with
-ast-dump
, as it will clearly show you the layout of elements. Specifically, we get something like this with the above code.Thus, attributes for a function can be seen by visiting the children of the function itself.
I currently use this function for a project I'm working on, but there are likely MUCH better ways, since this is the first time I've used libclang directly.
EDIT - EDIT - EDIT
I have given up trying to get better results from just libclang alone. The information just isn't available.
You can get most of what you want from the C++ API, and here are some diffs I made to the libclang source itself to do what I want. If you use just the C++ API, it should be obvious how to get that information from these diffs.
Obviously, this would break other people expecting if this were just blatantly added to libclang, though almost all the changes provide information where there was none before.
I am NOT suggesting you do this.
I'm just showing what I did during experimentation to see what information was available for attributes.
This change is needed because
normalizeName
will just crash on some things (one being Asm Label attributes).This one provides more than just an empty string for
clang_getCursorSpelling
with attribute types.This one provides an implementation for
clang_getCursorPrettyPrinted
for attributes.and is followed immediately by this one that returns a bit more information (the previous implementation just returned
clang_getCursorSpelling
).