Skip to content

Commit 6c70e4d

Browse files
committed
promote auto brief paragraph types
#fix fix #803
1 parent fe7c6e9 commit 6c70e4d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+762
-680
lines changed

include/mrdocs/Metadata/Javadoc.hpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,10 @@ struct MRDOCS_DECL
385385

386386
bool operator==(const Block& other) const noexcept
387387
{
388-
if(kind != other.kind)
388+
if (kind != other.kind)
389+
{
389390
return false;
391+
}
390392
return std::equal(children.begin(), children.end(),
391393
other.children.begin(), other.children.end(),
392394
[](const auto& a, const auto& b)
@@ -410,6 +412,8 @@ struct MRDOCS_DECL
410412

411413
void append(List<Node>&& blocks);
412414

415+
void append(List<Text> const& otherChildren);
416+
413417
protected:
414418
explicit
415419
Block(
@@ -892,7 +896,7 @@ void traverse(
892896

893897
struct Overview
894898
{
895-
Paragraph const* brief = nullptr;
899+
std::shared_ptr<Paragraph> brief = nullptr;
896900
std::vector<Block const*> blocks;
897901
Returns const* returns = nullptr;
898902
std::vector<Param const*> params;
@@ -916,6 +920,8 @@ class Corpus;
916920
class MRDOCS_DECL
917921
Javadoc
918922
{
923+
doc::List<doc::Block> blocks_;
924+
919925
public:
920926
/** Constructor.
921927
*/
@@ -1015,8 +1021,6 @@ class MRDOCS_DECL
10151021

10161022
private:
10171023
std::string emplace_back(std::unique_ptr<doc::Block>);
1018-
1019-
doc::List<doc::Block> blocks_;
10201024
};
10211025

10221026
/** Return the Javadoc as a @ref dom::Value.

include/mrdocs/Support/Error.hpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -2702,6 +2702,10 @@ void
27022702
setMinimumLevel(
27032703
Level level) noexcept;
27042704

2705+
MRDOCS_DECL
2706+
Level
2707+
getMinimumLevel() noexcept;
2708+
27052709
/** If true, source location information will be
27062710
printed with warnings, errors, and fatal messages.
27072711
*/
@@ -2787,9 +2791,11 @@ log_impl(
27872791
Level level,
27882792
Located<std::string_view> fs)
27892793
{
2794+
std::string str = fmt::vformat(
2795+
fs.value, fmt::make_format_args());
27902796
return print(
27912797
level,
2792-
{},
2798+
str,
27932799
&fs.where);
27942800
}
27952801
}

mrdocs.rnc

+2-2
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ grammar
387387
BlockNode = (
388388
Admonition | Brief | Code | Heading | ListItem |
389389
Paragraph | Param | Returns | TParam | Throws |
390-
See | Precondition | Postcondition)
390+
See | Precondition | Postcondition | Details)
391391

392392
Admonition = Paragraph
393393
Brief = element brief { TextNode * }
@@ -411,7 +411,7 @@ grammar
411411
TextNode * }
412412
Precondition = element pre { TextNode * }
413413
Postcondition = element post { TextNode * }
414-
414+
Details = element details { TextNode * }
415415

416416
TextNode = ( Link | Styled | Text | Reference | Copied )
417417

share/mrdocs/addons/generator/common/partials/symbol/detail/members-table-row.hbs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
{{else~}}
1212
{{#each (unique (pluck (pluck members "doc") "brief"))~}}
1313
{{{.}}}
14+
1415
{{/each~}}
1516
{{/if~}}
1617
{{~/markup/td~}}

src/lib/AST/ASTVisitor.cpp

+2-8
Original file line numberDiff line numberDiff line change
@@ -1774,16 +1774,10 @@ generateJavadoc(
17741774
{
17751775
RawComment const* RC =
17761776
D->getASTContext().getRawCommentForDeclNoCache(D);
1777-
if (!RC)
1778-
{
1779-
return false;
1780-
}
1777+
MRDOCS_CHECK_OR(RC, false);
17811778
comments::FullComment* FC =
17821779
RC->parse(D->getASTContext(), &sema_.getPreprocessor(), D);
1783-
if (!FC)
1784-
{
1785-
return false;
1786-
}
1780+
MRDOCS_CHECK_OR(FC, false);
17871781
parseJavadoc(javadoc, FC, D, config_, diags_);
17881782
return true;
17891783
}

src/lib/Gen/adoc/DocVisitor.cpp

+12-6
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ operator()(
9393
fmt::format_to(ins_, "\n=== {}\n\n", AdocEscape(I.string));
9494
}
9595

96-
// Also handles doc::Brief
9796
void
9897
DocVisitor::
9998
operator()(
@@ -135,14 +134,21 @@ operator()(
135134
{
136135
return;
137136
}
138-
bool non_empty = write(*children.front(), *this);
139-
for(auto const& child : children.subspan(1))
137+
138+
std::size_t i = 0;
139+
for (auto it = children.begin(); it != children.end(); ++it)
140140
{
141-
if (non_empty)
141+
auto& child = *it;
142+
if (i == 0)
142143
{
143-
dest_.push_back('\n');
144+
child->string = ltrim(child->string);
144145
}
145-
non_empty = write(*child, *this);
146+
if (i == children.size() - 1)
147+
{
148+
child->string = rtrim(child->string);
149+
}
150+
write(*child, *this);
151+
i = i + 1;
146152
}
147153
}
148154

src/lib/Gen/hbs/HandlebarsCorpus.cpp

+8-6
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,10 @@ getJavadoc(Javadoc const& jd) const
197197
When the string is empty, the object key
198198
is undefined.
199199
*/
200-
auto emplaceString = [&](
201-
std::string_view key,
202-
auto const& I)
200+
auto emplaceString = [&]<typename T>(
201+
std::string_view key, T const& I)
203202
{
204203
std::string s;
205-
using T = std::decay_t<decltype(I)>;
206204
if constexpr (std::derived_from<T, doc::Node>)
207205
{
208206
// doc::visit(*t, visitor);
@@ -232,13 +230,17 @@ getJavadoc(Javadoc const& jd) const
232230
elements.reserve(nodes.size());
233231
for(auto const& elem : nodes)
234232
{
235-
if(!elem)
233+
if (!elem)
234+
{
236235
continue;
236+
}
237237
elements.emplace_back(
238238
domCreate(*elem, *this));
239239
}
240-
if(elements.empty())
240+
if (elements.empty())
241+
{
241242
return;
243+
}
242244
objKeyValues.emplace_back(key, dom::newArray<
243245
dom::DefaultArrayImpl>(std::move(elements)));
244246
};

src/lib/Gen/html/DocVisitor.cpp

+24-11
Original file line numberDiff line numberDiff line change
@@ -139,25 +139,38 @@ DocVisitor::
139139
operator()(
140140
doc::Brief const& I) const
141141
{
142+
if (I.children.empty())
143+
{
144+
return;
145+
}
146+
142147
dest_.append("<span>");
143-
for(auto const& it : RangeFor(I.children))
148+
std::size_t i = 0;
149+
for (auto it = I.children.begin(); it != I.children.end(); ++it)
144150
{
145-
auto const n = dest_.size();
146-
doc::visit(*it.value, *this);
147-
// detect empty text blocks
148-
if(! it.last && dest_.size() > n)
151+
auto& child = *it;
152+
if (i == 0)
149153
{
150-
// wrap past 80 cols
151-
if (dest_.size() < 80)
154+
child->string = ltrim(child->string);
155+
}
156+
else if (auto prevIt = std::prev(it);
157+
!(*prevIt)->string.empty() && !child->string.empty())
158+
{
159+
char const pc = (*(prevIt))->string.back();
160+
char const cc = child->string.front();
161+
if (!std::isspace(pc) && !std::isspace(cc))
152162
{
153163
dest_.push_back(' ');
154-
} else
155-
{
156-
dest_.push_back('\n');
157164
}
158165
}
166+
if (i == I.children.size() - 1)
167+
{
168+
child->string = rtrim(child->string);
169+
}
170+
write(*child, *this);
171+
i = i + 1;
159172
}
160-
dest_.append("</span>");
173+
dest_.append("</span>\n");
161174
}
162175

163176
void

0 commit comments

Comments
 (0)