Skip to content

Commit 1455e40

Browse files
committed
canonicalization and brief extraction is improved
1 parent ed309e2 commit 1455e40

File tree

5 files changed

+91
-61
lines changed

5 files changed

+91
-61
lines changed

include/mrdox/Corpus.hpp

+11-11
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,6 @@ class Corpus
7474
Config const& config,
7575
Reporter& R);
7676

77-
/** Canonicalize the contents of the object.
78-
79-
@return true upon success.
80-
81-
@param R The diagnostic reporting object to
82-
use for delivering errors and information.
83-
*/
84-
[[nodiscard]]
85-
bool
86-
canonicalize(Reporter& R);
87-
8877
/** Sort an array of Info by fully qualified name
8978
*/
9079

@@ -201,6 +190,17 @@ class Corpus
201190
*/
202191
void insertIntoIndex(Info const& I);
203192

193+
/** Canonicalize the contents of the object.
194+
195+
@return true upon success.
196+
197+
@param R The diagnostic reporting object to
198+
use for delivering errors and information.
199+
*/
200+
[[nodiscard]]
201+
bool canonicalize(Reporter& R);
202+
203+
bool canonicalize(std::vector<SymbolID>& list, Temps& t, Reporter& R);
204204
bool canonicalize(NamespaceInfo& I, Temps& t, Reporter& R);
205205
bool canonicalize(RecordInfo& I, Temps& t, Reporter& R);
206206
bool canonicalize(FunctionInfo& I, Temps& t, Reporter& R);

source/lib/Corpus.cpp

+66-36
Original file line numberDiff line numberDiff line change
@@ -169,46 +169,12 @@ build(
169169
// Finish up
170170
//
171171

172-
// Sort allSymbols by fully qualified name
173-
{
174-
std::string temp[2];
175-
llvm::sort(
176-
corpus->allSymbols,
177-
[&](SymbolID const& id0,
178-
SymbolID const& id1) noexcept
179-
{
180-
auto s0 = corpus->get<Info>(id0).getFullyQualifiedName(temp[0]);
181-
auto s1 = corpus->get<Info>(id1).getFullyQualifiedName(temp[1]);
182-
return symbolCompare(s0, s1);
183-
});
184-
}
172+
if(! corpus->canonicalize(R))
173+
return makeError("canonicalization failed");
185174

186175
return corpus;
187176
}
188177

189-
bool
190-
Corpus::
191-
canonicalize(
192-
Reporter& R)
193-
{
194-
if(isCanonical_)
195-
return true;
196-
auto p = find<NamespaceInfo>(EmptySID);
197-
if(! p)
198-
{
199-
R.failed("find global namespace");
200-
return false;
201-
}
202-
203-
Temps t;
204-
if(config_.verbose())
205-
R.print("Canonicalizing...");
206-
if(! canonicalize(*p, t, R))
207-
return false;
208-
isCanonical_ = true;
209-
return true;
210-
}
211-
212178
void
213179
Corpus::
214180
reportResult(
@@ -311,8 +277,17 @@ insert(std::unique_ptr<Info> Ip)
311277

312278
auto& I = *Ip;
313279

280+
// VFALCO Better to do this in canonicalize
314281
// Clean up the javadoc
282+
/*
315283
I.javadoc.calculateBrief();
284+
if(I.IT == InfoType::IT_record)
285+
{
286+
auto& J = static_cast<RecordInfo&>(I);
287+
for(auto& K : J.Members)
288+
K.javadoc.calculateBrief();
289+
}
290+
*/
316291

317292
// Add a reference to this Info in the Index
318293
insertIntoIndex(I);
@@ -395,13 +370,61 @@ insertIntoIndex(
395370

396371
//------------------------------------------------
397372

373+
bool
374+
Corpus::
375+
canonicalize(Reporter& R)
376+
{
377+
if(isCanonical_)
378+
return true;
379+
auto p = find<NamespaceInfo>(EmptySID);
380+
if(! p)
381+
{
382+
R.failed("find global namespace");
383+
return false;
384+
}
385+
386+
if(config_.verbose())
387+
R.print("Canonicalizing...");
388+
389+
Temps t;
390+
391+
if(! canonicalize(*p, t, R))
392+
return false;
393+
394+
if(! canonicalize(allSymbols, t, R))
395+
return false;
396+
397+
isCanonical_ = true;
398+
return true;
399+
}
400+
401+
bool
402+
Corpus::
403+
canonicalize(
404+
std::vector<SymbolID>& list, Temps& t, Reporter& R)
405+
{
406+
// Sort by fully qualified name
407+
llvm::sort(
408+
list,
409+
[&](SymbolID const& id0,
410+
SymbolID const& id1) noexcept
411+
{
412+
auto s0 = get<Info>(id0).getFullyQualifiedName(t.s0);
413+
auto s1 = get<Info>(id1).getFullyQualifiedName(t.s1);
414+
return symbolCompare(s0, s1);
415+
});
416+
return true;
417+
}
418+
419+
398420
bool
399421
Corpus::
400422
canonicalize(
401423
NamespaceInfo& I,
402424
Temps& t,
403425
Reporter& R)
404426
{
427+
I.javadoc.calculateBrief();
405428
if(! canonicalize(I.Children, t, R))
406429
return false;
407430
return true;
@@ -414,6 +437,8 @@ canonicalize(
414437
Temps& t,
415438
Reporter& R)
416439
{
440+
I.javadoc.calculateBrief();
441+
canonicalize(I.Members, t, R);
417442
return true;
418443
}
419444

@@ -424,6 +449,7 @@ canonicalize(
424449
Temps& t,
425450
Reporter& R)
426451
{
452+
I.javadoc.calculateBrief();
427453
return true;
428454
}
429455

@@ -434,6 +460,7 @@ canonicalize(
434460
Temps& t,
435461
Reporter& R)
436462
{
463+
I.javadoc.calculateBrief();
437464
return true;
438465
}
439466

@@ -444,6 +471,7 @@ canonicalize(
444471
Temps& t,
445472
Reporter& R)
446473
{
474+
I.javadoc.calculateBrief();
447475
return true;
448476
}
449477

@@ -546,6 +574,8 @@ canonicalize(
546574
Temps& t,
547575
Reporter& R)
548576
{
577+
for(auto J : list)
578+
J.javadoc.calculateBrief();
549579
return true;
550580
}
551581

source/lib/format/Asciidoc.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ buildOne(
102102
if(R.error(ec, "open the stream for '", fileName, "'"))
103103
return false;
104104

105-
if(! corpus.canonicalize(R))
106-
return false;
107105
Writer w(os, corpus, config, R);
108106
w.beginFile();
109107
w.visitAllSymbols();
@@ -122,8 +120,6 @@ buildString(
122120
dest.clear();
123121
llvm::raw_string_ostream os(dest);
124122

125-
if(! corpus.canonicalize(R))
126-
return false;
127123
Writer w(os, corpus, config, R);
128124
w.beginFile();
129125
w.visitAllSymbols();

source/lib/format/XML.cpp

+13-9
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ buildOne(
4242
if(R.error(ec, "open a stream for '", fileName, "'"))
4343
return false;
4444

45-
if(! corpus.canonicalize(R))
46-
return false;
4745
Writer w(os, corpus, config, R);
4846
w.write();
4947
return true;
@@ -60,8 +58,6 @@ buildString(
6058
dest.clear();
6159
llvm::raw_string_ostream os(dest);
6260

63-
if(! corpus.canonicalize(R))
64-
return false;
6561
Writer w(os, corpus, config, R);
6662
w.write();
6763
return true;
@@ -359,6 +355,12 @@ Writer::
359355
writeTypedef(
360356
TypedefInfo const& I)
361357
{
358+
if(I.Name == "error_category")
359+
{
360+
adjustNesting(1);
361+
adjustNesting(-1);
362+
}
363+
362364
openTag("typedef", {
363365
{ "name", I.Name },
364366
{ I.USR }
@@ -433,7 +435,7 @@ writeParam(
433435
FieldTypeInfo const& I)
434436
{
435437
writeTag("param", {
436-
{ "name", I.Name },
438+
{ "name", I.Name, ! I.Name.empty() },
437439
{ "default", I.DefaultValue, ! I.DefaultValue.empty() },
438440
{ "type", I.Type.Name },
439441
{ I.Type.USR }
@@ -478,7 +480,7 @@ writeJavadoc(Javadoc const& jd)
478480
openTag("doc");
479481
adjustNesting(1);
480482
if(auto brief = jd.getBrief())
481-
writeBrief(*brief);
483+
writeBrief(brief);
482484
writeReturns(jd.getReturns());
483485
writeNodes(jd.getBlocks());
484486
writeNodes(jd.getParams());
@@ -542,11 +544,13 @@ void
542544
XMLGenerator::
543545
Writer::
544546
writeBrief(
545-
Javadoc::Paragraph const& brief)
547+
Javadoc::Paragraph const* brief)
546548
{
547-
if(brief.empty())
549+
if(! brief)
550+
return;
551+
if(brief->empty())
548552
return;
549-
writeParagraph(brief, "brief");
553+
writeParagraph(*brief, "brief");
550554
}
551555

552556
void

source/lib/format/XML.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class XMLGenerator::Writer
104104
template<class T>
105105
void writeNodes(List<T> const& list);
106106
void writeNode(Javadoc::Node const& node);
107-
void writeBrief(Javadoc::Paragraph const& brief);
107+
void writeBrief(Javadoc::Paragraph const* brief);
108108
void writeText(Javadoc::Text const& text, llvm::StringRef tag = "");
109109
void writeStyledText(Javadoc::StyledText const& text);
110110
void writeParagraph(Javadoc::Paragraph const& para, llvm::StringRef tag = "");

0 commit comments

Comments
 (0)