Skip to content

Commit 535aef1

Browse files
committed
chore: generators render javadocs
1 parent a9db251 commit 535aef1

File tree

6 files changed

+178
-130
lines changed

6 files changed

+178
-130
lines changed

include/mrdox/Metadata/DomMetadata.hpp

+47-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ namespace clang {
2222
namespace mrdox {
2323

2424
/** Front-end factory for producing Dom nodes.
25+
26+
A @ref Generator subclasses this object and
27+
then uses it to create the Dom nodes used for
28+
rendering in template engines.
2529
*/
2630
class MRDOX_DECL
2731
DomCorpus
@@ -31,24 +35,65 @@ class MRDOX_DECL
3135
std::unique_ptr<Impl> impl_;
3236

3337
public:
38+
/** The Corpus associated with the Dom.
39+
*/
3440
Corpus const& corpus;
3541

42+
/** Destructor.
43+
44+
Ownership of the corpus is not released.
45+
*/
3646
~DomCorpus();
3747

48+
/** Constructor.
49+
50+
@param corpus The Corpus whose metadata to use.
51+
*/
3852
explicit
39-
DomCorpus(Corpus const&);
53+
DomCorpus(Corpus const& corpus);
54+
55+
/** Return a Dom object representing the given symbol.
56+
57+
@return A value containing the symbol contents.
4058
59+
@param id The id of the symbol to return.
60+
*/
4161
dom::Object
4262
get(SymbolID const& id) const;
4363

64+
/** Return a Dom object representing the given symbol.
65+
66+
@return A value containing the symbol contents.
67+
68+
@param I The metadata for the symbol.
69+
*/
4470
dom::Object
4571
get(Info const& I) const;
4672

47-
/** Return the object for id, or null if id is zero.
73+
/** Return a Dom object representing the given symbol.
74+
75+
When `id` is zero, this function returns null.
76+
77+
@return A value containing the symbol
78+
contents, or null if `id` equals zero.
79+
80+
@param id The id of the symbol to return.
4881
*/
4982
dom::Value
5083
getOptional(
5184
SymbolID const& id) const;
85+
86+
/** Return a Dom value representing the Javadoc.
87+
88+
The default implementation returns null. A
89+
@ref Generator should override this member
90+
and return a value that has suitable strings
91+
in the generator's output format.
92+
*/
93+
virtual
94+
dom::Value
95+
getJavadoc(
96+
Javadoc const& jd) const;
5297
};
5398

5499
} // mrdox

source/-adoc/DocVisitor.hpp source/-adoc/AdocCorpus.cpp

+60-61
Original file line numberDiff line numberDiff line change
@@ -4,62 +4,22 @@
44
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
55
//
66
// Copyright (c) 2023 Vinnie Falco ([email protected])
7+
// Copyright (c) 2023 Krystian Stasiowski ([email protected])
78
//
89
// Official repository: https://github.com/cppalliance/mrdox
910
//
1011

11-
#ifndef MRDOX_TOOL_ADOC_DOCVISITOR_HPP
12-
#define MRDOX_TOOL_ADOC_DOCVISITOR_HPP
13-
14-
#include <mrdox/Platform.hpp>
15-
#include <mrdox/Metadata/Javadoc.hpp>
12+
#include "AdocCorpus.hpp"
1613
#include <mrdox/Support/RangeFor.hpp>
14+
#include <mrdox/Support/String.hpp>
1715
#include <fmt/format.h>
16+
#include <iterator>
1817

1918
namespace clang {
2019
namespace mrdox {
2120
namespace adoc {
2221

23-
inline
24-
std::string_view
25-
ltrim(std::string_view s)
26-
{
27-
auto it = s.begin();
28-
for (;; ++it)
29-
{
30-
if (it == s.end())
31-
return {};
32-
if (!isspace(*it))
33-
break;
34-
}
35-
return s.substr(it - s.begin());
36-
}
37-
38-
inline
39-
std::string_view
40-
rtrim(std::string_view s)
41-
{
42-
auto it = s.end() - 1;
43-
for (; it > s.begin() && isspace(*it); --it);
44-
return s.substr(0, it - s.begin());
45-
}
46-
47-
inline
48-
std::string_view
49-
trim(std::string_view s)
50-
{
51-
auto left = s.begin();
52-
for (;; ++left)
53-
{
54-
if (left == s.end())
55-
return {};
56-
if (!isspace(*left))
57-
break;
58-
}
59-
auto right = s.end() - 1;
60-
for (; right > left && isspace(*right); --right);
61-
return std::string_view(&*left, right - left + 1);
62-
}
22+
namespace {
6323

6424
class DocVisitor
6525
{
@@ -87,7 +47,6 @@ class DocVisitor
8747
doc::List<doc::Text> const& list);
8848
};
8949

90-
inline
9150
DocVisitor::
9251
DocVisitor(
9352
std::string& dest) noexcept
@@ -96,7 +55,6 @@ DocVisitor(
9655
{
9756
}
9857

99-
inline
10058
void
10159
DocVisitor::
10260
operator()(
@@ -106,7 +64,6 @@ operator()(
10664
doc::visit(*block, *this);
10765
}
10866

109-
inline
11067
void
11168
DocVisitor::
11269
operator()(
@@ -115,7 +72,6 @@ operator()(
11572
//dest_ += I.string;
11673
}
11774

118-
inline
11975
void
12076
DocVisitor::
12177
operator()(
@@ -149,7 +105,6 @@ operator()(
149105
dest_ += "----\n";
150106
}
151107

152-
inline
153108
void
154109
DocVisitor::
155110
operator()(
@@ -159,7 +114,6 @@ operator()(
159114
}
160115

161116
//void operator()(doc::Brief const& I)
162-
inline
163117
void
164118
DocVisitor::
165119
operator()(
@@ -182,7 +136,6 @@ operator()(
182136
dest_.push_back('\n');
183137
}
184138

185-
inline
186139
void
187140
DocVisitor::
188141
operator()(
@@ -195,7 +148,6 @@ operator()(
195148
dest_.push_back(']');
196149
}
197150

198-
inline
199151
void
200152
DocVisitor::
201153
operator()(
@@ -219,23 +171,20 @@ operator()(
219171
dest_.push_back('\n');
220172
}
221173

222-
inline
223174
void
224175
DocVisitor::
225176
operator()(doc::Param const& I)
226177
{
227178
//dest_ += I.string;
228179
}
229180

230-
inline
231181
void
232182
DocVisitor::
233183
operator()(doc::Returns const& I)
234184
{
235185
//dest_ += I.string;
236186
}
237187

238-
inline
239188
void
240189
DocVisitor::
241190
operator()(doc::Text const& I)
@@ -246,7 +195,6 @@ operator()(doc::Text const& I)
246195
dest_.append(s);
247196
}
248197

249-
inline
250198
void
251199
DocVisitor::
252200
operator()(doc::Styled const& I)
@@ -273,15 +221,13 @@ operator()(doc::Styled const& I)
273221
}
274222
}
275223

276-
inline
277224
void
278225
DocVisitor::
279226
operator()(doc::TParam const& I)
280227
{
281228
//dest_ += I.string;
282229
}
283230

284-
inline
285231
std::size_t
286232
DocVisitor::
287233
measureLeftMargin(
@@ -302,8 +248,61 @@ measureLeftMargin(
302248
return n;
303249
}
304250

251+
//------------------------------------------------
252+
253+
class DomJavadoc : public dom::LazyObjectImpl
254+
{
255+
Javadoc const& jd_;
256+
257+
public:
258+
DomJavadoc(
259+
Javadoc const& jd) noexcept
260+
: jd_(jd)
261+
{
262+
}
263+
264+
dom::Object
265+
construct() const override
266+
{
267+
entries_type list;
268+
list.reserve(2);
269+
270+
// brief
271+
if(auto brief = jd_.getBrief())
272+
{
273+
std::string s;
274+
DocVisitor visitor(s);
275+
s.clear();
276+
visitor(*brief);
277+
if(! s.empty())
278+
list.emplace_back("brief", std::move(s));
279+
}
280+
281+
// description
282+
if(! jd_.getBlocks().empty())
283+
{
284+
std::string s;
285+
DocVisitor visitor(s);
286+
s.clear();
287+
visitor(jd_.getBlocks());
288+
if(! s.empty())
289+
list.emplace_back("description", std::move(s));
290+
}
291+
292+
return dom::Object(std::move(list));
293+
}
294+
};
295+
296+
} // (anon)
297+
298+
dom::Value
299+
AdocCorpus::
300+
getJavadoc(
301+
Javadoc const& jd) const
302+
{
303+
return dom::newObject<DomJavadoc>(jd);
304+
}
305+
305306
} // adoc
306307
} // mrdox
307308
} // clang
308-
309-
#endif

source/-adoc/AdocCorpus.hpp

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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_ADOC_ADOCCORPUS_HPP
12+
#define MRDOX_TOOL_ADOC_ADOCCORPUS_HPP
13+
14+
#include <mrdox/Platform.hpp>
15+
#include <mrdox/Metadata/DomMetadata.hpp>
16+
17+
namespace clang {
18+
namespace mrdox {
19+
namespace adoc {
20+
21+
class AdocCorpus : public DomCorpus
22+
{
23+
public:
24+
explicit
25+
AdocCorpus(
26+
Corpus const& corpus)
27+
: DomCorpus(corpus)
28+
{
29+
}
30+
31+
dom::Value
32+
getJavadoc(
33+
Javadoc const& jd) const override;
34+
};
35+
36+
} // adoc
37+
} // mrdox
38+
} // clang
39+
40+
#endif

source/-adoc/AdocGenerator.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// Official repository: https://github.com/cppalliance/mrdox
1010
//
1111

12+
#include "AdocCorpus.hpp"
1213
#include "AdocGenerator.hpp"
1314
#include "Builder.hpp"
1415
#include "MultiPageVisitor.hpp"
@@ -64,7 +65,7 @@ build(
6465
if(! corpus.config.multiPage)
6566
return Generator::build(outputPath, corpus);
6667

67-
DomCorpus domCorpus(corpus);
68+
AdocCorpus domCorpus(corpus);
6869
auto ex = createExecutors(domCorpus);
6970
if(! ex)
7071
return ex.error();
@@ -83,7 +84,7 @@ buildOne(
8384
std::ostream& os,
8485
Corpus const& corpus) const
8586
{
86-
DomCorpus domCorpus(corpus);
87+
AdocCorpus domCorpus(corpus);
8788
auto ex = createExecutors(domCorpus);
8889
if(! ex)
8990
return ex.error();

0 commit comments

Comments
 (0)