2012-06-20 08:34:58 +08:00
|
|
|
//===--- RawCommentList.cpp - Processing raw comments -----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-06-20 17:53:52 +08:00
|
|
|
#include "clang/AST/RawCommentList.h"
|
2012-06-27 04:39:18 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2012-08-11 08:51:43 +08:00
|
|
|
#include "clang/AST/Comment.h"
|
2012-06-27 04:39:18 +08:00
|
|
|
#include "clang/AST/CommentLexer.h"
|
|
|
|
#include "clang/AST/CommentBriefParser.h"
|
2012-08-11 08:51:43 +08:00
|
|
|
#include "clang/AST/CommentSema.h"
|
|
|
|
#include "clang/AST/CommentParser.h"
|
2012-08-09 08:03:17 +08:00
|
|
|
#include "clang/AST/CommentCommandTraits.h"
|
2012-06-20 08:34:58 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// Get comment kind and bool describing if it is a trailing comment.
|
|
|
|
std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment) {
|
|
|
|
if (Comment.size() < 3 || Comment[0] != '/')
|
2012-07-04 15:30:26 +08:00
|
|
|
return std::make_pair(RawComment::RCK_Invalid, false);
|
2012-06-20 08:34:58 +08:00
|
|
|
|
|
|
|
RawComment::CommentKind K;
|
|
|
|
if (Comment[1] == '/') {
|
|
|
|
if (Comment.size() < 3)
|
2012-07-04 15:30:26 +08:00
|
|
|
return std::make_pair(RawComment::RCK_OrdinaryBCPL, false);
|
2012-06-20 08:34:58 +08:00
|
|
|
|
|
|
|
if (Comment[2] == '/')
|
2012-07-04 15:30:26 +08:00
|
|
|
K = RawComment::RCK_BCPLSlash;
|
2012-06-20 08:34:58 +08:00
|
|
|
else if (Comment[2] == '!')
|
2012-07-04 15:30:26 +08:00
|
|
|
K = RawComment::RCK_BCPLExcl;
|
2012-06-20 08:34:58 +08:00
|
|
|
else
|
2012-07-04 15:30:26 +08:00
|
|
|
return std::make_pair(RawComment::RCK_OrdinaryBCPL, false);
|
2012-06-20 08:34:58 +08:00
|
|
|
} else {
|
|
|
|
assert(Comment.size() >= 4);
|
|
|
|
|
|
|
|
// Comment lexer does not understand escapes in comment markers, so pretend
|
|
|
|
// that this is not a comment.
|
|
|
|
if (Comment[1] != '*' ||
|
|
|
|
Comment[Comment.size() - 2] != '*' ||
|
|
|
|
Comment[Comment.size() - 1] != '/')
|
2012-07-04 15:30:26 +08:00
|
|
|
return std::make_pair(RawComment::RCK_Invalid, false);
|
2012-06-20 08:34:58 +08:00
|
|
|
|
|
|
|
if (Comment[2] == '*')
|
2012-07-04 15:30:26 +08:00
|
|
|
K = RawComment::RCK_JavaDoc;
|
2012-06-20 08:34:58 +08:00
|
|
|
else if (Comment[2] == '!')
|
2012-07-04 15:30:26 +08:00
|
|
|
K = RawComment::RCK_Qt;
|
2012-06-20 08:34:58 +08:00
|
|
|
else
|
2012-07-04 15:30:26 +08:00
|
|
|
return std::make_pair(RawComment::RCK_OrdinaryC, false);
|
2012-06-20 08:34:58 +08:00
|
|
|
}
|
|
|
|
const bool TrailingComment = (Comment.size() > 3) && (Comment[3] == '<');
|
|
|
|
return std::make_pair(K, TrailingComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool mergedCommentIsTrailingComment(StringRef Comment) {
|
|
|
|
return (Comment.size() > 3) && (Comment[3] == '<');
|
|
|
|
}
|
|
|
|
} // unnamed namespace
|
|
|
|
|
|
|
|
RawComment::RawComment(const SourceManager &SourceMgr, SourceRange SR,
|
|
|
|
bool Merged) :
|
2012-06-27 13:48:36 +08:00
|
|
|
Range(SR), RawTextValid(false), BriefTextValid(false),
|
2012-08-11 08:51:43 +08:00
|
|
|
IsAlmostTrailingComment(false),
|
2012-06-20 08:34:58 +08:00
|
|
|
BeginLineValid(false), EndLineValid(false) {
|
|
|
|
// Extract raw comment text, if possible.
|
2012-06-22 05:02:45 +08:00
|
|
|
if (SR.getBegin() == SR.getEnd() || getRawText(SourceMgr).empty()) {
|
2012-07-04 15:30:26 +08:00
|
|
|
Kind = RCK_Invalid;
|
2012-06-20 08:34:58 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Merged) {
|
|
|
|
// Guess comment kind.
|
|
|
|
std::pair<CommentKind, bool> K = getCommentKind(RawText);
|
|
|
|
Kind = K.first;
|
|
|
|
IsTrailingComment = K.second;
|
|
|
|
|
|
|
|
IsAlmostTrailingComment = RawText.startswith("//<") ||
|
|
|
|
RawText.startswith("/*<");
|
|
|
|
} else {
|
2012-07-04 15:30:26 +08:00
|
|
|
Kind = RCK_Merged;
|
2012-06-20 08:34:58 +08:00
|
|
|
IsTrailingComment = mergedCommentIsTrailingComment(RawText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-11 08:51:43 +08:00
|
|
|
const Decl *RawComment::getDecl() const {
|
|
|
|
if (DeclOrParsedComment.isNull())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (const Decl *D = DeclOrParsedComment.dyn_cast<const Decl *>())
|
|
|
|
return D;
|
|
|
|
|
|
|
|
return DeclOrParsedComment.get<comments::FullComment *>()->getDecl();
|
|
|
|
}
|
|
|
|
|
2012-06-20 08:34:58 +08:00
|
|
|
unsigned RawComment::getBeginLine(const SourceManager &SM) const {
|
|
|
|
if (BeginLineValid)
|
|
|
|
return BeginLine;
|
|
|
|
|
|
|
|
std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Range.getBegin());
|
|
|
|
BeginLine = SM.getLineNumber(LocInfo.first, LocInfo.second);
|
|
|
|
BeginLineValid = true;
|
|
|
|
return BeginLine;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned RawComment::getEndLine(const SourceManager &SM) const {
|
|
|
|
if (EndLineValid)
|
|
|
|
return EndLine;
|
|
|
|
|
|
|
|
std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Range.getEnd());
|
|
|
|
EndLine = SM.getLineNumber(LocInfo.first, LocInfo.second);
|
|
|
|
EndLineValid = true;
|
|
|
|
return EndLine;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef RawComment::getRawTextSlow(const SourceManager &SourceMgr) const {
|
|
|
|
FileID BeginFileID;
|
|
|
|
FileID EndFileID;
|
|
|
|
unsigned BeginOffset;
|
|
|
|
unsigned EndOffset;
|
|
|
|
|
|
|
|
llvm::tie(BeginFileID, BeginOffset) =
|
|
|
|
SourceMgr.getDecomposedLoc(Range.getBegin());
|
|
|
|
llvm::tie(EndFileID, EndOffset) =
|
|
|
|
SourceMgr.getDecomposedLoc(Range.getEnd());
|
|
|
|
|
|
|
|
const unsigned Length = EndOffset - BeginOffset;
|
|
|
|
if (Length < 2)
|
|
|
|
return StringRef();
|
|
|
|
|
|
|
|
// The comment can't begin in one file and end in another.
|
|
|
|
assert(BeginFileID == EndFileID);
|
|
|
|
|
|
|
|
bool Invalid = false;
|
|
|
|
const char *BufferStart = SourceMgr.getBufferData(BeginFileID,
|
|
|
|
&Invalid).data();
|
|
|
|
if (Invalid)
|
|
|
|
return StringRef();
|
|
|
|
|
|
|
|
return StringRef(BufferStart + BeginOffset, Length);
|
|
|
|
}
|
|
|
|
|
2012-07-03 01:35:10 +08:00
|
|
|
const char *RawComment::extractBriefText(const ASTContext &Context) const {
|
2012-06-27 04:39:18 +08:00
|
|
|
// Make sure that RawText is valid.
|
|
|
|
getRawText(Context.getSourceManager());
|
|
|
|
|
2012-07-28 04:37:06 +08:00
|
|
|
// Since we will be copying the resulting text, all allocations made during
|
|
|
|
// parsing are garbage after resulting string is formed. Thus we can use
|
|
|
|
// a separate allocator for all temporary stuff.
|
|
|
|
llvm::BumpPtrAllocator Allocator;
|
|
|
|
|
2012-08-09 08:03:17 +08:00
|
|
|
comments::CommandTraits Traits;
|
|
|
|
comments::Lexer L(Allocator, Traits,
|
2012-07-28 04:37:06 +08:00
|
|
|
Range.getBegin(), comments::CommentOptions(),
|
2012-06-27 04:39:18 +08:00
|
|
|
RawText.begin(), RawText.end());
|
2012-08-09 08:03:17 +08:00
|
|
|
comments::BriefParser P(L, Traits);
|
2012-06-27 04:39:18 +08:00
|
|
|
|
|
|
|
const std::string Result = P.Parse();
|
|
|
|
const unsigned BriefTextLength = Result.size();
|
|
|
|
char *BriefTextPtr = new (Context) char[BriefTextLength + 1];
|
|
|
|
memcpy(BriefTextPtr, Result.c_str(), BriefTextLength + 1);
|
2012-07-03 01:35:10 +08:00
|
|
|
BriefText = BriefTextPtr;
|
2012-06-27 04:39:18 +08:00
|
|
|
BriefTextValid = true;
|
|
|
|
|
2012-07-03 01:35:10 +08:00
|
|
|
return BriefTextPtr;
|
2012-06-27 04:39:18 +08:00
|
|
|
}
|
|
|
|
|
2012-08-11 08:51:43 +08:00
|
|
|
comments::FullComment *RawComment::parse(const ASTContext &Context) const {
|
|
|
|
// Make sure that RawText is valid.
|
|
|
|
getRawText(Context.getSourceManager());
|
|
|
|
|
|
|
|
comments::CommandTraits Traits;
|
|
|
|
comments::Lexer L(Context.getAllocator(), Traits,
|
|
|
|
getSourceRange().getBegin(), comments::CommentOptions(),
|
|
|
|
RawText.begin(), RawText.end());
|
|
|
|
comments::Sema S(Context.getAllocator(), Context.getSourceManager(),
|
|
|
|
Context.getDiagnostics(), Traits);
|
|
|
|
S.setDecl(getDecl());
|
|
|
|
comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(),
|
|
|
|
Context.getDiagnostics(), Traits);
|
|
|
|
|
|
|
|
comments::FullComment *FC = P.parseFullComment();
|
|
|
|
DeclOrParsedComment = FC;
|
|
|
|
return FC;
|
|
|
|
}
|
|
|
|
|
2012-06-20 08:34:58 +08:00
|
|
|
namespace {
|
|
|
|
bool containsOnlyWhitespace(StringRef Str) {
|
|
|
|
return Str.find_first_not_of(" \t\f\v\r\n") == StringRef::npos;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool onlyWhitespaceBetweenComments(SourceManager &SM,
|
|
|
|
const RawComment &C1, const RawComment &C2) {
|
|
|
|
std::pair<FileID, unsigned> C1EndLocInfo = SM.getDecomposedLoc(
|
|
|
|
C1.getSourceRange().getEnd());
|
|
|
|
std::pair<FileID, unsigned> C2BeginLocInfo = SM.getDecomposedLoc(
|
|
|
|
C2.getSourceRange().getBegin());
|
|
|
|
|
|
|
|
// Question does not make sense if comments are located in different files.
|
|
|
|
if (C1EndLocInfo.first != C2BeginLocInfo.first)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool Invalid = false;
|
|
|
|
const char *Buffer = SM.getBufferData(C1EndLocInfo.first, &Invalid).data();
|
|
|
|
if (Invalid)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
StringRef TextBetweenComments(Buffer + C1EndLocInfo.second,
|
|
|
|
C2BeginLocInfo.second - C1EndLocInfo.second);
|
|
|
|
|
|
|
|
return containsOnlyWhitespace(TextBetweenComments);
|
|
|
|
}
|
|
|
|
} // unnamed namespace
|
|
|
|
|
2012-07-07 02:19:34 +08:00
|
|
|
void RawCommentList::addComment(const RawComment &RC,
|
|
|
|
llvm::BumpPtrAllocator &Allocator) {
|
2012-06-20 08:34:58 +08:00
|
|
|
if (RC.isInvalid())
|
|
|
|
return;
|
|
|
|
|
2012-06-22 06:04:37 +08:00
|
|
|
// Check if the comments are not in source order.
|
|
|
|
while (!Comments.empty() &&
|
|
|
|
!SourceMgr.isBeforeInTranslationUnit(
|
2012-07-07 02:19:34 +08:00
|
|
|
Comments.back()->getSourceRange().getBegin(),
|
2012-06-22 06:04:37 +08:00
|
|
|
RC.getSourceRange().getBegin())) {
|
|
|
|
// If they are, just pop a few last comments that don't fit.
|
|
|
|
// This happens if an \#include directive contains comments.
|
|
|
|
Comments.pop_back();
|
|
|
|
}
|
2012-06-20 08:34:58 +08:00
|
|
|
|
|
|
|
if (OnlyWhitespaceSeen) {
|
|
|
|
if (!onlyWhitespaceBetweenComments(SourceMgr, LastComment, RC))
|
|
|
|
OnlyWhitespaceSeen = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
LastComment = RC;
|
|
|
|
|
|
|
|
// Ordinary comments are not interesting for us.
|
|
|
|
if (RC.isOrdinary())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// If this is the first Doxygen comment, save it (because there isn't
|
|
|
|
// anything to merge it with).
|
|
|
|
if (Comments.empty()) {
|
2012-07-07 02:19:34 +08:00
|
|
|
Comments.push_back(new (Allocator) RawComment(RC));
|
2012-06-20 08:34:58 +08:00
|
|
|
OnlyWhitespaceSeen = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-07 02:19:34 +08:00
|
|
|
const RawComment &C1 = *Comments.back();
|
2012-06-20 08:34:58 +08:00
|
|
|
const RawComment &C2 = RC;
|
|
|
|
|
|
|
|
// Merge comments only if there is only whitespace between them.
|
|
|
|
// Can't merge trailing and non-trailing comments.
|
|
|
|
// Merge trailing comments if they are on same or consecutive lines.
|
|
|
|
if (OnlyWhitespaceSeen &&
|
|
|
|
(C1.isTrailingComment() == C2.isTrailingComment()) &&
|
|
|
|
(!C1.isTrailingComment() ||
|
|
|
|
C1.getEndLine(SourceMgr) + 1 >= C2.getBeginLine(SourceMgr))) {
|
|
|
|
SourceRange MergedRange(C1.getSourceRange().getBegin(),
|
|
|
|
C2.getSourceRange().getEnd());
|
2012-07-07 02:19:34 +08:00
|
|
|
*Comments.back() = RawComment(SourceMgr, MergedRange, true);
|
2012-06-20 08:34:58 +08:00
|
|
|
} else
|
2012-07-07 02:19:34 +08:00
|
|
|
Comments.push_back(new (Allocator) RawComment(RC));
|
2012-06-20 08:34:58 +08:00
|
|
|
|
|
|
|
OnlyWhitespaceSeen = true;
|
|
|
|
}
|
|
|
|
|