@@ -37,33 +37,131 @@ build()
37
37
" = Reference\n "
38
38
" :role: mrdox\n " ;
39
39
corpus_.visit (globalNamespaceID, *this );
40
- closeSection ();
40
+ endSection ();
41
41
return llvm::Error::success ();
42
42
}
43
43
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
+ */
44
71
bool
45
72
AdocSinglePageWriter::
46
73
visit (
47
74
NamespaceInfo const & I)
48
75
{
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 ())
61
108
{
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)
67
165
if (! visit (*I))
68
166
return false ;
69
167
0 commit comments