blob: 1fa7cea1d49882b39cc3fb4a405e2e4f60872bb6 [file] [log] [blame]
Dmitri Gribenkoaab83832012-06-20 00:34:58 +00001//===--- RawCommentList.cpp - Processing raw comments -----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Chandler Carruth39a3e752012-06-20 09:53:52 +000010#include "clang/AST/RawCommentList.h"
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000011#include "clang/AST/ASTContext.h"
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +000012#include "clang/AST/Comment.h"
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +000013#include "clang/AST/CommentBriefParser.h"
Dmitri Gribenkoca7f80a2012-08-09 00:03:17 +000014#include "clang/AST/CommentCommandTraits.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000015#include "clang/AST/CommentLexer.h"
16#include "clang/AST/CommentParser.h"
17#include "clang/AST/CommentSema.h"
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000018#include "llvm/ADT/STLExtras.h"
19
20using namespace clang;
21
22namespace {
23/// Get comment kind and bool describing if it is a trailing comment.
Dmitri Gribenkoe9585622013-04-26 20:12:49 +000024std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment,
25 bool ParseAllComments) {
26 const size_t MinCommentLength = ParseAllComments ? 2 : 3;
27 if ((Comment.size() < MinCommentLength) || Comment[0] != '/')
Abramo Bagnarae06a8882012-07-04 07:30:26 +000028 return std::make_pair(RawComment::RCK_Invalid, false);
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000029
30 RawComment::CommentKind K;
31 if (Comment[1] == '/') {
32 if (Comment.size() < 3)
Abramo Bagnarae06a8882012-07-04 07:30:26 +000033 return std::make_pair(RawComment::RCK_OrdinaryBCPL, false);
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000034
35 if (Comment[2] == '/')
Abramo Bagnarae06a8882012-07-04 07:30:26 +000036 K = RawComment::RCK_BCPLSlash;
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000037 else if (Comment[2] == '!')
Abramo Bagnarae06a8882012-07-04 07:30:26 +000038 K = RawComment::RCK_BCPLExcl;
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000039 else
Abramo Bagnarae06a8882012-07-04 07:30:26 +000040 return std::make_pair(RawComment::RCK_OrdinaryBCPL, false);
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000041 } else {
42 assert(Comment.size() >= 4);
43
44 // Comment lexer does not understand escapes in comment markers, so pretend
45 // that this is not a comment.
46 if (Comment[1] != '*' ||
47 Comment[Comment.size() - 2] != '*' ||
48 Comment[Comment.size() - 1] != '/')
Abramo Bagnarae06a8882012-07-04 07:30:26 +000049 return std::make_pair(RawComment::RCK_Invalid, false);
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000050
51 if (Comment[2] == '*')
Abramo Bagnarae06a8882012-07-04 07:30:26 +000052 K = RawComment::RCK_JavaDoc;
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000053 else if (Comment[2] == '!')
Abramo Bagnarae06a8882012-07-04 07:30:26 +000054 K = RawComment::RCK_Qt;
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000055 else
Abramo Bagnarae06a8882012-07-04 07:30:26 +000056 return std::make_pair(RawComment::RCK_OrdinaryC, false);
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000057 }
58 const bool TrailingComment = (Comment.size() > 3) && (Comment[3] == '<');
59 return std::make_pair(K, TrailingComment);
60}
61
62bool mergedCommentIsTrailingComment(StringRef Comment) {
63 return (Comment.size() > 3) && (Comment[3] == '<');
64}
65} // unnamed namespace
66
67RawComment::RawComment(const SourceManager &SourceMgr, SourceRange SR,
Dmitri Gribenkoa7d16ce2013-04-10 15:35:17 +000068 bool Merged, bool ParseAllComments) :
Dmitri Gribenko60c7ec62012-06-27 05:48:36 +000069 Range(SR), RawTextValid(false), BriefTextValid(false),
Dmitri Gribenkob2610882012-08-14 17:17:18 +000070 IsAttached(false), IsAlmostTrailingComment(false),
Benjamin Kramer20c28be2013-09-28 15:06:27 +000071 ParseAllComments(ParseAllComments) {
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000072 // Extract raw comment text, if possible.
Dmitri Gribenkofecc2e02012-06-21 21:02:45 +000073 if (SR.getBegin() == SR.getEnd() || getRawText(SourceMgr).empty()) {
Abramo Bagnarae06a8882012-07-04 07:30:26 +000074 Kind = RCK_Invalid;
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000075 return;
76 }
77
78 if (!Merged) {
79 // Guess comment kind.
Dmitri Gribenkoe9585622013-04-26 20:12:49 +000080 std::pair<CommentKind, bool> K = getCommentKind(RawText, ParseAllComments);
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000081 Kind = K.first;
82 IsTrailingComment = K.second;
83
84 IsAlmostTrailingComment = RawText.startswith("//<") ||
85 RawText.startswith("/*<");
86 } else {
Abramo Bagnarae06a8882012-07-04 07:30:26 +000087 Kind = RCK_Merged;
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000088 IsTrailingComment = mergedCommentIsTrailingComment(RawText);
89 }
90}
91
Dmitri Gribenkoaab83832012-06-20 00:34:58 +000092StringRef RawComment::getRawTextSlow(const SourceManager &SourceMgr) const {
93 FileID BeginFileID;
94 FileID EndFileID;
95 unsigned BeginOffset;
96 unsigned EndOffset;
97
98 llvm::tie(BeginFileID, BeginOffset) =
99 SourceMgr.getDecomposedLoc(Range.getBegin());
100 llvm::tie(EndFileID, EndOffset) =
101 SourceMgr.getDecomposedLoc(Range.getEnd());
102
103 const unsigned Length = EndOffset - BeginOffset;
104 if (Length < 2)
105 return StringRef();
106
107 // The comment can't begin in one file and end in another.
108 assert(BeginFileID == EndFileID);
109
110 bool Invalid = false;
111 const char *BufferStart = SourceMgr.getBufferData(BeginFileID,
112 &Invalid).data();
113 if (Invalid)
114 return StringRef();
115
116 return StringRef(BufferStart + BeginOffset, Length);
117}
118
Dmitri Gribenko3292d062012-07-02 17:35:10 +0000119const char *RawComment::extractBriefText(const ASTContext &Context) const {
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +0000120 // Make sure that RawText is valid.
121 getRawText(Context.getSourceManager());
122
Dmitri Gribenko4586df72012-07-27 20:37:06 +0000123 // Since we will be copying the resulting text, all allocations made during
124 // parsing are garbage after resulting string is formed. Thus we can use
125 // a separate allocator for all temporary stuff.
126 llvm::BumpPtrAllocator Allocator;
127
Fariborz Jahanian5b637072013-05-03 23:15:20 +0000128 comments::Lexer L(Allocator, Context.getDiagnostics(),
129 Context.getCommentCommandTraits(),
Dmitri Gribenko7acbf002012-09-10 20:32:42 +0000130 Range.getBegin(),
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +0000131 RawText.begin(), RawText.end());
Dmitri Gribenko7acbf002012-09-10 20:32:42 +0000132 comments::BriefParser P(L, Context.getCommentCommandTraits());
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +0000133
134 const std::string Result = P.Parse();
135 const unsigned BriefTextLength = Result.size();
136 char *BriefTextPtr = new (Context) char[BriefTextLength + 1];
137 memcpy(BriefTextPtr, Result.c_str(), BriefTextLength + 1);
Dmitri Gribenko3292d062012-07-02 17:35:10 +0000138 BriefText = BriefTextPtr;
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +0000139 BriefTextValid = true;
140
Dmitri Gribenko3292d062012-07-02 17:35:10 +0000141 return BriefTextPtr;
Dmitri Gribenko5188c4b2012-06-26 20:39:18 +0000142}
143
Dmitri Gribenkob2610882012-08-14 17:17:18 +0000144comments::FullComment *RawComment::parse(const ASTContext &Context,
Dmitri Gribenko6743e042012-09-29 11:40:46 +0000145 const Preprocessor *PP,
Dmitri Gribenkob2610882012-08-14 17:17:18 +0000146 const Decl *D) const {
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +0000147 // Make sure that RawText is valid.
148 getRawText(Context.getSourceManager());
149
Fariborz Jahanian5b637072013-05-03 23:15:20 +0000150 comments::Lexer L(Context.getAllocator(), Context.getDiagnostics(),
151 Context.getCommentCommandTraits(),
Dmitri Gribenko6bab9112012-08-31 10:35:30 +0000152 getSourceRange().getBegin(),
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +0000153 RawText.begin(), RawText.end());
154 comments::Sema S(Context.getAllocator(), Context.getSourceManager(),
Dmitri Gribenko7acbf002012-09-10 20:32:42 +0000155 Context.getDiagnostics(),
Dmitri Gribenko6743e042012-09-29 11:40:46 +0000156 Context.getCommentCommandTraits(),
157 PP);
Dmitri Gribenkob2610882012-08-14 17:17:18 +0000158 S.setDecl(D);
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +0000159 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(),
Dmitri Gribenko7acbf002012-09-10 20:32:42 +0000160 Context.getDiagnostics(),
161 Context.getCommentCommandTraits());
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +0000162
Dmitri Gribenkob2610882012-08-14 17:17:18 +0000163 return P.parseFullComment();
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +0000164}
165
Benjamin Kramer20c28be2013-09-28 15:06:27 +0000166static bool onlyWhitespaceBetween(SourceManager &SM,
167 SourceLocation Loc1, SourceLocation Loc2,
168 unsigned MaxNewlinesAllowed) {
Dmitri Gribenko1d0f5672012-09-09 20:47:31 +0000169 std::pair<FileID, unsigned> Loc1Info = SM.getDecomposedLoc(Loc1);
170 std::pair<FileID, unsigned> Loc2Info = SM.getDecomposedLoc(Loc2);
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000171
Dmitri Gribenko1d0f5672012-09-09 20:47:31 +0000172 // Question does not make sense if locations are in different files.
173 if (Loc1Info.first != Loc2Info.first)
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000174 return false;
175
176 bool Invalid = false;
Dmitri Gribenko1d0f5672012-09-09 20:47:31 +0000177 const char *Buffer = SM.getBufferData(Loc1Info.first, &Invalid).data();
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000178 if (Invalid)
179 return false;
180
Benjamin Kramer20c28be2013-09-28 15:06:27 +0000181 unsigned NumNewlines = 0;
182 assert(Loc1Info.second <= Loc2Info.second && "Loc1 after Loc2!");
183 // Look for non-whitespace characters and remember any newlines seen.
184 for (unsigned I = Loc1Info.second; I != Loc2Info.second; ++I) {
185 switch (Buffer[I]) {
186 default:
187 return false;
188 case ' ':
189 case '\t':
190 case '\f':
191 case '\v':
192 break;
193 case '\r':
194 case '\n':
195 ++NumNewlines;
196
197 // Check if we have found more than the maximum allowed number of
198 // newlines.
199 if (NumNewlines > MaxNewlinesAllowed)
200 return false;
201
202 // Collapse \r\n and \n\r into a single newline.
203 if (I + 1 != Loc2Info.second &&
204 (Buffer[I + 1] == '\n' || Buffer[I + 1] == '\r') &&
205 Buffer[I] != Buffer[I + 1])
206 ++I;
207 break;
208 }
209 }
210
211 return true;
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000212}
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000213
Dmitri Gribenko7dd29d42012-07-06 18:19:34 +0000214void RawCommentList::addComment(const RawComment &RC,
215 llvm::BumpPtrAllocator &Allocator) {
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000216 if (RC.isInvalid())
217 return;
218
Dmitri Gribenko92307402012-06-21 22:04:37 +0000219 // Check if the comments are not in source order.
220 while (!Comments.empty() &&
Benjamin Kramer20c28be2013-09-28 15:06:27 +0000221 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart(),
222 RC.getLocStart())) {
Dmitri Gribenko92307402012-06-21 22:04:37 +0000223 // If they are, just pop a few last comments that don't fit.
224 // This happens if an \#include directive contains comments.
225 Comments.pop_back();
226 }
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000227
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000228 // Ordinary comments are not interesting for us.
229 if (RC.isOrdinary())
230 return;
231
232 // If this is the first Doxygen comment, save it (because there isn't
233 // anything to merge it with).
234 if (Comments.empty()) {
Dmitri Gribenko7dd29d42012-07-06 18:19:34 +0000235 Comments.push_back(new (Allocator) RawComment(RC));
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000236 return;
237 }
238
Dmitri Gribenko7dd29d42012-07-06 18:19:34 +0000239 const RawComment &C1 = *Comments.back();
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000240 const RawComment &C2 = RC;
241
242 // Merge comments only if there is only whitespace between them.
243 // Can't merge trailing and non-trailing comments.
Dmitri Gribenko557a8d52012-08-28 01:20:53 +0000244 // Merge comments if they are on same or consecutive lines.
Benjamin Kramer20c28be2013-09-28 15:06:27 +0000245 if (C1.isTrailingComment() == C2.isTrailingComment() &&
246 onlyWhitespaceBetween(SourceMgr, C1.getLocEnd(), C2.getLocStart(),
247 /*MaxNewlinesAllowed=*/1)) {
248 SourceRange MergedRange(C1.getLocStart(), C2.getLocEnd());
249 *Comments.back() = RawComment(SourceMgr, MergedRange, true,
250 RC.isParseAllComments());
251 } else {
Dmitri Gribenko7dd29d42012-07-06 18:19:34 +0000252 Comments.push_back(new (Allocator) RawComment(RC));
Benjamin Kramer20c28be2013-09-28 15:06:27 +0000253 }
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000254}