Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 1 | //===- CXComment.h - Routines for manipulating CXComments -----------------===// |
| 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 | // |
| 10 | // This file defines routines for manipulating CXComments. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_CLANG_CXCOMMENT_H |
| 15 | #define LLVM_CLANG_CXCOMMENT_H |
| 16 | |
| 17 | #include "clang-c/Index.h" |
Dmitri Gribenko | e4330a3 | 2012-09-10 20:32:42 +0000 | [diff] [blame^] | 18 | #include "CXTranslationUnit.h" |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 19 | |
| 20 | #include "clang/AST/Comment.h" |
Dmitri Gribenko | e4330a3 | 2012-09-10 20:32:42 +0000 | [diff] [blame^] | 21 | #include "clang/AST/ASTContext.h" |
| 22 | #include "clang/Frontend/ASTUnit.h" |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 23 | |
| 24 | namespace clang { |
Dmitri Gribenko | e4330a3 | 2012-09-10 20:32:42 +0000 | [diff] [blame^] | 25 | namespace comments { |
| 26 | class CommandTraits; |
| 27 | } |
| 28 | |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 29 | namespace cxcomment { |
| 30 | |
Dmitri Gribenko | e4330a3 | 2012-09-10 20:32:42 +0000 | [diff] [blame^] | 31 | inline CXComment createCXComment(const comments::Comment *C, |
| 32 | CXTranslationUnit TU) { |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 33 | CXComment Result; |
Dmitri Gribenko | e4330a3 | 2012-09-10 20:32:42 +0000 | [diff] [blame^] | 34 | Result.ASTNode = C; |
| 35 | Result.TranslationUnit = TU; |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 36 | return Result; |
| 37 | } |
| 38 | |
| 39 | inline const comments::Comment *getASTNode(CXComment CXC) { |
Dmitri Gribenko | e4330a3 | 2012-09-10 20:32:42 +0000 | [diff] [blame^] | 40 | return static_cast<const comments::Comment *>(CXC.ASTNode); |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | template<typename T> |
| 44 | inline const T *getASTNodeAs(CXComment CXC) { |
| 45 | const comments::Comment *C = getASTNode(CXC); |
| 46 | if (!C) |
| 47 | return NULL; |
| 48 | |
| 49 | return dyn_cast<T>(C); |
| 50 | } |
| 51 | |
Dmitri Gribenko | e4330a3 | 2012-09-10 20:32:42 +0000 | [diff] [blame^] | 52 | inline ASTContext &getASTContext(CXComment CXC) { |
| 53 | return static_cast<ASTUnit *>(CXC.TranslationUnit->TUData)->getASTContext(); |
| 54 | } |
| 55 | |
| 56 | inline comments::CommandTraits &getCommandTraits(CXComment CXC) { |
| 57 | return getASTContext(CXC).getCommentCommandTraits(); |
| 58 | } |
| 59 | |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 60 | } // end namespace cxcomment |
| 61 | } // end namespace clang |
| 62 | |
| 63 | #endif |
| 64 | |