Hiralo updated this revision to Diff 301277. Hiralo retitled this revision from "[clang-tidy] adding "--clang-tidy-config=<file-path>" to specify custom config file" to "[clang-tidy] adding "--config-file=<file-path>" to specify custom config file.". Hiralo edited the summary of this revision. Hiralo added a comment.
Latest patch with Lit test-case. Updated Title and Summary. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D89936/new/ https://reviews.llvm.org/D89936 Files: clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp clang-tools-extra/test/clang-tidy/infrastructure/Inputs/config-file/config-file clang-tools-extra/test/clang-tidy/infrastructure/config-file.cpp Index: clang-tools-extra/test/clang-tidy/infrastructure/config-file.cpp =================================================================== --- /dev/null +++ clang-tools-extra/test/clang-tidy/infrastructure/config-file.cpp @@ -0,0 +1,2 @@ +// RUN: clang-tidy -config-file=%S/Inputs/config-file/config-file -dump-config -- | FileCheck %s -check-prefix=CHECK-BASE +// CHECK-BASE: Checks: {{.*}}hicpp-uppercase-literal-suffix Index: clang-tools-extra/test/clang-tidy/infrastructure/Inputs/config-file/config-file =================================================================== --- /dev/null +++ clang-tools-extra/test/clang-tidy/infrastructure/Inputs/config-file/config-file @@ -0,0 +1 @@ +Checks: "-*,hicpp-uppercase-literal-suffix" Index: clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp =================================================================== --- clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp +++ clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp @@ -73,6 +73,14 @@ )"), cl::init(""), cl::cat(ClangTidyCategory)); +static cl::opt<std::string> ConfigFile("config-file", cl::desc(R"( +Specify full path of .clang-tidy or custom config file. +For example, --config-file=/some/path/myTidyConfig +Note: this option is mutually exclusive to --config and --checks options. +)"), + cl::init(""), + cl::cat(ClangTidyCategory)); + static cl::opt<std::string> WarningsAsErrors("warnings-as-errors", cl::desc(R"( Upgrades warnings to errors. Same format as '-checks'. @@ -302,6 +310,30 @@ if (UseColor.getNumOccurrences() > 0) OverrideOptions.UseColor = UseColor; + if (!ConfigFile.empty()) { + if (!Config.empty()) { + llvm::errs() << "Error: --config-file and --config are mutually " + "exclusive. Specify only one.\n"; + return nullptr; + } + + if (!Checks.empty()) { + llvm::errs() << "Error: --config-file and --checks are mutually " + "exclusive. Specify only one.\n"; + return nullptr; + } + + llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> Text = + llvm::MemoryBuffer::getFile(ConfigFile.c_str()); + if (std::error_code EC = Text.getError()) { + llvm::errs() << "Can't read config-file '" << ConfigFile + << "': " << EC.message() << "\n"; + return nullptr; + } + + Config.assign((*Text)->getBuffer()); + } + if (!Config.empty()) { if (llvm::ErrorOr<ClangTidyOptions> ParsedConfig = parseConfiguration(Config)) {
Index: clang-tools-extra/test/clang-tidy/infrastructure/config-file.cpp =================================================================== --- /dev/null +++ clang-tools-extra/test/clang-tidy/infrastructure/config-file.cpp @@ -0,0 +1,2 @@ +// RUN: clang-tidy -config-file=%S/Inputs/config-file/config-file -dump-config -- | FileCheck %s -check-prefix=CHECK-BASE +// CHECK-BASE: Checks: {{.*}}hicpp-uppercase-literal-suffix Index: clang-tools-extra/test/clang-tidy/infrastructure/Inputs/config-file/config-file =================================================================== --- /dev/null +++ clang-tools-extra/test/clang-tidy/infrastructure/Inputs/config-file/config-file @@ -0,0 +1 @@ +Checks: "-*,hicpp-uppercase-literal-suffix" Index: clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp =================================================================== --- clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp +++ clang-tools-extra/clang-tidy/tool/ClangTidyMain.cpp @@ -73,6 +73,14 @@ )"), cl::init(""), cl::cat(ClangTidyCategory)); +static cl::opt<std::string> ConfigFile("config-file", cl::desc(R"( +Specify full path of .clang-tidy or custom config file. +For example, --config-file=/some/path/myTidyConfig +Note: this option is mutually exclusive to --config and --checks options. +)"), + cl::init(""), + cl::cat(ClangTidyCategory)); + static cl::opt<std::string> WarningsAsErrors("warnings-as-errors", cl::desc(R"( Upgrades warnings to errors. Same format as '-checks'. @@ -302,6 +310,30 @@ if (UseColor.getNumOccurrences() > 0) OverrideOptions.UseColor = UseColor; + if (!ConfigFile.empty()) { + if (!Config.empty()) { + llvm::errs() << "Error: --config-file and --config are mutually " + "exclusive. Specify only one.\n"; + return nullptr; + } + + if (!Checks.empty()) { + llvm::errs() << "Error: --config-file and --checks are mutually " + "exclusive. Specify only one.\n"; + return nullptr; + } + + llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> Text = + llvm::MemoryBuffer::getFile(ConfigFile.c_str()); + if (std::error_code EC = Text.getError()) { + llvm::errs() << "Can't read config-file '" << ConfigFile + << "': " << EC.message() << "\n"; + return nullptr; + } + + Config.assign((*Text)->getBuffer()); + } + if (!Config.empty()) { if (llvm::ErrorOr<ClangTidyOptions> ParsedConfig = parseConfiguration(Config)) {
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits