blob: 2ca2bdf07b41ffb6db580c2ae4a02779b0352069 [file] [log] [blame]
Marcel Hlopkoe8f1c4e2021-07-28 18:12:49 +00001// Part of the Crubit project, under the Apache License v2.0 with LLVM
2// Exceptions. See /LICENSE for license information.
3// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
5#ifndef CRUBIT_RS_BINDINGS_FROM_CC_AST_VISITOR_H_
6#define CRUBIT_RS_BINDINGS_FROM_CC_AST_VISITOR_H_
7
8#include <string>
9
10#include "third_party/llvm/llvm-project/clang/include/clang/AST/Decl.h"
11#include "third_party/llvm/llvm-project/clang/include/clang/AST/RecursiveASTVisitor.h"
12
13namespace rs_bindings_from_cc {
14
15// Iterates over the Clang AST nodes of the header and creates Rust bindings.
16class AstVisitor : public clang::RecursiveASTVisitor<AstVisitor> {
17 public:
18 using Base = clang::RecursiveASTVisitor<AstVisitor>;
19
20 explicit AstVisitor(std::string &rs_api, std::string &rs_api_impl)
21 : rs_api_(rs_api), rs_api_impl_(rs_api_impl) {}
22
23 bool TraverseDecl(clang::Decl *);
24
25 bool VisitFunctionDecl(clang::FunctionDecl *);
26
27 private:
28 std::string &rs_api_;
29 std::string &rs_api_impl_;
30}; // class AstVisitor
31
32} // namespace rs_bindings_from_cc
33
34#endif // CRUBIT_RS_BINDINGS_FROM_CC_AST_VISITOR_H_