2016-04-20 20:43:43 +08:00
|
|
|
//===-- IncludeFixer.h - Include inserter -----------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_INCLUDE_FIXER_INCLUDEFIXER_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_INCLUDE_FIXER_INCLUDEFIXER_H
|
|
|
|
|
2016-05-04 16:22:35 +08:00
|
|
|
#include "XrefsDBManager.h"
|
2016-04-20 20:43:43 +08:00
|
|
|
#include "clang/Tooling/Core/Replacement.h"
|
|
|
|
#include "clang/Tooling/Tooling.h"
|
2016-05-03 01:49:00 +08:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
2016-04-20 20:43:43 +08:00
|
|
|
|
|
|
|
namespace clang {
|
2016-05-03 01:49:00 +08:00
|
|
|
|
|
|
|
class CompilerInvocation;
|
|
|
|
class DiagnosticConsumer;
|
|
|
|
class FileManager;
|
|
|
|
class PCHContainerOperations;
|
|
|
|
|
2016-04-20 20:43:43 +08:00
|
|
|
namespace include_fixer {
|
|
|
|
|
|
|
|
class IncludeFixerActionFactory : public clang::tooling::ToolAction {
|
|
|
|
public:
|
2016-05-04 16:22:35 +08:00
|
|
|
/// \param XrefsDBMgr A source for matching symbols to header files.
|
2016-04-20 20:43:43 +08:00
|
|
|
/// \param Replacements Storage for the output of the fixer.
|
2016-04-28 19:21:29 +08:00
|
|
|
/// \param MinimizeIncludePaths whether inserted include paths are optimized.
|
2016-04-20 20:43:43 +08:00
|
|
|
IncludeFixerActionFactory(
|
2016-05-04 16:22:35 +08:00
|
|
|
XrefsDBManager &XrefsDBMgr,
|
|
|
|
std::vector<clang::tooling::Replacement> &Replacements,
|
2016-04-28 19:21:29 +08:00
|
|
|
bool MinimizeIncludePaths = true);
|
2016-05-03 01:49:00 +08:00
|
|
|
~IncludeFixerActionFactory() override;
|
2016-04-20 20:43:43 +08:00
|
|
|
|
|
|
|
bool
|
|
|
|
runInvocation(clang::CompilerInvocation *Invocation,
|
|
|
|
clang::FileManager *Files,
|
|
|
|
std::shared_ptr<clang::PCHContainerOperations> PCHContainerOps,
|
|
|
|
clang::DiagnosticConsumer *Diagnostics) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// The client to use to find cross-references.
|
2016-05-04 16:22:35 +08:00
|
|
|
XrefsDBManager &XrefsDBMgr;
|
2016-04-20 20:43:43 +08:00
|
|
|
|
|
|
|
/// Replacements are written here.
|
|
|
|
std::vector<clang::tooling::Replacement> &Replacements;
|
2016-04-28 19:21:29 +08:00
|
|
|
|
|
|
|
/// Whether inserted include paths should be optimized.
|
|
|
|
bool MinimizeIncludePaths;
|
2016-04-20 20:43:43 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace include_fixer
|
|
|
|
} // namespace clang
|
|
|
|
|
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_INCLUDE_FIXER_INCLUDEFIXER_H
|