Skip to content

Commit e9c1b1e

Browse files
committed
adoc work and single-page config item
1 parent 4ab9ea7 commit e9c1b1e

9 files changed

+187
-127
lines changed

CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ else()
130130
endif()
131131
target_include_directories(mrdox-api SYSTEM PUBLIC ${CLANG_INCLUDE_DIRS})
132132

133-
134133
# Windows, Win64
135134
if (WIN32)
136135
target_compile_definitions(

include/mrdox/Config.hpp

+16-7
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@
2222
#include <memory>
2323
#include <string>
2424

25-
namespace llvm {
26-
namespace yaml {
27-
template<class T>
28-
struct MappingTraits;
29-
} // yaml
30-
} // llvm
31-
3225
namespace clang {
3326
namespace mrdox {
3427

@@ -53,6 +46,7 @@ class MRDOX_VISIBLE
5346
llvm::SmallString<0> outputPath_;
5447
std::string sourceRoot_;
5548
bool includePrivate_ = false;
49+
bool singlePage_ = false;
5650
bool verbose_ = true;
5751

5852
explicit
@@ -129,6 +123,14 @@ class MRDOX_VISIBLE
129123
return includePrivate_;
130124
}
131125

126+
/** Return true if the output is single-page output.
127+
*/
128+
bool
129+
singlePage() const noexcept
130+
{
131+
return singlePage_;
132+
}
133+
132134
/** Call a function for each element of a range.
133135
134136
The function is invoked with a reference
@@ -159,6 +161,13 @@ class MRDOX_VISIBLE
159161
verbose_ = verbose;
160162
}
161163

164+
void
165+
setSinglePage(
166+
bool singlePage) noexcept
167+
{
168+
singlePage_ = singlePage;
169+
}
170+
162171
/** Set whether or not to include private members.
163172
*/
164173
void

source/api/Config.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class Config::Options
3737
bool verbose = true;
3838
bool include_private = false;
3939
std::string source_root;
40+
bool single_page = false;
4041
FileFilter input;
4142
};
4243

@@ -64,6 +65,7 @@ struct llvm::yaml::MappingTraits<
6465
io.mapOptional("verbose", opt.verbose);
6566
io.mapOptional("private", opt.include_private);
6667
io.mapOptional("source-root", opt.source_root);
68+
io.mapOptional("single-page", opt.single_page);
6769
io.mapOptional("input", opt.input);
6870
}
6971
};
@@ -258,6 +260,7 @@ loadFromFile(
258260
(*config)->setIncludePrivate(opt.include_private);
259261
(*config)->setSourceRoot(opt.source_root);
260262
(*config)->setInputFileIncludes(opt.input.include);
263+
(*config)->setSinglePage(opt.single_page);
261264

262265
return config;
263266
}

source/api/ConfigImpl.hpp

+7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@
1717
#include <llvm/Support/ThreadPool.h>
1818
#include <memory>
1919

20+
namespace llvm {
21+
namespace yaml {
22+
template<class T>
23+
struct MappingTraits;
24+
} // yaml
25+
} // llvm
26+
2027
namespace clang {
2128
namespace mrdox {
2229

source/api/_adoc/AdocSinglePageWriter.cpp

+116-18
Original file line numberDiff line numberDiff line change
@@ -37,33 +37,131 @@ build()
3737
"= Reference\n"
3838
":role: mrdox\n";
3939
corpus_.visit(globalNamespaceID, *this);
40-
closeSection();
40+
endSection();
4141
return llvm::Error::success();
4242
}
4343

44+
//------------------------------------------------
45+
46+
template<class Type>
47+
std::vector<Type const*>
48+
AdocSinglePageWriter::
49+
buildSortedList(
50+
std::vector<Reference> const& from) const
51+
{
52+
std::vector<Type const*> result;
53+
result.reserve(from.size());
54+
for(auto const& ref : from)
55+
result.push_back(&corpus_.get<Type>(ref.id));
56+
llvm::sort(result,
57+
[&](Info const* I0, Info const* I1)
58+
{
59+
return compareSymbolNames(
60+
I0->Name, I1->Name) < 0;
61+
});
62+
return result;
63+
}
64+
65+
/* Write a namespace.
66+
67+
This will index all individual
68+
symbols except child namespaces,
69+
sorted by group.
70+
*/
4471
bool
4572
AdocSinglePageWriter::
4673
visit(
4774
NamespaceInfo const& I)
4875
{
49-
write(I);
50-
if(! corpus_.visit(I.Children.Namespaces, *this))
51-
return false;
52-
53-
// Visit records in alphabetical display order
54-
std::vector<RecordInfo const*> list;
55-
list.reserve(I.Children.Records.size());
56-
for(auto const& ref : I.Children.Records)
57-
list.push_back(&corpus_.get<RecordInfo>(ref.id));
58-
std::string s0, s1;
59-
llvm::sort(list,
60-
[&s0, &s1](Info const* I0, Info const* I1)
76+
//if(! corpus_.visit(I.Children.Namespaces, *this))
77+
//return false;
78+
/*
79+
if( I.Children.Records.empty() &&
80+
I.Children.Functions.empty() &&
81+
I.Children.Typedefs.empty() &&
82+
I.Children.Enums.empty())
83+
return;
84+
*/
85+
// build sorted list of namespaces,
86+
// this is for visitation not display.
87+
auto namespaceList = buildSortedList<NamespaceInfo>(I.Children.Namespaces);
88+
89+
// don't emit empty namespaces,
90+
// but still visit child namespaces.
91+
if( ! I.Children.Records.empty() ||
92+
! I.Children.Functions.empty() ||
93+
! I.Children.Typedefs.empty() ||
94+
! I.Children.Enums.empty())
95+
{
96+
std::string s;
97+
I.getFullyQualifiedName(s);
98+
s = "namespace " + s;
99+
100+
beginSection(s);
101+
102+
auto recordList = buildSortedList<RecordInfo>(I.Children.Records);
103+
auto functionList = buildSortedList<FunctionInfo>(I.Children.Functions);
104+
//auto typeList = ?
105+
//auto enumList = ?
106+
107+
if(! recordList.empty())
61108
{
62-
return compareSymbolNames(
63-
I0->getFullyQualifiedName(s0),
64-
I1->getFullyQualifiedName(s1)) < 0;
65-
});
66-
for(auto const I : list)
109+
beginSection("Classes");
110+
os_ << "\n"
111+
"[cols=1]\n"
112+
"|===\n";
113+
for(auto const I : recordList)
114+
{
115+
os_ << "\n|" << linkFor(*I) << '\n';
116+
};
117+
os_ << "|===\n";
118+
endSection();
119+
}
120+
121+
if(! functionList.empty())
122+
{
123+
beginSection("Functions");
124+
os_ << "\n"
125+
"[cols=1]\n"
126+
"|===\n";
127+
for(auto const I : functionList)
128+
{
129+
os_ << "\n|" << linkFor(*I) << '\n';
130+
};
131+
os_ << "|===\n";
132+
endSection();
133+
}
134+
135+
//if(! typeList.empty())
136+
137+
//if(! enumList.empty())
138+
139+
// now visit each indexed item
140+
for(auto const& I : recordList)
141+
visit(*I);
142+
recordList.clear();
143+
144+
for(auto const& I : functionList)
145+
visit(*I);
146+
functionList.clear();
147+
148+
/*
149+
for(auto const& I : typeList)
150+
visit(*I);
151+
typeList.clear();
152+
*/
153+
154+
/*
155+
for(auto const& I : enumList)
156+
visit(*I);
157+
typeList.clear();
158+
*/
159+
160+
endSection();
161+
}
162+
163+
// visit child namespaces
164+
for(auto const& I : namespaceList)
67165
if(! visit(*I))
68166
return false;
69167

source/api/_adoc/AdocSinglePageWriter.hpp

+7
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ class AdocSinglePageWriter
3535
llvm::Error build();
3636

3737
private:
38+
/** Return an array of info pointers display-sorted by symbol.
39+
*/
40+
template<class Type>
41+
std::vector<Type const*>
42+
buildSortedList(
43+
std::vector<Reference> const& from) const;
44+
3845
bool visit(NamespaceInfo const&) override;
3946
bool visit(RecordInfo const&) override;
4047
bool visit(FunctionInfo const&) override;

0 commit comments

Comments
 (0)