16
16
#include " llvm/Support/Path.h"
17
17
#include < string>
18
18
19
+ // ------------------------------------------------
20
+
21
+ namespace mrdox {
22
+
23
+ } // mrdox
24
+
25
+ // ------------------------------------------------
26
+
19
27
using namespace llvm ;
20
28
21
29
namespace clang {
@@ -225,31 +233,41 @@ genMarkdown(
225
233
//
226
234
// ------------------------------------------------
227
235
236
+ std::string
237
+ makeDecl (
238
+ FunctionInfo const & I)
239
+ {
240
+ std::string s;
241
+ llvm::raw_string_ostream os (s);
242
+ if (I.Params .empty ())
243
+ {
244
+ os << I.Name << " ()" ;
245
+ return s;
246
+ }
247
+ os << " (" <<
248
+ I.Params .front ().Type .Name << " " <<
249
+ I.Params .front ().Name ;
250
+ for (std::size_t i = 1 ; i < I.Params .size (); ++i)
251
+ os << " , " <<
252
+ I.Params .front ().Type .Name << " " <<
253
+ I.Params .front ().Name ;
254
+ os << " )" ;
255
+ return s;
256
+ }
257
+
228
258
void
229
259
genMarkdown (
230
260
ClangDocContext const & CDCtx,
231
261
FunctionInfo const & I,
232
262
llvm::raw_ostream& OS)
233
263
{
234
- std::string Buffer;
235
- llvm::raw_string_ostream Stream (Buffer);
236
- bool First = true ;
237
- for (const auto & N : I.Params ) {
238
- if (!First)
239
- Stream << " , " ;
240
- Stream << N.Type .Name + " " + N.Name ;
241
- First = false ;
242
- }
264
+ std::string Buffer = makeDecl (I);
243
265
244
266
std::string Access = getAccessSpelling (I.Access ).str ();
245
267
if (! Access.empty ())
246
268
Access.push_back (' ' );
247
269
OS <<
248
- " |`" << Access << I.Name ;
249
- if (! Stream.str ().empty ())
250
- OS << " ( " << Stream.str () << " )`\n " ;
251
- else
252
- OS << " ()`\n " ;
270
+ " |`" << Access << Buffer;
253
271
254
272
if (I.DefLoc )
255
273
writeFileDefinition (CDCtx, *I.DefLoc , OS);
@@ -266,6 +284,47 @@ genMarkdown(
266
284
//
267
285
// ------------------------------------------------
268
286
287
+ void
288
+ listFunction (
289
+ ClangDocContext const & CDCtx,
290
+ FunctionInfo const & fi,
291
+ llvm::raw_ostream& os)
292
+ {
293
+ os <<
294
+ " |`" << makeDecl (fi) <<" `\n " <<
295
+ " |" << fi.javadoc .brief << " \n " ;
296
+ }
297
+
298
+ void
299
+ listFunctions (
300
+ ClangDocContext const & CDCtx,
301
+ std::vector<FunctionInfo> const & v,
302
+ llvm::raw_ostream& os)
303
+ {
304
+ if (v.empty ())
305
+ return ;
306
+
307
+ section (" Functions" , 2 , os);
308
+ os <<
309
+ " [cols=2]\n " <<
310
+ " |===\n " <<
311
+ " |Name\n " <<
312
+ " |Description\n " <<
313
+ " \n " ;
314
+ if (! v.empty ())
315
+ {
316
+ listFunction (CDCtx, v.front (), os);
317
+ for (std::size_t i = 1 ; i < v.size (); ++i)
318
+ {
319
+ os << " \n " ;
320
+ listFunction (CDCtx, v[i], os);
321
+ }
322
+ }
323
+ os <<
324
+ " |===\n " <<
325
+ " \n " ;
326
+ }
327
+
269
328
void
270
329
genMarkdown (
271
330
ClangDocContext const & CDCtx,
@@ -309,13 +368,8 @@ genMarkdown(
309
368
writeNewLine (OS);
310
369
}
311
370
312
- if (!I.Children .Functions .empty ())
313
- {
314
- section (" Functions" , 2 , OS);
315
- for (const auto & F : I.Children .Functions )
316
- genMarkdown (CDCtx, F, OS);
317
- writeNewLine (OS);
318
- }
371
+ listFunctions (CDCtx, I.Children .Functions , OS);
372
+
319
373
if (!I.Children .Enums .empty ()) {
320
374
section (" Enums" , 2 , OS);
321
375
for (const auto & E : I.Children .Enums )
@@ -402,6 +456,8 @@ genMarkdown(
402
456
if (!I.Children .Functions .empty ())
403
457
{
404
458
section (" Member Functions" , 2 , OS);
459
+ listFunctions (CDCtx, I.Children .Functions , OS);
460
+ /*
405
461
OS <<
406
462
"[cols=2*]\n"
407
463
"!===\n" <<
@@ -412,6 +468,7 @@ genMarkdown(
412
468
OS <<
413
469
"!===\n"
414
470
"\n";
471
+ */
415
472
}
416
473
417
474
if (!I.Children .Enums .empty ())
0 commit comments