Skip to content

Commit 75d9c37

Browse files
committedApr 24, 2023
refactor Config into impl
1 parent cca6494 commit 75d9c37

File tree

10 files changed

+289
-221
lines changed

10 files changed

+289
-221
lines changed
 

‎include/mrdox/Config.hpp

+57-87
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@
1515
#include <mrdox/Platform.hpp>
1616
#include <mrdox/Reporter.hpp>
1717
#include <clang/Tooling/ArgumentsAdjusters.h>
18-
#include <llvm/ADT/Optional.h>
19-
#include <llvm/ADT/SmallVector.h>
18+
#include <llvm/ADT/SmallString.h>
2019
#include <llvm/ADT/StringRef.h>
2120
#include <llvm/Support/Error.h>
22-
#include <llvm/Support/YAMLTraits.h>
2321
#include <functional>
2422
#include <memory>
2523
#include <string>
@@ -34,6 +32,8 @@ struct MappingTraits;
3432
namespace clang {
3533
namespace mrdox {
3634

35+
class ConfigImpl;
36+
3737
/** Configuration used to generate the Corpus and Docs
3838
3939
This contains all the settings applied from
@@ -44,75 +44,39 @@ namespace mrdox {
4444
*/
4545
class MRDOX_VISIBLE
4646
Config
47-
: public std::enable_shared_from_this<Config>
4847
{
49-
template<class T>
50-
friend struct llvm::yaml::MappingTraits;
51-
52-
class Impl;
53-
struct Options;
48+
Config(Config const&) = delete;
49+
Config& operator=(Config const&) = delete;
5450

55-
llvm::SmallString<0> configDir_;
51+
protected:
5652
std::string sourceRoot_;
57-
std::vector<llvm::SmallString<0>> inputFileIncludes_;
58-
bool verbose_ = true;
53+
llvm::SmallString<0> configDir_;
5954
bool includePrivate_ = false;
55+
bool verbose_ = true;
6056

61-
llvm::SmallString<0>
62-
normalizePath(llvm::StringRef pathName);
63-
64-
protected:
65-
explicit Config(llvm::StringRef configDir);
57+
explicit
58+
Config(llvm::StringRef configDir);
6659

6760
public:
68-
MRDOX_DECL virtual ~Config() = default;
69-
70-
/** Return a defaulted Config using an existing directory.
61+
class Options; // private, but for clang-15 bug
7162

72-
@param dirPath The path to the directory.
73-
If this is relative, an absolute path will
74-
be calculated from the current directory.
63+
/** A resource for running submitted work, possibly concurrent.
7564
*/
76-
MRDOX_DECL
77-
static
78-
llvm::Expected<std::shared_ptr<Config>>
79-
createAtDirectory(
80-
llvm::StringRef dirPath);
65+
class WorkGroup;
8166

82-
/** Return a Config loaded from the specified YAML file.
67+
/** Destructor.
8368
*/
8469
MRDOX_DECL
85-
static
86-
llvm::Expected<std::shared_ptr<Config>>
87-
loadFromFile(
88-
llvm::StringRef filePath);
70+
virtual
71+
~Config() noexcept;
8972

9073
//
9174
// VFALCO these naked data members are temporary...
9275
//
93-
94-
/** Adjustments to tool command line, applied during execute.
95-
*/
9676
tooling::ArgumentsAdjuster ArgAdjuster;
97-
98-
/** Name of project being documented.
99-
*/
100-
std::string ProjectName;
101-
102-
// Directory for outputting generated files.
10377
std::string OutDirectory;
104-
105-
// URL of repository that hosts code used
106-
// for links to definition locations.
107-
llvm::Optional<std::string> RepositoryUrl;
108-
10978
bool IgnoreMappingFailures = false;
11079

111-
public:
112-
/** A resource for running submitted work, possibly concurrent.
113-
*/
114-
class WorkGroup;
115-
11680
//--------------------------------------------
11781
//
11882
// Observers
@@ -157,32 +121,6 @@ class MRDOX_VISIBLE
157121
return includePrivate_;
158122
}
159123

160-
/** Returns true if the translation unit should be visited.
161-
162-
@param filePath The posix-style full path
163-
to the file being processed.
164-
*/
165-
bool
166-
shouldVisitTU(
167-
llvm::StringRef filePath) const noexcept;
168-
169-
/** Returns true if the file should be visited.
170-
171-
If the file is visited, then prefix is
172-
set to the portion of the file path which
173-
should be be removed for matching files.
174-
175-
@param filePath The posix-style full path
176-
to the file being processed.
177-
178-
@param prefix The prefix which should be
179-
removed from subsequent matches.
180-
*/
181-
bool
182-
shouldVisitFile(
183-
llvm::StringRef filePath,
184-
llvm::SmallVectorImpl<char>& prefix) const noexcept;
185-
186124
/** Call a function for each element of a range.
187125
188126
The function is invoked with a reference
@@ -235,42 +173,74 @@ class MRDOX_VISIBLE
235173
@param dirPath The directory.
236174
*/
237175
MRDOX_DECL
176+
virtual
238177
void
239178
setSourceRoot(
240-
llvm::StringRef dirPath);
179+
llvm::StringRef dirPath) = 0;
241180

242181
/** Set the filter for including translation units.
243182
*/
244183
MRDOX_DECL
184+
virtual
245185
void
246186
setInputFileIncludes(
247-
std::vector<std::string> const& list);
187+
std::vector<std::string> const& list) = 0;
188+
189+
//--------------------------------------------
190+
//
191+
// Creation
192+
//
193+
//--------------------------------------------
194+
195+
/** Return a defaulted Config using an existing directory.
196+
197+
@param dirPath The path to the directory.
198+
If this is relative, an absolute path will
199+
be calculated from the current directory.
200+
*/
201+
MRDOX_DECL
202+
static
203+
llvm::Expected<std::shared_ptr<Config>>
204+
createAtDirectory(
205+
llvm::StringRef dirPath);
206+
207+
/** Return a Config loaded from the specified YAML file.
208+
*/
209+
MRDOX_DECL
210+
static
211+
llvm::Expected<std::shared_ptr<Config>>
212+
loadFromFile(
213+
llvm::StringRef filePath);
248214
};
249215

250216
//------------------------------------------------
251217

252218
/** A group representing possibly concurrent related tasks.
253219
*/
254-
class Config::WorkGroup
220+
class MRDOX_VISIBLE
221+
Config::WorkGroup
255222
{
256223
public:
257224
/** Destructor.
258225
*/
259-
~WorkGroup();
226+
MRDOX_DECL
227+
~WorkGroup() noexcept;
260228

261229
/** Constructor.
262230
263231
Default constructed workgroups have no
264232
concurrency level. Calls to post and wait
265233
are blocking.
266234
*/
267-
MRDOX_DECL WorkGroup() noexcept;
235+
MRDOX_DECL
236+
WorkGroup() noexcept;
268237

269238
/** Constructor.
270239
*/
240+
MRDOX_DECL
271241
explicit
272242
WorkGroup(
273-
std::shared_ptr<Config const> config);
243+
Config const* config);
274244

275245
/** Constructor.
276246
*/
@@ -298,7 +268,7 @@ class Config::WorkGroup
298268
wait();
299269

300270
private:
301-
friend class Config::Impl;
271+
friend class ConfigImpl;
302272

303273
struct Base
304274
{
@@ -307,7 +277,7 @@ class Config::WorkGroup
307277

308278
class Impl;
309279

310-
std::shared_ptr<Config::Impl const> config_;
280+
std::shared_ptr<ConfigImpl const> config_;
311281
std::unique_ptr<Base> impl_;
312282
};
313283

@@ -320,7 +290,7 @@ parallelForEach(
320290
Range&& range,
321291
UnaryFunction const& f) const
322292
{
323-
WorkGroup wg(shared_from_this());
293+
WorkGroup wg(this);
324294
for(auto&& element : range)
325295
wg.post([&f, &element]
326296
{

‎include/mrdox/Metadata/MemberType.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include <mrdox/Metadata/Javadoc.hpp>
1717
#include <mrdox/Metadata/FieldType.hpp>
1818
#include <mrdox/Metadata/Function.hpp>
19+
#include <llvm/ADT/Optional.h>
1920

2021
namespace clang {
2122
namespace mrdox {

‎source/lib/AST/ASTVisitor.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include <mrdox/Debug.hpp>
1717
#include <clang/Index/USRGeneration.h>
1818
#include <clang/AST/RecursiveASTVisitor.h>
19+
#include <llvm/ADT/Optional.h>
1920
#include <llvm/ADT/StringExtras.h>
2021
#include <llvm/Support/Error.h>
2122
#include <llvm/Support/Path.h>

‎source/lib/AST/ASTVisitor.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define MRDOX_LIB_AST_ASTVISITOR_HPP
1414

1515
#include <mrdox/Platform.hpp>
16-
#include <mrdox/Config.hpp>
16+
#include "ConfigImpl.hpp"
1717
#include <mrdox/Reporter.hpp>
1818
#include <clang/AST/Mangle.h>
1919
#include <clang/AST/RecursiveASTVisitor.h>
@@ -46,7 +46,7 @@ class ASTVisitor
4646
};
4747

4848
tooling::ExecutionContext& ex_;
49-
Config const& config_;
49+
ConfigImpl const& config_;
5050
Reporter& R_;
5151
std::unordered_map<
5252
clang::SourceLocation::UIntTy,
@@ -59,7 +59,7 @@ class ASTVisitor
5959
Config const& config,
6060
Reporter& R) noexcept
6161
: ex_(ex)
62-
, config_(config)
62+
, config_(dynamic_cast<ConfigImpl const&>(config))
6363
, R_(R)
6464
{
6565
}

‎source/lib/Config.cpp

+23-130
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,26 @@
99
// Official repository: https://github.com/cppalliance/mrdox
1010
//
1111

12+
#include "ConfigImpl.hpp"
1213
#include "Support/Path.hpp"
13-
#include <mrdox/Config.hpp>
1414
#include <mrdox/Error.hpp>
15-
#include <clang/Tooling/AllTUsExecution.h>
1615
#include <llvm/Support/FileSystem.h>
17-
#include <llvm/Support/MemoryBuffer.h>
1816
#include <llvm/Support/Path.h>
19-
#include <llvm/Support/ThreadPool.h>
2017
#include <llvm/Support/YAMLParser.h>
2118
#include <llvm/Support/YAMLTraits.h>
22-
#include <atomic>
2319

2420
//------------------------------------------------
25-
26-
// Options from YAML
21+
//
22+
// Options (YAML)
23+
//
24+
//------------------------------------------------
2725

2826
namespace clang {
2927
namespace mrdox {
3028

31-
struct Config::Options
29+
class Config::Options
3230
{
31+
public:
3332
struct FileFilter
3433
{
3534
std::vector<std::string> include;
@@ -69,8 +68,6 @@ struct llvm::yaml::MappingTraits<
6968
}
7069
};
7170

72-
//------------------------------------------------
73-
7471
namespace clang {
7572
namespace mrdox {
7673

@@ -94,33 +91,6 @@ class Config::WorkGroup::
9491
llvm::ThreadPoolTaskGroup group_;
9592
};
9693

97-
//------------------------------------------------
98-
//
99-
// Config::Impl
100-
//
101-
//------------------------------------------------
102-
103-
class Config::Impl : public Config
104-
{
105-
llvm::ThreadPool mutable threadPool_;
106-
bool doAsync_ = true;
107-
108-
friend class WorkGroup;
109-
110-
public:
111-
explicit
112-
Impl(
113-
llvm::StringRef configDir)
114-
: Config(configDir)
115-
, threadPool_(
116-
llvm::hardware_concurrency(
117-
tooling::ExecutorConcurrency))
118-
{
119-
}
120-
};
121-
122-
//------------------------------------------------
123-
12494
Config::
12595
WorkGroup::
12696
Base::~Base() noexcept = default;
@@ -136,9 +106,11 @@ WorkGroup::
136106
Config::
137107
WorkGroup::
138108
WorkGroup(
139-
std::shared_ptr<Config const> config)
140-
: config_(std::dynamic_pointer_cast<
141-
Config::Impl const>(std::move(config)))
109+
Config const* config)
110+
: config_(config
111+
? dynamic_cast<ConfigImpl const*>(
112+
config)->shared_from_this()
113+
: nullptr)
142114
, impl_(config_
143115
? std::make_unique<Impl>(const_cast<
144116
llvm::ThreadPool&>(config_->threadPool_))
@@ -213,29 +185,10 @@ wait()
213185
}
214186

215187
//------------------------------------------------
216-
217-
llvm::SmallString<0>
218-
Config::
219-
normalizePath(
220-
llvm::StringRef pathName)
221-
{
222-
namespace path = llvm::sys::path;
223-
224-
llvm::SmallString<0> result;
225-
if(! path::is_absolute(pathName))
226-
{
227-
result = configDir();
228-
path::append(result, path::Style::posix, pathName);
229-
path::remove_dots(result, true, path::Style::posix);
230-
}
231-
else
232-
{
233-
result = pathName;
234-
path::remove_dots(result, true);
235-
convert_to_slash(result);
236-
}
237-
return result;
238-
}
188+
//
189+
// Config
190+
//
191+
//------------------------------------------------
239192

240193
Config::
241194
Config(
@@ -244,6 +197,11 @@ Config(
244197
{
245198
}
246199

200+
Config::
201+
~Config() noexcept = default;
202+
203+
//------------------------------------------------
204+
247205
llvm::Expected<std::shared_ptr<Config>>
248206
Config::
249207
createAtDirectory(
@@ -258,7 +216,7 @@ createAtDirectory(
258216
path::remove_dots(s, true);
259217
makeDirsy(s);
260218
convert_to_slash(s);
261-
return std::make_shared<Config::Impl>(s);
219+
return std::make_shared<ConfigImpl>(s);
262220
}
263221

264222
llvm::Expected<std::shared_ptr<Config>>
@@ -284,7 +242,7 @@ loadFromFile(
284242
return config.takeError();
285243

286244
// Read the YAML file into Options
287-
Options opt;
245+
Config::Options opt;
288246
auto fileText = llvm::MemoryBuffer::getFile(filePath);
289247
if(! fileText)
290248
return makeError(fileText.getError().message(), " when loading file '", filePath, "' ");
@@ -304,70 +262,5 @@ loadFromFile(
304262
return config;
305263
}
306264

307-
//------------------------------------------------
308-
//
309-
// Observers
310-
//
311-
//------------------------------------------------
312-
313-
bool
314-
Config::
315-
shouldVisitTU(
316-
llvm::StringRef filePath) const noexcept
317-
{
318-
if(inputFileIncludes_.empty())
319-
return true;
320-
for(auto const& s : inputFileIncludes_)
321-
if(filePath == s)
322-
return true;
323-
return false;
324-
}
325-
326-
bool
327-
Config::
328-
shouldVisitFile(
329-
llvm::StringRef filePath,
330-
llvm::SmallVectorImpl<char>& prefixPath) const noexcept
331-
{
332-
namespace path = llvm::sys::path;
333-
334-
llvm::SmallString<32> temp;
335-
temp = filePath;
336-
if(! path::replace_path_prefix(temp, sourceRoot_, "", path::Style::posix))
337-
return false;
338-
prefixPath.assign(sourceRoot_.begin(), sourceRoot_.end());
339-
makeDirsy(prefixPath);
340-
return true;
341-
}
342-
343-
//------------------------------------------------
344-
//
345-
// Modifiers
346-
//
347-
//------------------------------------------------
348-
349-
void
350-
Config::
351-
setSourceRoot(
352-
llvm::StringRef dirPath)
353-
{
354-
namespace path = llvm::sys::path;
355-
356-
auto temp = normalizePath(dirPath);
357-
makeDirsy(temp, path::Style::posix);
358-
sourceRoot_ = temp.str();
359-
}
360-
361-
void
362-
Config::
363-
setInputFileIncludes(
364-
std::vector<std::string> const& list)
365-
{
366-
namespace path = llvm::sys::path;
367-
368-
for(auto const& s0 : list)
369-
inputFileIncludes_.push_back(normalizePath(s0));
370-
}
371-
372265
} // mrdox
373266
} // clang

‎source/lib/ConfigImpl.cpp

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
//
2+
// This is a derivative work. originally part of the LLVM Project.
3+
// Licensed under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
// Copyright (c) 2023 Vinnie Falco (vinnie.falco@gmail.com)
8+
//
9+
// Official repository: https://github.com/cppalliance/mrdox
10+
//
11+
12+
#include "ConfigImpl.hpp"
13+
#include "Support/Path.hpp"
14+
#include <clang/Tooling/AllTUsExecution.h>
15+
16+
namespace clang {
17+
namespace mrdox {
18+
19+
//------------------------------------------------
20+
//
21+
// ConfigImpl
22+
//
23+
//------------------------------------------------
24+
25+
llvm::SmallString<0>
26+
ConfigImpl::
27+
normalizePath(
28+
llvm::StringRef pathName)
29+
{
30+
namespace path = llvm::sys::path;
31+
32+
llvm::SmallString<0> result;
33+
if(! path::is_absolute(pathName))
34+
{
35+
result = configDir();
36+
path::append(result, path::Style::posix, pathName);
37+
path::remove_dots(result, true, path::Style::posix);
38+
}
39+
else
40+
{
41+
result = pathName;
42+
path::remove_dots(result, true);
43+
convert_to_slash(result);
44+
}
45+
return result;
46+
}
47+
48+
ConfigImpl::
49+
ConfigImpl(
50+
llvm::StringRef configDir)
51+
: Config(configDir)
52+
, threadPool_(
53+
llvm::hardware_concurrency(
54+
tooling::ExecutorConcurrency))
55+
{
56+
}
57+
58+
void
59+
ConfigImpl::
60+
setSourceRoot(
61+
llvm::StringRef dirPath)
62+
{
63+
namespace path = llvm::sys::path;
64+
65+
auto temp = normalizePath(dirPath);
66+
makeDirsy(temp, path::Style::posix);
67+
sourceRoot_ = temp.str();
68+
}
69+
70+
void
71+
ConfigImpl::
72+
setInputFileIncludes(
73+
std::vector<std::string> const& list)
74+
{
75+
namespace path = llvm::sys::path;
76+
77+
for(auto const& s0 : list)
78+
inputFileIncludes_.push_back(normalizePath(s0));
79+
}
80+
81+
//------------------------------------------------
82+
83+
bool
84+
ConfigImpl::
85+
shouldVisitTU(
86+
llvm::StringRef filePath) const noexcept
87+
{
88+
if(inputFileIncludes_.empty())
89+
return true;
90+
for(auto const& s : inputFileIncludes_)
91+
if(filePath == s)
92+
return true;
93+
return false;
94+
}
95+
96+
bool
97+
ConfigImpl::
98+
shouldVisitFile(
99+
llvm::StringRef filePath,
100+
llvm::SmallVectorImpl<char>& prefixPath) const noexcept
101+
{
102+
namespace path = llvm::sys::path;
103+
104+
llvm::SmallString<32> temp;
105+
temp = filePath;
106+
if(! path::replace_path_prefix(temp, sourceRoot_, "", path::Style::posix))
107+
return false;
108+
prefixPath.assign(sourceRoot_.begin(), sourceRoot_.end());
109+
makeDirsy(prefixPath);
110+
return true;
111+
}
112+
113+
} // mrdox
114+
} // clang

‎source/lib/ConfigImpl.hpp

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
//
2+
// This is a derivative work. originally part of the LLVM Project.
3+
// Licensed under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
// Copyright (c) 2023 Vinnie Falco (vinnie.falco@gmail.com)
8+
//
9+
// Official repository: https://github.com/cppalliance/mrdox
10+
//
11+
12+
#ifndef MRDOX_LIB_CONFIGIMPL_HPP
13+
#define MRDOX_LIB_CONFIGIMPL_HPP
14+
15+
#include <mrdox/Platform.hpp>
16+
#include <mrdox/Config.hpp>
17+
#include <llvm/Support/ThreadPool.h>
18+
#include <memory>
19+
20+
namespace clang {
21+
namespace mrdox {
22+
23+
class ConfigImpl
24+
: public Config
25+
, public std::enable_shared_from_this<ConfigImpl>
26+
27+
{
28+
std::vector<llvm::SmallString<0>> inputFileIncludes_;
29+
llvm::ThreadPool mutable threadPool_;
30+
bool doAsync_ = true;
31+
32+
friend class Config;
33+
friend class Options;
34+
friend class WorkGroup;
35+
36+
template<class T>
37+
friend struct llvm::yaml::MappingTraits;
38+
39+
llvm::SmallString<0>
40+
normalizePath(llvm::StringRef pathName);
41+
42+
public:
43+
explicit
44+
ConfigImpl(
45+
llvm::StringRef configDir);
46+
47+
void
48+
setSourceRoot(
49+
llvm::StringRef dirPath) override;
50+
51+
void
52+
setInputFileIncludes(
53+
std::vector<std::string> const& list) override;
54+
55+
//--------------------------------------------
56+
57+
/** Returns true if the translation unit should be visited.
58+
59+
@param filePath The posix-style full path
60+
to the file being processed.
61+
*/
62+
bool
63+
shouldVisitTU(
64+
llvm::StringRef filePath) const noexcept;
65+
66+
/** Returns true if the file should be visited.
67+
68+
If the file is visited, then prefix is
69+
set to the portion of the file path which
70+
should be be removed for matching files.
71+
72+
@param filePath The posix-style full path
73+
to the file being processed.
74+
75+
@param prefix The prefix which should be
76+
removed from subsequent matches.
77+
*/
78+
bool
79+
shouldVisitFile(
80+
llvm::StringRef filePath,
81+
llvm::SmallVectorImpl<char>& prefix) const noexcept;
82+
};
83+
84+
} // mrdox
85+
} // clang
86+
87+
#endif

‎source/lib/_XML/XML.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include <mrdox/Generator.hpp>
1717
#include <mrdox/MetadataFwd.hpp>
1818
#include <mrdox/Metadata/Javadoc.hpp>
19+
#include <llvm/ADT/Optional.h>
1920

2021
namespace clang {
2122
namespace mrdox {

‎source/lib/_adoc/Asciidoc.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <mrdox/MetadataFwd.hpp>
1919
#include <mrdox/Generator.hpp>
2020
#include <mrdox/Metadata/Javadoc.hpp>
21+
#include <llvm/ADT/Optional.h>
2122
#include <llvm/ADT/StringRef.h>
2223
#include <llvm/Support/FileSystem.h>
2324
#include <llvm/Support/Path.h>

‎source/tests/TestMain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Instance(
119119
Reporter &R)
120120
: results_(results)
121121
, options_(options)
122-
, wg_(config_)
122+
, wg_(config_.get())
123123
, R_(R)
124124
, xmlGen_(getGenerators().find("xml"))
125125
, adocGen_(getGenerators().find("adoc"))

0 commit comments

Comments
 (0)
Please sign in to comment.