Created
March 19, 2023 16:09
-
-
Save aneeshdurg/e6accc17062948e82f2bf2aede9e3651 to your computer and use it in GitHub Desktop.
Python script to dump a C++ file's AST (using libclang)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from pathlib import Path | |
from typing import Optional | |
import click | |
import clang.cindex | |
def dump_ast(tu: clang.cindex.TranslationUnit): | |
def _process(node: clang.cindex.Cursor, depth: int): | |
indent = depth * 2 | |
print(" " * indent, node.kind, node.spelling) | |
for c in node.get_children(): | |
_process(c, depth + 1) | |
_process(tu.cursor, 0) | |
@click.command(help="dump C++ ast") | |
@click.argument("cpp_file") | |
@click.option( | |
"-c", "--clangLocation", type=Path, help="Path to libclang.so", required=True | |
) | |
def main(cpp_file: str, clanglocation: Optional[Path]): | |
clang.cindex.Config.set_library_file(clanglocation) | |
index = clang.cindex.Index.create() | |
dump_ast(index.parse(cpp_file)) | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment