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-31 17:31:51 +08:00
|
|
|
#include "IncludeFixerContext.h"
|
2016-05-13 17:27:54 +08:00
|
|
|
#include "SymbolIndexManager.h"
|
2016-05-31 17:31:51 +08:00
|
|
|
#include "clang/Format/Format.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-13 17:27:54 +08:00
|
|
|
/// \param SymbolIndexMgr A source for matching symbols to header files.
|
2016-08-09 18:02:11 +08:00
|
|
|
/// \param Contexts The contexts for the symbols being queried.
|
2016-05-19 16:21:09 +08:00
|
|
|
/// \param StyleName Fallback style for reformatting.
|
2016-04-28 19:21:29 +08:00
|
|
|
/// \param MinimizeIncludePaths whether inserted include paths are optimized.
|
2016-05-31 17:31:51 +08:00
|
|
|
IncludeFixerActionFactory(SymbolIndexManager &SymbolIndexMgr,
|
2016-08-09 16:26:19 +08:00
|
|
|
std::vector<IncludeFixerContext> &Contexts,
|
|
|
|
StringRef StyleName,
|
2016-05-31 17:31:51 +08:00
|
|
|
bool MinimizeIncludePaths = true);
|
2016-05-19 16:21:09 +08:00
|
|
|
|
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-13 17:27:54 +08:00
|
|
|
SymbolIndexManager &SymbolIndexMgr;
|
2016-04-20 20:43:43 +08:00
|
|
|
|
2016-08-09 16:26:19 +08:00
|
|
|
/// Multiple contexts for files being processed.
|
|
|
|
std::vector<IncludeFixerContext> &Contexts;
|
2016-04-28 19:21:29 +08:00
|
|
|
|
|
|
|
/// Whether inserted include paths should be optimized.
|
|
|
|
bool MinimizeIncludePaths;
|
2016-05-19 16:21:09 +08:00
|
|
|
|
|
|
|
/// The fallback format style for formatting after insertion if no
|
|
|
|
/// clang-format config file was found.
|
|
|
|
std::string FallbackStyle;
|
2016-04-20 20:43:43 +08:00
|
|
|
};
|
|
|
|
|
2016-07-21 21:47:09 +08:00
|
|
|
/// Create replacements, which are generated by clang-format, for the
|
|
|
|
/// missing header and mising qualifiers insertions. The function uses the
|
|
|
|
/// first header for insertion.
|
2016-05-31 17:31:51 +08:00
|
|
|
///
|
|
|
|
/// \param Code The source code.
|
2016-07-21 21:47:09 +08:00
|
|
|
/// \param Context The context which contains all information for creating
|
|
|
|
/// include-fixer replacements.
|
2016-05-31 17:31:51 +08:00
|
|
|
/// \param Style clang-format style being used.
|
2016-07-21 21:47:09 +08:00
|
|
|
/// \param AddQualifiers Whether we should add qualifiers to all instances of
|
|
|
|
/// an unidentified symbol.
|
2016-05-31 17:31:51 +08:00
|
|
|
///
|
2016-07-21 21:47:09 +08:00
|
|
|
/// \return Formatted replacements for inserting, sorting headers and adding
|
|
|
|
/// qualifiers on success; otherwise, an llvm::Error carrying llvm::StringError
|
|
|
|
/// is returned.
|
|
|
|
llvm::Expected<tooling::Replacements> createIncludeFixerReplacements(
|
2016-08-09 16:26:19 +08:00
|
|
|
StringRef Code, const IncludeFixerContext &Context,
|
2016-07-21 21:47:09 +08:00
|
|
|
const format::FormatStyle &Style = format::getLLVMStyle(),
|
|
|
|
bool AddQualifiers = true);
|
2016-05-31 17:31:51 +08:00
|
|
|
|
2016-04-20 20:43:43 +08:00
|
|
|
} // namespace include_fixer
|
|
|
|
} // namespace clang
|
|
|
|
|
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_INCLUDE_FIXER_INCLUDEFIXER_H
|