Skip to content

Commit 5c90ac2

Browse files
committed
chore: Tidy up command line arguments
1 parent f19a27a commit 5c90ac2

File tree

6 files changed

+176
-123
lines changed

6 files changed

+176
-123
lines changed

source/Tool/GenerateAction.cpp

+12-12
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// Official repository: https://github.com/cppalliance/mrdox
1010
//
1111

12-
#include "Options.hpp"
13-
#include "Tool/ConfigImpl.hpp"
12+
#include "ToolArgs.hpp"
13+
#include "ConfigImpl.hpp"
1414
#include "CorpusImpl.hpp"
1515
#include "AST/AbsoluteCompilationDatabase.hpp"
1616
#include <mrdox/Generators.hpp>
@@ -32,23 +32,23 @@ DoGenerateAction()
3232
std::string extraYaml;
3333
{
3434
llvm::raw_string_ostream os(extraYaml);
35-
if(IgnoreMappingFailures.getValue())
35+
if(toolArgs.ignoreMappingFailures.getValue())
3636
os << "ignore-failures: true\n";
3737
}
3838

3939
// Load configuration file
40-
if(! ConfigPath.hasArgStr())
40+
if(! toolArgs.configPath.hasArgStr())
4141
return Error("the config path argument is missing");
42-
auto config = loadConfigFile(ConfigPath, extraYaml);
42+
auto config = loadConfigFile(toolArgs.configPath, extraYaml);
4343
if(! config)
4444
return config.getError();
4545

4646
// Load the compilation database
47-
if(InputPaths.empty())
47+
if(toolArgs.inputPaths.empty())
4848
return Error("the compilation database path argument is missing");
49-
if(InputPaths.size() > 1)
50-
return Error("got {} input paths where 1 was expected", InputPaths.size());
51-
auto compilationsPath = files::normalizePath(InputPaths.front());
49+
if(toolArgs.inputPaths.size() > 1)
50+
return Error("got {} input paths where 1 was expected", toolArgs.inputPaths.size());
51+
auto compilationsPath = files::normalizePath(toolArgs.inputPaths.front());
5252
std::string errorMessage;
5353
auto jsonCompilations = tooling::JSONCompilationDatabase::loadFromFile(
5454
compilationsPath, errorMessage, tooling::JSONCommandLineSyntax::AutoDetect);
@@ -70,9 +70,9 @@ DoGenerateAction()
7070
auto ex = std::make_unique<tooling::AllTUsToolExecutor>(compilations, ThreadCount);
7171

7272
// Create the generator
73-
auto generator = generators.find(FormatType.getValue());
73+
auto generator = generators.find(toolArgs.formatType.getValue());
7474
if(! generator)
75-
return Error("the Generator \"{}\" was not found", FormatType.getValue());
75+
return Error("the Generator \"{}\" was not found", toolArgs.formatType.getValue());
7676

7777
// Run the tool, this can take a while
7878
auto corpus = CorpusImpl::build(*ex, *config);
@@ -82,7 +82,7 @@ DoGenerateAction()
8282
// Run the generator.
8383
if(config.get()->verboseOutput)
8484
reportInfo("Generating docs...\n");
85-
return generator->build(OutputPath.getValue(), **corpus);
85+
return generator->build(toolArgs.outputPath.getValue(), **corpus);
8686
}
8787

8888
} // mrdox

source/Tool/Options.hpp

-47
This file was deleted.

source/Tool/TestAction.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
// Official repository: https://github.com/cppalliance/mrdox
99
//
1010

11-
#include "Options.hpp"
1211
#include "SingleFileDB.hpp"
13-
#include "Tool/ConfigImpl.hpp"
12+
#include "ToolArgs.hpp"
13+
#include "ConfigImpl.hpp"
1414
#include "CorpusImpl.hpp"
1515
#include "Support/Error.hpp"
1616
#include <mrdox/Config.hpp>
@@ -214,7 +214,7 @@ handleFile(
214214
return Error::success(); // keep going
215215
}
216216

217-
if(ToolAction == Action::test)
217+
if(toolArgs.toolAction == Action::test)
218218
{
219219
// Open and load XML comparison file
220220
std::unique_ptr<llvm::MemoryBuffer> expectedXml;
@@ -252,7 +252,7 @@ handleFile(
252252
results_.numberOfFailures++;
253253
reportError("Test for \"{}\" failed", filePath);
254254

255-
if(badOption.getValue())
255+
if(toolArgs.badOption.getValue())
256256
{
257257
// Write the .bad.xml file
258258
auto bad = outputPath;
@@ -287,7 +287,7 @@ handleFile(
287287
// success
288288
}
289289
}
290-
else if(ToolAction == Action::update)
290+
else if(toolArgs.toolAction == Action::update)
291291
{
292292
// Refresh the expected output file
293293
if(auto err = writeFile(outputPath, generatedXml))
@@ -402,7 +402,7 @@ DoTestAction()
402402
llvm::raw_string_ostream(extraYaml) <<
403403
"concurrency: 1\n";
404404
Results results;
405-
for(auto const& inputPath : InputPaths)
405+
for(auto const& inputPath : toolArgs.inputPaths)
406406
{
407407
TestRunner instance(results, extraYaml);
408408
if(auto err = instance.checkPath(inputPath))

source/Tool/Options.cpp source/Tool/ToolArgs.cpp

+83-46
Original file line numberDiff line numberDiff line change
@@ -8,82 +8,119 @@
88
// Official repository: https://github.com/cppalliance/mrdox
99
//
1010

11-
#include "Options.hpp"
11+
#include "ToolArgs.hpp"
12+
#include <cstddef>
13+
#include <vector>
1214

1315
namespace clang {
1416
namespace mrdox {
1517

16-
char const* Overview =
17-
R"(Generate reference documentation, run tests against
18-
a set of input vectors, or update a set of reference tests.)";
19-
20-
llvm::cl::OptionCategory Category("mrdox options");
21-
22-
llvm::cl::extrahelp ExtraHelp(
23-
R"(Usage:
24-
18+
//------------------------------------------------
19+
20+
ToolArgs::
21+
ToolArgs()
22+
: genCat("Generation Options")
23+
, testCat("Test Options")
24+
, usageText(
25+
R"( Generate C++ reference documentation
26+
)")
27+
, extraHelp(
28+
R"(
29+
USAGE:
2530
mrdox .. ( compile-commands )
26-
2731
mrdox .. --action ( "test" | "update" ) ( dir | file )...
2832
29-
Examples
30-
33+
EXAMPLES:
3134
mrdox --action test friend.cpp
32-
3335
mrdox --format adoc compile_commands.json
34-
)");
36+
)")
37+
38+
//
39+
// Common options
40+
//
3541

36-
llvm::cl::opt<Action> ToolAction(
42+
, toolAction(
3743
"action",
3844
llvm::cl::desc(R"(Which action should be performed)"),
3945
llvm::cl::init(Action::generate),
4046
llvm::cl::values(
4147
clEnumVal(test, "Compare output against expected"),
4248
clEnumVal(update, "Update all expected xml files"),
43-
clEnumVal(generate, "Generate reference documentation")),
44-
llvm::cl::cat(Category));
49+
clEnumVal(generate, "Generate reference documentation")))
4550

46-
// Test options
51+
, configPath(
52+
"config",
53+
llvm::cl::desc(R"(The config filename relative to the repository root)"))
4754

48-
llvm::cl::opt<bool> badOption(
49-
"bad",
50-
llvm::cl::desc("Write a .bad.xml file for each test failure"),
51-
llvm::cl::init(true),
52-
llvm::cl::cat(Category));
55+
, outputPath(
56+
"output",
57+
llvm::cl::desc("Directory or file for generating output."),
58+
llvm::cl::init("."))
59+
60+
, inputPaths(
61+
"inputs",
62+
llvm::cl::Sink,
63+
llvm::cl::desc("The path to the compilation database, or one or more .cpp files to test."))
5364

65+
//
5466
// Generate options
67+
//
5568

56-
llvm::cl::opt<std::string> FormatType(
69+
, formatType(
5770
"format",
5871
llvm::cl::desc("Format for outputted docs (\"adoc\" or \"xml\")."),
5972
llvm::cl::init("adoc"),
60-
llvm::cl::cat(Category));
73+
llvm::cl::cat(genCat))
6174

62-
// Common options
63-
64-
llvm::cl::opt<bool> IgnoreMappingFailures(
75+
, ignoreMappingFailures(
6576
"ignore-map-errors",
6677
llvm::cl::desc("Continue if files are not mapped correctly."),
6778
llvm::cl::init(true),
68-
llvm::cl::cat(Category));
69-
70-
llvm::cl::opt<std::string> ConfigPath(
71-
"config",
72-
llvm::cl::desc(R"(The config filename relative to the repository root)"),
73-
llvm::cl::init("mrdox.yml"),
74-
llvm::cl::cat(Category));
79+
llvm::cl::cat(genCat))
7580

76-
llvm::cl::opt<std::string> OutputPath(
77-
"output",
78-
llvm::cl::desc("Directory or file for generating output."),
79-
llvm::cl::init("."),
80-
llvm::cl::cat(Category));
81+
//
82+
// Test options
83+
//
8184

82-
llvm::cl::list<std::string> InputPaths(
83-
"inputs",
84-
llvm::cl::Sink,
85-
llvm::cl::desc("The path to the compilation database, or one or more .cpp files to test."),
86-
llvm::cl::cat(Category));
85+
, badOption(
86+
"bad",
87+
llvm::cl::desc("Write a .bad.xml file for each test failure"),
88+
llvm::cl::init(true),
89+
llvm::cl::cat(testCat))
90+
{
91+
}
92+
93+
ToolArgs ToolArgs::instance_;
94+
95+
void
96+
ToolArgs::
97+
hideForeignOptions()
98+
{
99+
// VFALCO When adding an option, it must
100+
// also be added to this list or else it
101+
// will stay hidden.
102+
103+
std::vector<llvm::cl::Option const*> ours({
104+
&toolAction,
105+
&formatType,
106+
&configPath,
107+
&outputPath,
108+
std::addressof(inputPaths),
109+
&ignoreMappingFailures,
110+
&badOption
111+
});
112+
113+
// Really hide the clang/llvm default
114+
// options which we didn't ask for.
115+
auto optionMap = llvm::cl::getRegisteredOptions();
116+
for(auto& opt : optionMap)
117+
{
118+
if(std::find(ours.begin(), ours.end(), opt.getValue()) != ours.end())
119+
opt.getValue()->setHiddenFlag(llvm::cl::NotHidden);
120+
else
121+
opt.getValue()->setHiddenFlag(llvm::cl::ReallyHidden);
122+
}
123+
}
87124

88125
} // mrdox
89126
} // clang

source/Tool/ToolArgs.hpp

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
//
2+
// Licensed under the Apache License v2.0 with LLVM Exceptions.
3+
// See https://llvm.org/LICENSE.txt for license information.
4+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5+
//
6+
// Copyright (c) 2023 Vinnie Falco ([email protected])
7+
//
8+
// Official repository: https://github.com/cppalliance/mrdox
9+
//
10+
11+
#ifndef MRDOX_TOOL_TOOLARGS_HPP
12+
#define MRDOX_TOOL_TOOLARGS_HPP
13+
14+
#include <llvm/Support/CommandLine.h>
15+
#include <string>
16+
17+
namespace clang {
18+
namespace mrdox {
19+
20+
enum Action : int
21+
{
22+
test,
23+
update,
24+
generate
25+
};
26+
27+
/** Command line options and tool settings.
28+
*/
29+
class ToolArgs
30+
{
31+
ToolArgs();
32+
33+
llvm::cl::OptionCategory genCat;
34+
llvm::cl::OptionCategory testCat;
35+
36+
public:
37+
static ToolArgs instance_;
38+
39+
char const* usageText;
40+
llvm::cl::extrahelp extraHelp;
41+
42+
// Common options
43+
llvm::cl::opt<Action> toolAction;
44+
llvm::cl::opt<std::string> configPath;
45+
llvm::cl::opt<std::string> outputPath;
46+
llvm::cl::list<std::string> inputPaths;
47+
48+
// Generate options
49+
llvm::cl::opt<std::string> formatType;
50+
llvm::cl::opt<bool> ignoreMappingFailures;
51+
52+
// Test options
53+
llvm::cl::opt<bool> badOption;
54+
55+
// Hide all options which don't belong to us
56+
void hideForeignOptions();
57+
};
58+
59+
/** Command line arguments passed to the tool.
60+
61+
This is a global variable because of how the
62+
LLVM command line interface is designed.
63+
*/
64+
constexpr ToolArgs& toolArgs = ToolArgs::instance_;
65+
66+
} // mrdox
67+
} // clang
68+
69+
#endif

0 commit comments

Comments
 (0)