Skip to content

Commit 7b31b0d

Browse files
committedApr 23, 2023
enum work
1 parent 4768999 commit 7b31b0d

File tree

14 files changed

+72
-17
lines changed

14 files changed

+72
-17
lines changed
 

‎include/mrdox/meta/Enum.hpp

+7-3
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,17 @@ struct EnumValueInfo
6161
llvm::SmallString<16> ValueExpr;
6262
};
6363

64+
//------------------------------------------------
65+
6466
// TODO: Expand to allow for documenting templating.
6567
// Info for types.
6668
struct EnumInfo : SymbolInfo
6769
{
70+
// Indicates whether this enum is scoped (e.g. enum class).
71+
bool Scoped = false;
72+
73+
//--------------------------------------------
74+
6875
static constexpr InfoType type_id = InfoType::IT_enum;
6976

7077
EnumInfo()
@@ -81,9 +88,6 @@ struct EnumInfo : SymbolInfo
8188

8289
void merge(EnumInfo&& I);
8390

84-
// Indicates whether this enum is scoped (e.g. enum class).
85-
bool Scoped = false;
86-
8791
// Set to nonempty to the type when this is an explicitly typed enum. For
8892
// enum Foo : short { ... };
8993
// this will be "short".

‎source/lib/format/xml/XML.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,13 @@ struct XMLGenerator::Writer::
172172
, pred(id != EmptySID)
173173
{
174174
}
175+
176+
Attr(llvm::Optional<TypeInfo> const& opt)
177+
: name("type")
178+
, value(opt ? opt->Type.Name.str() : std::string())
179+
, pred(opt)
180+
{
181+
}
175182
};
176183

177184
//------------------------------------------------
@@ -513,10 +520,13 @@ visit(
513520

514521
openTag("enum", {
515522
{ "name", I.Name },
523+
{ "class", "scoped", I.Scoped },
524+
{ I.BaseType },
516525
{ I.id }
517526
});
518527

519528
writeInfo(I);
529+
writeSymbol(I);
520530
for(auto const& v : I.Members)
521531
writeTag("element", {}, {
522532
{ "name", v.Name },

‎source/tests/Options.cpp

+12-6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@ Examples
3030
, Overview(
3131
R"(Test the output of MrDox against a set of input vectors.)")
3232

33+
, badOption(
34+
"bad",
35+
llvm::cl::desc("Write a .bad.xml file for each test failure"),
36+
llvm::cl::init(true),
37+
llvm::cl::cat(TestCategory))
38+
39+
, adocOption(
40+
"adoc",
41+
llvm::cl::desc("Write the corresponding Asciidoc (adoc) file for each input test file"),
42+
llvm::cl::init(false),
43+
llvm::cl::cat(TestCategory))
44+
3345
, TestAction(
3446
"action",
3547
llvm::cl::desc(R"(Which action should be performed)"),
@@ -39,12 +51,6 @@ R"(Test the output of MrDox against a set of input vectors.)")
3951
clEnumVal(refresh, "Update all expected xml files")),
4052
llvm::cl::cat(TestCategory))
4153

42-
, BadOption(
43-
"bad",
44-
llvm::cl::desc("Write a .bad.xml file for each input file test failure"),
45-
llvm::cl::init(true),
46-
llvm::cl::cat(TestCategory))
47-
4854
, InputPaths(
4955
"inputs",
5056
llvm::cl::Sink,

‎source/tests/Options.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ class Options
2929

3030
public:
3131
char const* Overview;
32+
llvm::cl::opt<bool> badOption;
33+
llvm::cl::opt<bool> adocOption;
3234
llvm::cl::opt<Action> TestAction;
33-
llvm::cl::opt<bool> BadOption;
3435
llvm::cl::list<std::string> InputPaths;
3536

3637
Options();

‎source/tests/TestMain.cpp

+9-4
Original file line numberDiff line numberDiff line change
@@ -239,10 +239,10 @@ handleFile(
239239
results_.numberOfFailures++;
240240
R_.print("Failed: '", filePath, "'\n");
241241

242-
if(options_.BadOption.getValue())
242+
if(options_.badOption.getValue())
243243
{
244-
// Write the a .bad.xml file
245-
path::replace_extension(outputPath, ".bad.xml");
244+
// Write the .bad.xml file
245+
path::replace_extension(outputPath, "bad.xml");
246246
std::error_code ec;
247247
llvm::raw_fd_ostream os(outputPath, ec, llvm::sys::fs::OF_None);
248248
if(ec)
@@ -251,6 +251,10 @@ handleFile(
251251
return makeError("raw_fd_ostream returned ", ec);
252252
}
253253
os << generatedXml;
254+
255+
// Fix the path for the code that follows
256+
outputPath.pop_back_n(8);
257+
path::replace_extension(outputPath, "xml");
254258
}
255259
}
256260
else
@@ -268,7 +272,8 @@ handleFile(
268272
}
269273
}
270274

271-
if(adocGen)
275+
// Write Asciidoc if requested
276+
if(options_.adocOption.getValue())
272277
{
273278
path::replace_extension(outputPath, adocGen->extension());
274279
if(R_.error(

‎tests/n4944/dcl.enum/1.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
#pragma clang diagnostic ignored "-Wmissing-declarations"
12
enum {};

‎tests/n4944/dcl.enum/1.xml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<mrdox>
44
<namespace name="">
55
<enum name="" id="6WkHtky3/fMz+BLxKzQ7nsMgc4Y=">
6+
<file path="dcl.enum/1.cpp" line="2" class="def"/>
67
</enum>
78
</namespace>
89
</mrdox>

‎tests/n4944/dcl.enum/2.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<!DOCTYPE mrdox SYSTEM "mrdox.dtd">
33
<mrdox>
44
<namespace name="">
5-
<enum name="X" id="ST00Km++J5YixGbh0q74JrYHXAc=">
5+
<enum name="X" class="scoped" type="int" id="ST00Km++J5YixGbh0q74JrYHXAc=">
6+
<file path="dcl.enum/2.cpp" line="1"/>
67
</enum>
78
</namespace>
89
</mrdox>

‎tests/n4944/dcl.enum/3.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
enum E : char;
1+
enum struct X;
2+
enum struct X {};
23

‎tests/n4944/dcl.enum/3.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
<!DOCTYPE mrdox SYSTEM "mrdox.dtd">
33
<mrdox>
44
<namespace name="">
5-
<enum name="E" id="xf6YhxRw8JpsHMwP6Tgyroti2gw=">
5+
<enum name="X" class="scoped" type="int" id="ST00Km++J5YixGbh0q74JrYHXAc=">
6+
<file path="dcl.enum/3.cpp" line="2" class="def"/>
7+
<file path="dcl.enum/3.cpp" line="1"/>
68
</enum>
79
</namespace>
810
</mrdox>

‎tests/n4944/dcl.enum/4.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
enum E : char;

‎tests/n4944/dcl.enum/4.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE mrdox SYSTEM "mrdox.dtd">
3+
<mrdox>
4+
<namespace name="">
5+
<enum name="E" type="char" id="xf6YhxRw8JpsHMwP6Tgyroti2gw=">
6+
<file path="dcl.enum/4.cpp" line="1"/>
7+
</enum>
8+
</namespace>
9+
</mrdox>

‎tests/n4944/dcl.enum/5.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
enum E : char;
2+
enum E : char {};
3+

‎tests/n4944/dcl.enum/5.xml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE mrdox SYSTEM "mrdox.dtd">
3+
<mrdox>
4+
<namespace name="">
5+
<enum name="E" type="char" id="xf6YhxRw8JpsHMwP6Tgyroti2gw=">
6+
<file path="dcl.enum/5.cpp" line="2" class="def"/>
7+
<file path="dcl.enum/5.cpp" line="1"/>
8+
</enum>
9+
</namespace>
10+
</mrdox>

0 commit comments

Comments
 (0)
Please sign in to comment.