15
15
#include < mrdox/Platform.hpp>
16
16
#include < mrdox/Reporter.hpp>
17
17
#include < clang/Tooling/ArgumentsAdjusters.h>
18
- #include < llvm/ADT/Optional.h>
19
- #include < llvm/ADT/SmallVector.h>
18
+ #include < llvm/ADT/SmallString.h>
20
19
#include < llvm/ADT/StringRef.h>
21
20
#include < llvm/Support/Error.h>
22
- #include < llvm/Support/YAMLTraits.h>
23
21
#include < functional>
24
22
#include < memory>
25
23
#include < string>
@@ -34,6 +32,8 @@ struct MappingTraits;
34
32
namespace clang {
35
33
namespace mrdox {
36
34
35
+ class ConfigImpl ;
36
+
37
37
/* * Configuration used to generate the Corpus and Docs
38
38
39
39
This contains all the settings applied from
@@ -44,75 +44,39 @@ namespace mrdox {
44
44
*/
45
45
class MRDOX_VISIBLE
46
46
Config
47
- : public std::enable_shared_from_this<Config>
48
47
{
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 ;
54
50
55
- llvm::SmallString< 0 > configDir_;
51
+ protected:
56
52
std::string sourceRoot_;
57
- std::vector<llvm::SmallString<0 >> inputFileIncludes_;
58
- bool verbose_ = true ;
53
+ llvm::SmallString<0 > configDir_;
59
54
bool includePrivate_ = false ;
55
+ bool verbose_ = true ;
60
56
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);
66
59
67
60
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
71
62
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.
75
64
*/
76
- MRDOX_DECL
77
- static
78
- llvm::Expected<std::shared_ptr<Config>>
79
- createAtDirectory (
80
- llvm::StringRef dirPath);
65
+ class WorkGroup ;
81
66
82
- /* * Return a Config loaded from the specified YAML file .
67
+ /* * Destructor .
83
68
*/
84
69
MRDOX_DECL
85
- static
86
- llvm::Expected<std::shared_ptr<Config>>
87
- loadFromFile (
88
- llvm::StringRef filePath);
70
+ virtual
71
+ ~Config () noexcept ;
89
72
90
73
//
91
74
// VFALCO these naked data members are temporary...
92
75
//
93
-
94
- /* * Adjustments to tool command line, applied during execute.
95
- */
96
76
tooling::ArgumentsAdjuster ArgAdjuster;
97
-
98
- /* * Name of project being documented.
99
- */
100
- std::string ProjectName;
101
-
102
- // Directory for outputting generated files.
103
77
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
-
109
78
bool IgnoreMappingFailures = false ;
110
79
111
- public:
112
- /* * A resource for running submitted work, possibly concurrent.
113
- */
114
- class WorkGroup ;
115
-
116
80
// --------------------------------------------
117
81
//
118
82
// Observers
@@ -157,32 +121,6 @@ class MRDOX_VISIBLE
157
121
return includePrivate_;
158
122
}
159
123
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
-
186
124
/* * Call a function for each element of a range.
187
125
188
126
The function is invoked with a reference
@@ -235,42 +173,74 @@ class MRDOX_VISIBLE
235
173
@param dirPath The directory.
236
174
*/
237
175
MRDOX_DECL
176
+ virtual
238
177
void
239
178
setSourceRoot (
240
- llvm::StringRef dirPath);
179
+ llvm::StringRef dirPath) = 0 ;
241
180
242
181
/* * Set the filter for including translation units.
243
182
*/
244
183
MRDOX_DECL
184
+ virtual
245
185
void
246
186
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);
248
214
};
249
215
250
216
// ------------------------------------------------
251
217
252
218
/* * A group representing possibly concurrent related tasks.
253
219
*/
254
- class Config ::WorkGroup
220
+ class MRDOX_VISIBLE
221
+ Config::WorkGroup
255
222
{
256
223
public:
257
224
/* * Destructor.
258
225
*/
259
- ~WorkGroup ();
226
+ MRDOX_DECL
227
+ ~WorkGroup () noexcept ;
260
228
261
229
/* * Constructor.
262
230
263
231
Default constructed workgroups have no
264
232
concurrency level. Calls to post and wait
265
233
are blocking.
266
234
*/
267
- MRDOX_DECL WorkGroup () noexcept ;
235
+ MRDOX_DECL
236
+ WorkGroup () noexcept ;
268
237
269
238
/* * Constructor.
270
239
*/
240
+ MRDOX_DECL
271
241
explicit
272
242
WorkGroup (
273
- std::shared_ptr< Config const > config);
243
+ Config const * config);
274
244
275
245
/* * Constructor.
276
246
*/
@@ -298,7 +268,7 @@ class Config::WorkGroup
298
268
wait ();
299
269
300
270
private:
301
- friend class Config ::Impl ;
271
+ friend class ConfigImpl ;
302
272
303
273
struct Base
304
274
{
@@ -307,7 +277,7 @@ class Config::WorkGroup
307
277
308
278
class Impl ;
309
279
310
- std::shared_ptr<Config::Impl const > config_;
280
+ std::shared_ptr<ConfigImpl const > config_;
311
281
std::unique_ptr<Base> impl_;
312
282
};
313
283
@@ -320,7 +290,7 @@ parallelForEach(
320
290
Range&& range,
321
291
UnaryFunction const & f) const
322
292
{
323
- WorkGroup wg (shared_from_this () );
293
+ WorkGroup wg (this );
324
294
for (auto && element : range)
325
295
wg.post ([&f, &element]
326
296
{
0 commit comments