| Fangrui Song | ffe9f00 | 2019-03-01 09:52:53 +0000 | [diff] [blame] | 1 | //===-- Serialize.cpp - ClangDoc Serializer ---------------------*- C++ -*-===// |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 2 | // |
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "Serialize.h" |
| 10 | #include "BitcodeWriter.h" |
| 11 | #include "clang/AST/Comment.h" |
| 12 | #include "clang/Index/USRGeneration.h" |
| 13 | #include "llvm/ADT/Hashing.h" |
| 14 | #include "llvm/ADT/StringExtras.h" |
| 15 | #include "llvm/Support/SHA1.h" |
| 16 | |
| 17 | using clang::comments::FullComment; |
| 18 | |
| 19 | namespace clang { |
| 20 | namespace doc { |
| 21 | namespace serialize { |
| 22 | |
| 23 | SymbolID hashUSR(llvm::StringRef USR) { |
| 24 | return llvm::SHA1::hash(arrayRefFromStringRef(USR)); |
| 25 | } |
| 26 | |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 27 | template <typename T> |
| 28 | static void |
| 29 | populateParentNamespaces(llvm::SmallVector<Reference, 4> &Namespaces, |
| 30 | const T *D, bool &IsAnonymousNamespace); |
| 31 | |
| 32 | // A function to extract the appropriate relative path for a given info's |
| 33 | // documentation. The path returned is a composite of the parent namespaces. |
| 34 | // |
| 35 | // Example: Given the below, the diretory path for class C info will be |
| 36 | // <root>/A/B |
| 37 | // |
| 38 | // namespace A { |
| 39 | // namesapce B { |
| 40 | // |
| 41 | // class C {}; |
| 42 | // |
| 43 | // } |
| 44 | // } |
| 45 | llvm::SmallString<128> |
| 46 | getInfoRelativePath(const llvm::SmallVectorImpl<doc::Reference> &Namespaces) { |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 47 | llvm::SmallString<128> Path; |
| 48 | for (auto R = Namespaces.rbegin(), E = Namespaces.rend(); R != E; ++R) |
| 49 | llvm::sys::path::append(Path, R->Name); |
| 50 | return Path; |
| 51 | } |
| 52 | |
| 53 | llvm::SmallString<128> getInfoRelativePath(const Decl *D) { |
| 54 | llvm::SmallVector<Reference, 4> Namespaces; |
| 55 | // The third arg in populateParentNamespaces is a boolean passed by reference, |
| 56 | // its value is not relevant in here so it's not used anywhere besides the |
| 57 | // function call |
| 58 | bool B = true; |
| 59 | populateParentNamespaces(Namespaces, D, B); |
| 60 | return getInfoRelativePath(Namespaces); |
| 61 | } |
| 62 | |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 63 | class ClangDocCommentVisitor |
| 64 | : public ConstCommentVisitor<ClangDocCommentVisitor> { |
| 65 | public: |
| 66 | ClangDocCommentVisitor(CommentInfo &CI) : CurrentCI(CI) {} |
| 67 | |
| 68 | void parseComment(const comments::Comment *C); |
| 69 | |
| 70 | void visitTextComment(const TextComment *C); |
| 71 | void visitInlineCommandComment(const InlineCommandComment *C); |
| 72 | void visitHTMLStartTagComment(const HTMLStartTagComment *C); |
| 73 | void visitHTMLEndTagComment(const HTMLEndTagComment *C); |
| 74 | void visitBlockCommandComment(const BlockCommandComment *C); |
| 75 | void visitParamCommandComment(const ParamCommandComment *C); |
| 76 | void visitTParamCommandComment(const TParamCommandComment *C); |
| 77 | void visitVerbatimBlockComment(const VerbatimBlockComment *C); |
| 78 | void visitVerbatimBlockLineComment(const VerbatimBlockLineComment *C); |
| 79 | void visitVerbatimLineComment(const VerbatimLineComment *C); |
| 80 | |
| 81 | private: |
| 82 | std::string getCommandName(unsigned CommandID) const; |
| 83 | bool isWhitespaceOnly(StringRef S) const; |
| 84 | |
| 85 | CommentInfo &CurrentCI; |
| 86 | }; |
| 87 | |
| 88 | void ClangDocCommentVisitor::parseComment(const comments::Comment *C) { |
| 89 | CurrentCI.Kind = C->getCommentKindName(); |
| 90 | ConstCommentVisitor<ClangDocCommentVisitor>::visit(C); |
| 91 | for (comments::Comment *Child : |
| 92 | llvm::make_range(C->child_begin(), C->child_end())) { |
| 93 | CurrentCI.Children.emplace_back(llvm::make_unique<CommentInfo>()); |
| 94 | ClangDocCommentVisitor Visitor(*CurrentCI.Children.back()); |
| 95 | Visitor.parseComment(Child); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | void ClangDocCommentVisitor::visitTextComment(const TextComment *C) { |
| 100 | if (!isWhitespaceOnly(C->getText())) |
| 101 | CurrentCI.Text = C->getText(); |
| 102 | } |
| 103 | |
| 104 | void ClangDocCommentVisitor::visitInlineCommandComment( |
| 105 | const InlineCommandComment *C) { |
| 106 | CurrentCI.Name = getCommandName(C->getCommandID()); |
| 107 | for (unsigned I = 0, E = C->getNumArgs(); I != E; ++I) |
| 108 | CurrentCI.Args.push_back(C->getArgText(I)); |
| 109 | } |
| 110 | |
| 111 | void ClangDocCommentVisitor::visitHTMLStartTagComment( |
| 112 | const HTMLStartTagComment *C) { |
| 113 | CurrentCI.Name = C->getTagName(); |
| 114 | CurrentCI.SelfClosing = C->isSelfClosing(); |
| 115 | for (unsigned I = 0, E = C->getNumAttrs(); I < E; ++I) { |
| 116 | const HTMLStartTagComment::Attribute &Attr = C->getAttr(I); |
| 117 | CurrentCI.AttrKeys.push_back(Attr.Name); |
| 118 | CurrentCI.AttrValues.push_back(Attr.Value); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | void ClangDocCommentVisitor::visitHTMLEndTagComment( |
| 123 | const HTMLEndTagComment *C) { |
| 124 | CurrentCI.Name = C->getTagName(); |
| 125 | CurrentCI.SelfClosing = true; |
| 126 | } |
| 127 | |
| 128 | void ClangDocCommentVisitor::visitBlockCommandComment( |
| 129 | const BlockCommandComment *C) { |
| 130 | CurrentCI.Name = getCommandName(C->getCommandID()); |
| 131 | for (unsigned I = 0, E = C->getNumArgs(); I < E; ++I) |
| 132 | CurrentCI.Args.push_back(C->getArgText(I)); |
| 133 | } |
| 134 | |
| 135 | void ClangDocCommentVisitor::visitParamCommandComment( |
| 136 | const ParamCommandComment *C) { |
| 137 | CurrentCI.Direction = |
| 138 | ParamCommandComment::getDirectionAsString(C->getDirection()); |
| 139 | CurrentCI.Explicit = C->isDirectionExplicit(); |
| 140 | if (C->hasParamName()) |
| 141 | CurrentCI.ParamName = C->getParamNameAsWritten(); |
| 142 | } |
| 143 | |
| 144 | void ClangDocCommentVisitor::visitTParamCommandComment( |
| 145 | const TParamCommandComment *C) { |
| 146 | if (C->hasParamName()) |
| 147 | CurrentCI.ParamName = C->getParamNameAsWritten(); |
| 148 | } |
| 149 | |
| 150 | void ClangDocCommentVisitor::visitVerbatimBlockComment( |
| 151 | const VerbatimBlockComment *C) { |
| 152 | CurrentCI.Name = getCommandName(C->getCommandID()); |
| 153 | CurrentCI.CloseName = C->getCloseName(); |
| 154 | } |
| 155 | |
| 156 | void ClangDocCommentVisitor::visitVerbatimBlockLineComment( |
| 157 | const VerbatimBlockLineComment *C) { |
| 158 | if (!isWhitespaceOnly(C->getText())) |
| 159 | CurrentCI.Text = C->getText(); |
| 160 | } |
| 161 | |
| 162 | void ClangDocCommentVisitor::visitVerbatimLineComment( |
| 163 | const VerbatimLineComment *C) { |
| 164 | if (!isWhitespaceOnly(C->getText())) |
| 165 | CurrentCI.Text = C->getText(); |
| 166 | } |
| 167 | |
| 168 | bool ClangDocCommentVisitor::isWhitespaceOnly(llvm::StringRef S) const { |
| 169 | return std::all_of(S.begin(), S.end(), isspace); |
| 170 | } |
| 171 | |
| 172 | std::string ClangDocCommentVisitor::getCommandName(unsigned CommandID) const { |
| 173 | const CommandInfo *Info = CommandTraits::getBuiltinCommandInfo(CommandID); |
| 174 | if (Info) |
| 175 | return Info->Name; |
| 176 | // TODO: Add parsing for \file command. |
| 177 | return "<not a builtin command>"; |
| 178 | } |
| 179 | |
| 180 | // Serializing functions. |
| 181 | |
| 182 | template <typename T> static std::string serialize(T &I) { |
| 183 | SmallString<2048> Buffer; |
| 184 | llvm::BitstreamWriter Stream(Buffer); |
| 185 | ClangDocBitcodeWriter Writer(Stream); |
| 186 | Writer.emitBlock(I); |
| 187 | return Buffer.str().str(); |
| 188 | } |
| 189 | |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 190 | std::string serialize(std::unique_ptr<Info> &I) { |
| 191 | switch (I->IT) { |
| 192 | case InfoType::IT_namespace: |
| 193 | return serialize(*static_cast<NamespaceInfo *>(I.get())); |
| 194 | case InfoType::IT_record: |
| 195 | return serialize(*static_cast<RecordInfo *>(I.get())); |
| 196 | case InfoType::IT_enum: |
| 197 | return serialize(*static_cast<EnumInfo *>(I.get())); |
| 198 | case InfoType::IT_function: |
| 199 | return serialize(*static_cast<FunctionInfo *>(I.get())); |
| 200 | default: |
| 201 | return ""; |
| 202 | } |
| 203 | } |
| 204 | |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 205 | static void parseFullComment(const FullComment *C, CommentInfo &CI) { |
| 206 | ClangDocCommentVisitor Visitor(CI); |
| 207 | Visitor.parseComment(C); |
| 208 | } |
| 209 | |
| 210 | static SymbolID getUSRForDecl(const Decl *D) { |
| 211 | llvm::SmallString<128> USR; |
| 212 | if (index::generateUSRForDecl(D, USR)) |
| 213 | return SymbolID(); |
| 214 | return hashUSR(USR); |
| 215 | } |
| 216 | |
| 217 | static RecordDecl *getDeclForType(const QualType &T) { |
| Julie Hockett | b1f01e2 | 2019-06-24 19:31:02 +0000 | [diff] [blame] | 218 | if (const RecordDecl *D = T->getAsRecordDecl()) |
| 219 | return D->getDefinition(); |
| 220 | return nullptr; |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 221 | } |
| 222 | |
| Julie Hockett | eb50a2e | 2018-07-20 18:49:55 +0000 | [diff] [blame] | 223 | static bool isPublic(const clang::AccessSpecifier AS, |
| 224 | const clang::Linkage Link) { |
| 225 | if (AS == clang::AccessSpecifier::AS_private) |
| 226 | return false; |
| 227 | else if ((Link == clang::Linkage::ModuleLinkage) || |
| 228 | (Link == clang::Linkage::ExternalLinkage)) |
| 229 | return true; |
| 230 | return false; // otherwise, linkage is some form of internal linkage |
| 231 | } |
| 232 | |
| 233 | static void parseFields(RecordInfo &I, const RecordDecl *D, bool PublicOnly) { |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 234 | for (const FieldDecl *F : D->fields()) { |
| Julie Hockett | eb50a2e | 2018-07-20 18:49:55 +0000 | [diff] [blame] | 235 | if (PublicOnly && !isPublic(F->getAccessUnsafe(), F->getLinkageInternal())) |
| 236 | continue; |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 237 | if (const auto *T = getDeclForType(F->getTypeSourceInfo()->getType())) { |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 238 | // Use getAccessUnsafe so that we just get the default AS_none if it's not |
| 239 | // valid, as opposed to an assert. |
| 240 | if (const auto *N = dyn_cast<EnumDecl>(T)) { |
| 241 | I.Members.emplace_back(getUSRForDecl(T), N->getNameAsString(), |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 242 | InfoType::IT_enum, getInfoRelativePath(N), |
| 243 | F->getNameAsString(), N->getAccessUnsafe()); |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 244 | continue; |
| 245 | } else if (const auto *N = dyn_cast<RecordDecl>(T)) { |
| 246 | I.Members.emplace_back(getUSRForDecl(T), N->getNameAsString(), |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 247 | InfoType::IT_record, getInfoRelativePath(N), |
| 248 | F->getNameAsString(), N->getAccessUnsafe()); |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 249 | continue; |
| 250 | } |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 251 | } |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 252 | I.Members.emplace_back(F->getTypeSourceInfo()->getType().getAsString(), |
| 253 | F->getNameAsString(), F->getAccessUnsafe()); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 254 | } |
| 255 | } |
| 256 | |
| 257 | static void parseEnumerators(EnumInfo &I, const EnumDecl *D) { |
| 258 | for (const EnumConstantDecl *E : D->enumerators()) |
| 259 | I.Members.emplace_back(E->getNameAsString()); |
| 260 | } |
| 261 | |
| 262 | static void parseParameters(FunctionInfo &I, const FunctionDecl *D) { |
| 263 | for (const ParmVarDecl *P : D->parameters()) { |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 264 | if (const auto *T = getDeclForType(P->getOriginalType())) { |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 265 | if (const auto *N = dyn_cast<EnumDecl>(T)) { |
| 266 | I.Params.emplace_back(getUSRForDecl(N), N->getNameAsString(), |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 267 | InfoType::IT_enum, getInfoRelativePath(N), |
| 268 | P->getNameAsString()); |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 269 | continue; |
| 270 | } else if (const auto *N = dyn_cast<RecordDecl>(T)) { |
| 271 | I.Params.emplace_back(getUSRForDecl(N), N->getNameAsString(), |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 272 | InfoType::IT_record, getInfoRelativePath(N), |
| 273 | P->getNameAsString()); |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 274 | continue; |
| 275 | } |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 276 | } |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 277 | I.Params.emplace_back(P->getOriginalType().getAsString(), |
| 278 | P->getNameAsString()); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 279 | } |
| 280 | } |
| 281 | |
| 282 | static void parseBases(RecordInfo &I, const CXXRecordDecl *D) { |
| Julie Hockett | 73a4d54 | 2018-10-03 18:25:27 +0000 | [diff] [blame] | 283 | // Don't parse bases if this isn't a definition. |
| 284 | if (!D->isThisDeclarationADefinition()) |
| 285 | return; |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 286 | for (const CXXBaseSpecifier &B : D->bases()) { |
| 287 | if (B.isVirtual()) |
| 288 | continue; |
| Julie Hockett | b1f01e2 | 2019-06-24 19:31:02 +0000 | [diff] [blame] | 289 | if (const auto *Ty = B.getType()->getAs<TemplateSpecializationType>()) { |
| 290 | const TemplateDecl *D = Ty->getTemplateName().getAsTemplateDecl(); |
| 291 | I.Parents.emplace_back(getUSRForDecl(D), B.getType().getAsString(), |
| 292 | InfoType::IT_record); |
| 293 | } else if (const RecordDecl *P = getDeclForType(B.getType())) |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 294 | I.Parents.emplace_back(getUSRForDecl(P), P->getNameAsString(), |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 295 | InfoType::IT_record, getInfoRelativePath(P)); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 296 | else |
| 297 | I.Parents.emplace_back(B.getType().getAsString()); |
| 298 | } |
| 299 | for (const CXXBaseSpecifier &B : D->vbases()) { |
| 300 | if (const auto *P = getDeclForType(B.getType())) |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 301 | I.VirtualParents.emplace_back(getUSRForDecl(P), P->getNameAsString(), |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 302 | InfoType::IT_record, |
| 303 | getInfoRelativePath(P)); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 304 | else |
| 305 | I.VirtualParents.emplace_back(B.getType().getAsString()); |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | template <typename T> |
| 310 | static void |
| 311 | populateParentNamespaces(llvm::SmallVector<Reference, 4> &Namespaces, |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 312 | const T *D, bool &IsInAnonymousNamespace) { |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 313 | const auto *DC = dyn_cast<DeclContext>(D); |
| 314 | while ((DC = DC->getParent())) { |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 315 | if (const auto *N = dyn_cast<NamespaceDecl>(DC)) { |
| 316 | std::string Namespace; |
| 317 | if (N->isAnonymousNamespace()) { |
| 318 | Namespace = "@nonymous_namespace"; |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 319 | IsInAnonymousNamespace = true; |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 320 | } else |
| 321 | Namespace = N->getNameAsString(); |
| 322 | Namespaces.emplace_back(getUSRForDecl(N), Namespace, |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 323 | InfoType::IT_namespace); |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 324 | } else if (const auto *N = dyn_cast<RecordDecl>(DC)) |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 325 | Namespaces.emplace_back(getUSRForDecl(N), N->getNameAsString(), |
| 326 | InfoType::IT_record); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 327 | else if (const auto *N = dyn_cast<FunctionDecl>(DC)) |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 328 | Namespaces.emplace_back(getUSRForDecl(N), N->getNameAsString(), |
| 329 | InfoType::IT_function); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 330 | else if (const auto *N = dyn_cast<EnumDecl>(DC)) |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 331 | Namespaces.emplace_back(getUSRForDecl(N), N->getNameAsString(), |
| 332 | InfoType::IT_enum); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 333 | } |
| 334 | } |
| 335 | |
| 336 | template <typename T> |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 337 | static void populateInfo(Info &I, const T *D, const FullComment *C, |
| 338 | bool &IsInAnonymousNamespace) { |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 339 | I.USR = getUSRForDecl(D); |
| 340 | I.Name = D->getNameAsString(); |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 341 | populateParentNamespaces(I.Namespace, D, IsInAnonymousNamespace); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 342 | if (C) { |
| 343 | I.Description.emplace_back(); |
| 344 | parseFullComment(C, I.Description.back()); |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | template <typename T> |
| 349 | static void populateSymbolInfo(SymbolInfo &I, const T *D, const FullComment *C, |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 350 | int LineNumber, StringRef Filename, |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 351 | bool IsFileInRootDir, |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 352 | bool &IsInAnonymousNamespace) { |
| 353 | populateInfo(I, D, C, IsInAnonymousNamespace); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 354 | if (D->isThisDeclarationADefinition()) |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 355 | I.DefLoc.emplace(LineNumber, Filename, IsFileInRootDir); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 356 | else |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 357 | I.Loc.emplace_back(LineNumber, Filename, IsFileInRootDir); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | static void populateFunctionInfo(FunctionInfo &I, const FunctionDecl *D, |
| 361 | const FullComment *FC, int LineNumber, |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 362 | StringRef Filename, bool IsFileInRootDir, |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 363 | bool &IsInAnonymousNamespace) { |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 364 | populateSymbolInfo(I, D, FC, LineNumber, Filename, IsFileInRootDir, |
| 365 | IsInAnonymousNamespace); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 366 | if (const auto *T = getDeclForType(D->getReturnType())) { |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 367 | if (dyn_cast<EnumDecl>(T)) |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 368 | I.ReturnType = TypeInfo(getUSRForDecl(T), T->getNameAsString(), |
| 369 | InfoType::IT_enum, getInfoRelativePath(T)); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 370 | else if (dyn_cast<RecordDecl>(T)) |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 371 | I.ReturnType = TypeInfo(getUSRForDecl(T), T->getNameAsString(), |
| 372 | InfoType::IT_record, getInfoRelativePath(T)); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 373 | } else { |
| Julie Hockett | b59cd77 | 2018-05-04 17:02:13 +0000 | [diff] [blame] | 374 | I.ReturnType = TypeInfo(D->getReturnType().getAsString()); |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 375 | } |
| 376 | parseParameters(I, D); |
| 377 | } |
| 378 | |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 379 | std::pair<std::unique_ptr<Info>, std::unique_ptr<Info>> |
| 380 | emitInfo(const NamespaceDecl *D, const FullComment *FC, int LineNumber, |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 381 | llvm::StringRef File, bool IsFileInRootDir, bool PublicOnly) { |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 382 | auto I = llvm::make_unique<NamespaceInfo>(); |
| 383 | bool IsInAnonymousNamespace = false; |
| 384 | populateInfo(*I, D, FC, IsInAnonymousNamespace); |
| 385 | if (PublicOnly && ((IsInAnonymousNamespace || D->isAnonymousNamespace()) || |
| Julie Hockett | eb50a2e | 2018-07-20 18:49:55 +0000 | [diff] [blame] | 386 | !isPublic(D->getAccess(), D->getLinkageInternal()))) |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 387 | return {}; |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 388 | I->Name = D->isAnonymousNamespace() |
| 389 | ? llvm::SmallString<16>("@nonymous_namespace") |
| 390 | : I->Name; |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 391 | I->Path = getInfoRelativePath(I->Namespace); |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 392 | if (I->Namespace.empty() && I->USR == SymbolID()) |
| 393 | return {std::unique_ptr<Info>{std::move(I)}, nullptr}; |
| 394 | |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 395 | auto ParentI = llvm::make_unique<NamespaceInfo>(); |
| 396 | ParentI->USR = I->Namespace.empty() ? SymbolID() : I->Namespace[0].USR; |
| 397 | ParentI->ChildNamespaces.emplace_back(I->USR, I->Name, |
| 398 | InfoType::IT_namespace); |
| 399 | if (I->Namespace.empty()) |
| 400 | ParentI->Path = getInfoRelativePath(ParentI->Namespace); |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 401 | return {std::unique_ptr<Info>{std::move(I)}, |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 402 | std::unique_ptr<Info>{std::move(ParentI)}}; |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 403 | } |
| 404 | |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 405 | std::pair<std::unique_ptr<Info>, std::unique_ptr<Info>> |
| 406 | emitInfo(const RecordDecl *D, const FullComment *FC, int LineNumber, |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 407 | llvm::StringRef File, bool IsFileInRootDir, bool PublicOnly) { |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 408 | auto I = llvm::make_unique<RecordInfo>(); |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 409 | bool IsInAnonymousNamespace = false; |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 410 | populateSymbolInfo(*I, D, FC, LineNumber, File, IsFileInRootDir, |
| 411 | IsInAnonymousNamespace); |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 412 | if (PublicOnly && ((IsInAnonymousNamespace || |
| 413 | !isPublic(D->getAccess(), D->getLinkageInternal())))) |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 414 | return {}; |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 415 | |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 416 | I->TagType = D->getTagKind(); |
| 417 | parseFields(*I, D, PublicOnly); |
| Julie Hockett | b1f01e2 | 2019-06-24 19:31:02 +0000 | [diff] [blame] | 418 | if (const auto *C = dyn_cast<CXXRecordDecl>(D)) { |
| 419 | if (const TypedefNameDecl *TD = C->getTypedefNameForAnonDecl()) { |
| 420 | I->Name = TD->getNameAsString(); |
| 421 | I->IsTypeDef = true; |
| 422 | } |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 423 | parseBases(*I, C); |
| Julie Hockett | b1f01e2 | 2019-06-24 19:31:02 +0000 | [diff] [blame] | 424 | } |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 425 | I->Path = getInfoRelativePath(I->Namespace); |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 426 | |
| 427 | if (I->Namespace.empty()) { |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 428 | auto ParentI = llvm::make_unique<NamespaceInfo>(); |
| 429 | ParentI->USR = SymbolID(); |
| 430 | ParentI->ChildRecords.emplace_back(I->USR, I->Name, InfoType::IT_record); |
| 431 | ParentI->Path = getInfoRelativePath(ParentI->Namespace); |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 432 | return {std::unique_ptr<Info>{std::move(I)}, |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 433 | std::unique_ptr<Info>{std::move(ParentI)}}; |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | switch (I->Namespace[0].RefType) { |
| 437 | case InfoType::IT_namespace: { |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 438 | auto ParentI = llvm::make_unique<NamespaceInfo>(); |
| 439 | ParentI->USR = I->Namespace[0].USR; |
| 440 | ParentI->ChildRecords.emplace_back(I->USR, I->Name, InfoType::IT_record); |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 441 | return {std::unique_ptr<Info>{std::move(I)}, |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 442 | std::unique_ptr<Info>{std::move(ParentI)}}; |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 443 | } |
| 444 | case InfoType::IT_record: { |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 445 | auto ParentI = llvm::make_unique<RecordInfo>(); |
| 446 | ParentI->USR = I->Namespace[0].USR; |
| 447 | ParentI->ChildRecords.emplace_back(I->USR, I->Name, InfoType::IT_record); |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 448 | return {std::unique_ptr<Info>{std::move(I)}, |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 449 | std::unique_ptr<Info>{std::move(ParentI)}}; |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 450 | } |
| 451 | default: |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 452 | llvm_unreachable("Invalid reference type for parent namespace"); |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 453 | } |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 454 | } |
| 455 | |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 456 | std::pair<std::unique_ptr<Info>, std::unique_ptr<Info>> |
| 457 | emitInfo(const FunctionDecl *D, const FullComment *FC, int LineNumber, |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 458 | llvm::StringRef File, bool IsFileInRootDir, bool PublicOnly) { |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 459 | FunctionInfo Func; |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 460 | bool IsInAnonymousNamespace = false; |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 461 | populateFunctionInfo(Func, D, FC, LineNumber, File, IsFileInRootDir, |
| 462 | IsInAnonymousNamespace); |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 463 | if (PublicOnly && ((IsInAnonymousNamespace || |
| 464 | !isPublic(D->getAccess(), D->getLinkageInternal())))) |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 465 | return {}; |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 466 | |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 467 | Func.Access = clang::AccessSpecifier::AS_none; |
| 468 | |
| 469 | // Wrap in enclosing scope |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 470 | auto ParentI = llvm::make_unique<NamespaceInfo>(); |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 471 | if (!Func.Namespace.empty()) |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 472 | ParentI->USR = Func.Namespace[0].USR; |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 473 | else |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 474 | ParentI->USR = SymbolID(); |
| 475 | if (Func.Namespace.empty()) |
| 476 | ParentI->Path = getInfoRelativePath(ParentI->Namespace); |
| 477 | ParentI->ChildFunctions.emplace_back(std::move(Func)); |
| 478 | // Info is wrapped in its parent scope so it's returned in the second position |
| 479 | return {nullptr, std::unique_ptr<Info>{std::move(ParentI)}}; |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 480 | } |
| 481 | |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 482 | std::pair<std::unique_ptr<Info>, std::unique_ptr<Info>> |
| 483 | emitInfo(const CXXMethodDecl *D, const FullComment *FC, int LineNumber, |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 484 | llvm::StringRef File, bool IsFileInRootDir, bool PublicOnly) { |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 485 | FunctionInfo Func; |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 486 | bool IsInAnonymousNamespace = false; |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 487 | populateFunctionInfo(Func, D, FC, LineNumber, File, IsFileInRootDir, |
| 488 | IsInAnonymousNamespace); |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 489 | if (PublicOnly && ((IsInAnonymousNamespace || |
| 490 | !isPublic(D->getAccess(), D->getLinkageInternal())))) |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 491 | return {}; |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 492 | |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 493 | Func.IsMethod = true; |
| 494 | |
| Julie Hockett | b1f01e2 | 2019-06-24 19:31:02 +0000 | [diff] [blame] | 495 | const NamedDecl *Parent = nullptr; |
| 496 | if (const auto *SD = |
| 497 | dyn_cast<ClassTemplateSpecializationDecl>(D->getParent())) |
| 498 | Parent = SD->getSpecializedTemplate(); |
| 499 | else |
| 500 | Parent = D->getParent(); |
| 501 | |
| 502 | SymbolID ParentUSR = getUSRForDecl(Parent); |
| 503 | Func.Parent = |
| 504 | Reference{ParentUSR, Parent->getNameAsString(), InfoType::IT_record}; |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 505 | Func.Access = D->getAccess(); |
| 506 | |
| 507 | // Wrap in enclosing scope |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 508 | auto ParentI = llvm::make_unique<RecordInfo>(); |
| 509 | ParentI->USR = ParentUSR; |
| 510 | if (Func.Namespace.empty()) |
| 511 | ParentI->Path = getInfoRelativePath(ParentI->Namespace); |
| 512 | ParentI->ChildFunctions.emplace_back(std::move(Func)); |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 513 | // Info is wrapped in its parent scope so it's returned in the second position |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 514 | return {nullptr, std::unique_ptr<Info>{std::move(ParentI)}}; |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 515 | } |
| 516 | |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 517 | std::pair<std::unique_ptr<Info>, std::unique_ptr<Info>> |
| 518 | emitInfo(const EnumDecl *D, const FullComment *FC, int LineNumber, |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 519 | llvm::StringRef File, bool IsFileInRootDir, bool PublicOnly) { |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 520 | EnumInfo Enum; |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 521 | bool IsInAnonymousNamespace = false; |
| Diego Astiazaran | 665e967 | 2019-08-09 17:49:41 +0000 | [diff] [blame^] | 522 | populateSymbolInfo(Enum, D, FC, LineNumber, File, IsFileInRootDir, |
| 523 | IsInAnonymousNamespace); |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 524 | if (PublicOnly && ((IsInAnonymousNamespace || |
| 525 | !isPublic(D->getAccess(), D->getLinkageInternal())))) |
| Julie Hockett | 097aedc | 2019-07-02 19:59:56 +0000 | [diff] [blame] | 526 | return {}; |
| Julie Hockett | d900ef0 | 2019-06-28 19:07:56 +0000 | [diff] [blame] | 527 | |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 528 | Enum.Scoped = D->isScoped(); |
| 529 | parseEnumerators(Enum, D); |
| 530 | |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 531 | // Put in global namespace |
| 532 | if (Enum.Namespace.empty()) { |
| 533 | auto ParentI = llvm::make_unique<NamespaceInfo>(); |
| 534 | ParentI->USR = SymbolID(); |
| 535 | ParentI->ChildEnums.emplace_back(std::move(Enum)); |
| 536 | ParentI->Path = getInfoRelativePath(ParentI->Namespace); |
| 537 | // Info is wrapped in its parent scope so it's returned in the second |
| 538 | // position |
| 539 | return {nullptr, std::unique_ptr<Info>{std::move(ParentI)}}; |
| Julie Hockett | 8899c29 | 2018-08-02 20:10:17 +0000 | [diff] [blame] | 540 | } |
| 541 | |
| Julie Hockett | 2c1c9a2 | 2019-07-12 18:32:00 +0000 | [diff] [blame] | 542 | // Wrap in enclosing scope |
| 543 | switch (Enum.Namespace[0].RefType) { |
| 544 | case InfoType::IT_namespace: { |
| 545 | auto ParentI = llvm::make_unique<NamespaceInfo>(); |
| 546 | ParentI->USR = Enum.Namespace[0].USR; |
| 547 | ParentI->ChildEnums.emplace_back(std::move(Enum)); |
| 548 | // Info is wrapped in its parent scope so it's returned in the second |
| 549 | // position |
| 550 | return {nullptr, std::unique_ptr<Info>{std::move(ParentI)}}; |
| 551 | } |
| 552 | case InfoType::IT_record: { |
| 553 | auto ParentI = llvm::make_unique<RecordInfo>(); |
| 554 | ParentI->USR = Enum.Namespace[0].USR; |
| 555 | ParentI->ChildEnums.emplace_back(std::move(Enum)); |
| 556 | // Info is wrapped in its parent scope so it's returned in the second |
| 557 | // position |
| 558 | return {nullptr, std::unique_ptr<Info>{std::move(ParentI)}}; |
| 559 | } |
| 560 | default: |
| 561 | llvm_unreachable("Invalid reference type for parent namespace"); |
| 562 | } |
| Julie Hockett | e975a47 | 2018-03-22 23:34:46 +0000 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | } // namespace serialize |
| 566 | } // namespace doc |
| 567 | } // namespace clang |