llvm-project/clang-tools-extra/include-fixer/find-all-symbols/HeaderMapCollector.cpp

34 lines
1006 B
C++

//===-- HeaderMapCoolector.h - find all symbols------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "HeaderMapCollector.h"
#include "llvm/Support/Regex.h"
namespace clang {
namespace find_all_symbols {
llvm::StringRef
HeaderMapCollector::getMappedHeader(llvm::StringRef Header) const {
auto Iter = HeaderMappingTable.find(Header);
if (Iter != HeaderMappingTable.end())
return Iter->second;
// If there is no complete header name mapping for this header, check the
// regex header mapping.
if (RegexHeaderMappingTable) {
for (const auto &Entry : *RegexHeaderMappingTable) {
if (llvm::Regex(Entry.first).match(Header))
return Entry.second;
}
}
return Header;
}
} // namespace find_all_symbols
} // namespace clang