gpt4 book ai didi

c++ - 在已经匹配了一些东西之后,有没有办法用 libclang 匹配器到 "restart matching"?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:12:53 25 4
gpt4 key购买 nike

class __attribute__((annotate("some_important_string"))) Foo {
public:
void do_something();
};

我想找到一个类中带有特定注解的所有公共(public)方法。我设置了一个匹配器来获取带有注释的类:

Matcher.addMatcher(cxxRecordDecl(anyOf(isStruct(), isClass()),
hasAttr(attr::Annotate)).bind("class")

但似乎没有任何方法可以匹配注释的确切字符串。

因此,在我的 MatchCallback::run 方法中,我通过获取属性、dyn_casting 到 AnnotateAttr 并检查注释字符串 ref 来检查属性字符串:

auto &attrs = decl->getAttrs();
...
auto attribute_attr = dyn_cast<AnnotateAttr>(attr);
auto string_ref = attribute_attr->getAnnotation();

但现在我真的宁愿做更多的匹配,而不是 AST 树遍历。我的理解是匹配器比树遍历函数更稳定,而且它们似乎也更直接。

那么在为注解字符串过滤类之后,有什么方法可以返回到使用匹配器吗?

我目前正在根据以下代码进行过滤,它工作正常,但这不是我想要的方式:

        if (method->getAccess() != AS_public) {
if (PRINT_SKIPPED_EXPORT_REASONS) printf("%s**%s is not public, skipping\n", indentation.c_str(), method_name.c_str());
return;
}
if (method->isOverloadedOperator()) {
if (PRINT_SKIPPED_EXPORT_REASONS) printf("%s**skipping overloaded operator %s\n", indentation.c_str(), method_name.c_str());
return;
}
if (dyn_cast<CXXConstructorDecl>(method)) {
if (PRINT_SKIPPED_EXPORT_REASONS) printf("%s**skipping constructor %s\n", indentation.c_str(), method_name.c_str());
return;
}
if (dyn_cast<CXXDestructorDecl>(method)) {
if (PRINT_SKIPPED_EXPORT_REASONS) printf("%s**skipping destructor %s\n", indentation.c_str(), method_name.c_str());
return;
}
if (method->isPure()) {
assert(method->isVirtual());
if (PRINT_SKIPPED_EXPORT_REASONS) printf("%s**skipping pure virtual %s\n", indentation.c_str(), method_name.c_str());
return;
}

最佳答案

我不确定 Clang AST Matchers API 当前(从 3.9 开始)是否支持重新启动匹配过程。据我所知 - MatchFinder 包括匹配节点 MatchFinder.match 的方法, 并匹配整个翻译单元 MatchFinder.matchAST ,但不是从提供的节点递归匹配。

解决此问题的一种方法是简单地使您的匹配器更复杂,并将您想要进行的所有匹配嵌入到一个位置(见下文)。

#include <string>
#include <iostream>
#include "clang/AST/AST.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Frontend/TextDiagnosticPrinter.h"
#include "clang/Tooling/CommonOptionsParser.h"
#include "clang/Tooling/Refactoring.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/Support/raw_ostream.h"

using namespace clang;
using namespace clang::ast_matchers;
using namespace clang::driver;
using namespace clang::tooling;

static llvm::cl::OptionCategory ToolingSampleCategory("Matcher Sample");

class Handler : public MatchFinder::MatchCallback {
public:
Handler()
{}

void run(const MatchFinder::MatchResult &Result) override {
if(const CXXRecordDecl* klass = Result.Nodes.getNodeAs<CXXRecordDecl>("klass"))
{
for(auto it : klass->attrs())
{
Attr& attr = (*it);
auto annotatedAttr = dyn_cast<AnnotateAttr>(&attr);
if((annotatedAttr == nullptr) || (std::string(annotatedAttr->getAnnotation()) != "meh"))
{
return;
}
}
}
if(const CXXMethodDecl* mthd = Result.Nodes.getNodeAs<CXXMethodDecl>("mthd"))
{
std::cout << mthd->getNameInfo().getAsString() << std::endl;
}
}
};

int main(int argc, const char **argv) {
CommonOptionsParser op(argc, argv, ToolingSampleCategory);
RefactoringTool Tool(op.getCompilations(), op.getSourcePathList());
Handler handler;
MatchFinder finder;
finder.addMatcher(
cxxRecordDecl(
hasAttr(attr::Annotate),
forEach(
cxxMethodDecl(
isPublic(),
unless(isPure()),
unless(cxxConstructorDecl()),
unless(cxxDestructorDecl())).bind("mthd")
)).bind("klass"), &handler);

Tool.run(newFrontendActionFactory(&finder).get());
return 0;
}

关于c++ - 在已经匹配了一些东西之后,有没有办法用 libclang 匹配器到 "restart matching"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38067137/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com