|
19 | 19 | #include <array>
|
20 | 20 | #include <memory>
|
21 | 21 | #include <string>
|
| 22 | +#include <string_view> |
22 | 23 | #include <vector>
|
23 | 24 |
|
24 | 25 | namespace clang {
|
25 | 26 | namespace mrdox {
|
26 | 27 |
|
27 | 28 | /** Common properties of all symbols
|
28 | 29 | */
|
29 |
| -struct Info |
| 30 | +struct MRDOX_VISIBLE |
| 31 | + Info |
30 | 32 | {
|
31 | 33 | /** The unique identifier for this symbol.
|
32 | 34 | */
|
@@ -71,20 +73,60 @@ struct Info
|
71 | 73 | std::string
|
72 | 74 | extractName() const;
|
73 | 75 |
|
74 |
| -#if 0 |
75 |
| - /** Return the fully qualified name. |
76 |
| - */ |
77 |
| - MRDOX_DECL |
78 |
| - std::string& |
79 |
| - getFullyQualifiedName( |
80 |
| - std::string& temp) const; |
81 |
| -#endif |
82 | 76 | /** Return a string representing the symbol type.
|
83 | 77 |
|
84 | 78 | For example, "namespace", "class", et. al.
|
85 | 79 | */
|
86 |
| - llvm::StringRef |
| 80 | + MRDOX_DECL |
| 81 | + std::string_view |
87 | 82 | symbolType() const noexcept;
|
| 83 | + |
| 84 | + constexpr bool isDefault() { return Kind == InfoKind::Default; } |
| 85 | + constexpr bool isNamespace() { return Kind == InfoKind::Namespace; } |
| 86 | + constexpr bool isRecord() { return Kind == InfoKind::Record; } |
| 87 | + constexpr bool isFunction() { return Kind == InfoKind::Function; } |
| 88 | + constexpr bool isEnum() { return Kind == InfoKind::Enum; } |
| 89 | + constexpr bool isTypedef() { return Kind == InfoKind::Typedef; } |
| 90 | + constexpr bool isVariable() { return Kind == InfoKind::Variable; } |
| 91 | + constexpr bool isField() { return Kind == InfoKind::Field; } |
| 92 | + constexpr bool isSpecialization() { return Kind == InfoKind::Specialization; } |
| 93 | +}; |
| 94 | + |
| 95 | +//------------------------------------------------ |
| 96 | + |
| 97 | +/** Base class for providing variant discriminator functions. |
| 98 | +
|
| 99 | + This offers functions that return a boolean at |
| 100 | + compile-time, indicating if the most-derived |
| 101 | + class is a certain type. |
| 102 | +*/ |
| 103 | +template<InfoKind K> |
| 104 | +struct IsInfo : Info |
| 105 | +{ |
| 106 | + /** The variant discriminator constant of the most-derived class. |
| 107 | + */ |
| 108 | + static constexpr InfoKind kind_id = K; |
| 109 | + |
| 110 | + static constexpr bool isDefault() { return K== InfoKind::Default; } |
| 111 | + static constexpr bool isNamespace() { return K == InfoKind::Namespace; } |
| 112 | + static constexpr bool isRecord() { return K == InfoKind::Record; } |
| 113 | + static constexpr bool isFunction() { return K == InfoKind::Function; } |
| 114 | + static constexpr bool isEnum() { return K == InfoKind::Enum; } |
| 115 | + static constexpr bool isTypedef() { return K == InfoKind::Typedef; } |
| 116 | + static constexpr bool isVariable() { return K == InfoKind::Variable; } |
| 117 | + static constexpr bool isField() { return K == InfoKind::Field; } |
| 118 | + static constexpr bool isSpecialization() { return K == InfoKind::Specialization; } |
| 119 | + |
| 120 | +protected: |
| 121 | + constexpr IsInfo() |
| 122 | + : Info(K) |
| 123 | + { |
| 124 | + } |
| 125 | + |
| 126 | + constexpr explicit IsInfo(SymbolID ID) |
| 127 | + : Info(K, ID) |
| 128 | + { |
| 129 | + } |
88 | 130 | };
|
89 | 131 |
|
90 | 132 | } // mrdox
|
|
0 commit comments