mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 18:50:09 +01:00
This modifies scripts/check_header_guards.py to add the CARBON_ prefix; everything else is pre-commit.
59 lines
2.0 KiB
C++
59 lines
2.0 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#ifndef CARBON_MIGRATE_CPP_CPP_REFACTORING_MATCHER_MANAGER_H_
|
|
#define CARBON_MIGRATE_CPP_CPP_REFACTORING_MATCHER_MANAGER_H_
|
|
|
|
#include "clang/ASTMatchers/ASTMatchFinder.h"
|
|
#include "clang/Tooling/Core/Replacement.h"
|
|
#include "migrate_cpp/cpp_refactoring/matcher.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// Manages registration of AST matchers.
|
|
class MatcherManager {
|
|
public:
|
|
explicit MatcherManager(Matcher::ReplacementMap* in_replacements)
|
|
: replacements(in_replacements) {}
|
|
|
|
// Registers Matcher implementations.
|
|
void Register(std::unique_ptr<MatcherFactory> factory) {
|
|
matchers.push_back(std::make_unique<MatchCallbackWrapper>(
|
|
&finder, std::move(factory), replacements));
|
|
}
|
|
|
|
auto GetFinder() -> clang::ast_matchers::MatchFinder* { return &finder; }
|
|
|
|
private:
|
|
// Adapts Matcher for use with MatchCallback.
|
|
class MatchCallbackWrapper
|
|
: public clang::ast_matchers::MatchFinder::MatchCallback {
|
|
public:
|
|
explicit MatchCallbackWrapper(clang::ast_matchers::MatchFinder* finder,
|
|
std::unique_ptr<MatcherFactory> in_factory,
|
|
Matcher::ReplacementMap* in_replacements)
|
|
: factory(std::move(in_factory)), replacements(in_replacements) {
|
|
factory->AddMatcher(finder, this);
|
|
}
|
|
|
|
void run(const clang::ast_matchers::MatchFinder::MatchResult& match_result)
|
|
override {
|
|
factory->CreateMatcher(&match_result, replacements)->Run();
|
|
}
|
|
|
|
private:
|
|
std::unique_ptr<MatcherFactory> factory;
|
|
Matcher::ReplacementMap* const replacements;
|
|
};
|
|
|
|
Matcher::ReplacementMap* const replacements;
|
|
clang::ast_matchers::MatchFinder finder;
|
|
std::vector<std::unique_ptr<MatcherFactory>> factories;
|
|
std::vector<std::unique_ptr<MatchCallbackWrapper>> matchers;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_MIGRATE_CPP_CPP_REFACTORING_MATCHER_MANAGER_H_
|