Skip to content

Commit 2cf328e

Browse files
committed
javadoc work
1 parent 002927b commit 2cf328e

12 files changed

+2077
-1678
lines changed

src/AsciidocGenerator.cpp

+78-21
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@
1616
#include "llvm/Support/Path.h"
1717
#include <string>
1818

19+
//------------------------------------------------
20+
21+
namespace mrdox {
22+
23+
} // mrdox
24+
25+
//------------------------------------------------
26+
1927
using namespace llvm;
2028

2129
namespace clang {
@@ -225,31 +233,41 @@ genMarkdown(
225233
//
226234
//------------------------------------------------
227235

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+
228258
void
229259
genMarkdown(
230260
ClangDocContext const& CDCtx,
231261
FunctionInfo const& I,
232262
llvm::raw_ostream& OS)
233263
{
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);
243265

244266
std::string Access = getAccessSpelling(I.Access).str();
245267
if(! Access.empty())
246268
Access.push_back(' ');
247269
OS <<
248-
"|`" << Access << I.Name;
249-
if(! Stream.str().empty())
250-
OS << "( " << Stream.str() << " )`\n";
251-
else
252-
OS << "()`\n";
270+
"|`" << Access << Buffer;
253271

254272
if (I.DefLoc)
255273
writeFileDefinition(CDCtx, *I.DefLoc, OS);
@@ -266,6 +284,47 @@ genMarkdown(
266284
//
267285
//------------------------------------------------
268286

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+
269328
void
270329
genMarkdown(
271330
ClangDocContext const& CDCtx,
@@ -309,13 +368,8 @@ genMarkdown(
309368
writeNewLine(OS);
310369
}
311370

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+
319373
if (!I.Children.Enums.empty()) {
320374
section("Enums", 2, OS);
321375
for (const auto& E : I.Children.Enums)
@@ -402,6 +456,8 @@ genMarkdown(
402456
if (!I.Children.Functions.empty())
403457
{
404458
section("Member Functions", 2, OS);
459+
listFunctions(CDCtx, I.Children.Functions, OS);
460+
/*
405461
OS <<
406462
"[cols=2*]\n"
407463
"!===\n" <<
@@ -412,6 +468,7 @@ genMarkdown(
412468
OS <<
413469
"!===\n"
414470
"\n";
471+
*/
415472
}
416473

417474
if (!I.Children.Enums.empty())

0 commit comments

Comments
 (0)