Home | History | Annotate | Download | only in Sema
      1 //===---- CodeCompleteConsumer.h - Code Completion Interface ----*- 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 //
     10 //  This file defines the CodeCompleteConsumer class.
     11 //
     12 //===----------------------------------------------------------------------===//
     13 #ifndef LLVM_CLANG_SEMA_CODECOMPLETECONSUMER_H
     14 #define LLVM_CLANG_SEMA_CODECOMPLETECONSUMER_H
     15 
     16 #include "clang-c/Index.h"
     17 #include "clang/AST/CanonicalType.h"
     18 #include "clang/AST/Type.h"
     19 #include "clang/Sema/CodeCompleteOptions.h"
     20 #include "llvm/ADT/SmallVector.h"
     21 #include "llvm/ADT/StringRef.h"
     22 #include "llvm/Support/Allocator.h"
     23 #include <string>
     24 
     25 namespace clang {
     26 
     27 class Decl;
     28 
     29 /// \brief Default priority values for code-completion results based
     30 /// on their kind.
     31 enum {
     32   /// \brief Priority for the next initialization in a constructor initializer
     33   /// list.
     34   CCP_NextInitializer = 7,
     35   /// \brief Priority for an enumeration constant inside a switch whose
     36   /// condition is of the enumeration type.
     37   CCP_EnumInCase = 7,
     38   /// \brief Priority for a send-to-super completion.
     39   CCP_SuperCompletion = 20,
     40   /// \brief Priority for a declaration that is in the local scope.
     41   CCP_LocalDeclaration = 34,
     42   /// \brief Priority for a member declaration found from the current
     43   /// method or member function.
     44   CCP_MemberDeclaration = 35,
     45   /// \brief Priority for a language keyword (that isn't any of the other
     46   /// categories).
     47   CCP_Keyword = 40,
     48   /// \brief Priority for a code pattern.
     49   CCP_CodePattern = 40,
     50   /// \brief Priority for a non-type declaration.
     51   CCP_Declaration = 50,
     52   /// \brief Priority for a type.
     53   CCP_Type = CCP_Declaration,
     54   /// \brief Priority for a constant value (e.g., enumerator).
     55   CCP_Constant = 65,
     56   /// \brief Priority for a preprocessor macro.
     57   CCP_Macro = 70,
     58   /// \brief Priority for a nested-name-specifier.
     59   CCP_NestedNameSpecifier = 75,
     60   /// \brief Priority for a result that isn't likely to be what the user wants,
     61   /// but is included for completeness.
     62   CCP_Unlikely = 80,
     63 
     64   /// \brief Priority for the Objective-C "_cmd" implicit parameter.
     65   CCP_ObjC_cmd = CCP_Unlikely
     66 };
     67 
     68 /// \brief Priority value deltas that are added to code-completion results
     69 /// based on the context of the result.
     70 enum {
     71   /// \brief The result is in a base class.
     72   CCD_InBaseClass = 2,
     73   /// \brief The result is a C++ non-static member function whose qualifiers
     74   /// exactly match the object type on which the member function can be called.
     75   CCD_ObjectQualifierMatch = -1,
     76   /// \brief The selector of the given message exactly matches the selector
     77   /// of the current method, which might imply that some kind of delegation
     78   /// is occurring.
     79   CCD_SelectorMatch = -3,
     80 
     81   /// \brief Adjustment to the "bool" type in Objective-C, where the typedef
     82   /// "BOOL" is preferred.
     83   CCD_bool_in_ObjC = 1,
     84 
     85   /// \brief Adjustment for KVC code pattern priorities when it doesn't look
     86   /// like the
     87   CCD_ProbablyNotObjCCollection = 15,
     88 
     89   /// \brief An Objective-C method being used as a property.
     90   CCD_MethodAsProperty = 2
     91 };
     92 
     93 /// \brief Priority value factors by which we will divide or multiply the
     94 /// priority of a code-completion result.
     95 enum {
     96   /// \brief Divide by this factor when a code-completion result's type exactly
     97   /// matches the type we expect.
     98   CCF_ExactTypeMatch = 4,
     99   /// \brief Divide by this factor when a code-completion result's type is
    100   /// similar to the type we expect (e.g., both arithmetic types, both
    101   /// Objective-C object pointer types).
    102   CCF_SimilarTypeMatch = 2
    103 };
    104 
    105 /// \brief A simplified classification of types used when determining
    106 /// "similar" types for code completion.
    107 enum SimplifiedTypeClass {
    108   STC_Arithmetic,
    109   STC_Array,
    110   STC_Block,
    111   STC_Function,
    112   STC_ObjectiveC,
    113   STC_Other,
    114   STC_Pointer,
    115   STC_Record,
    116   STC_Void
    117 };
    118 
    119 /// \brief Determine the simplified type class of the given canonical type.
    120 SimplifiedTypeClass getSimplifiedTypeClass(CanQualType T);
    121 
    122 /// \brief Determine the type that this declaration will have if it is used
    123 /// as a type or in an expression.
    124 QualType getDeclUsageType(ASTContext &C, const NamedDecl *ND);
    125 
    126 /// \brief Determine the priority to be given to a macro code completion result
    127 /// with the given name.
    128 ///
    129 /// \param MacroName The name of the macro.
    130 ///
    131 /// \param LangOpts Options describing the current language dialect.
    132 ///
    133 /// \param PreferredTypeIsPointer Whether the preferred type for the context
    134 /// of this macro is a pointer type.
    135 unsigned getMacroUsagePriority(StringRef MacroName,
    136                                const LangOptions &LangOpts,
    137                                bool PreferredTypeIsPointer = false);
    138 
    139 /// \brief Determine the libclang cursor kind associated with the given
    140 /// declaration.
    141 CXCursorKind getCursorKindForDecl(const Decl *D);
    142 
    143 class FunctionDecl;
    144 class FunctionType;
    145 class FunctionTemplateDecl;
    146 class IdentifierInfo;
    147 class NamedDecl;
    148 class NestedNameSpecifier;
    149 class Sema;
    150 
    151 /// \brief The context in which code completion occurred, so that the
    152 /// code-completion consumer can process the results accordingly.
    153 class CodeCompletionContext {
    154 public:
    155   enum Kind {
    156     /// \brief An unspecified code-completion context.
    157     CCC_Other,
    158     /// \brief An unspecified code-completion context where we should also add
    159     /// macro completions.
    160     CCC_OtherWithMacros,
    161     /// \brief Code completion occurred within a "top-level" completion context,
    162     /// e.g., at namespace or global scope.
    163     CCC_TopLevel,
    164     /// \brief Code completion occurred within an Objective-C interface,
    165     /// protocol, or category interface.
    166     CCC_ObjCInterface,
    167     /// \brief Code completion occurred within an Objective-C implementation
    168     /// or category implementation.
    169     CCC_ObjCImplementation,
    170     /// \brief Code completion occurred within the instance variable list of
    171     /// an Objective-C interface, implementation, or category implementation.
    172     CCC_ObjCIvarList,
    173     /// \brief Code completion occurred within a class, struct, or union.
    174     CCC_ClassStructUnion,
    175     /// \brief Code completion occurred where a statement (or declaration) is
    176     /// expected in a function, method, or block.
    177     CCC_Statement,
    178     /// \brief Code completion occurred where an expression is expected.
    179     CCC_Expression,
    180     /// \brief Code completion occurred where an Objective-C message receiver
    181     /// is expected.
    182     CCC_ObjCMessageReceiver,
    183     /// \brief Code completion occurred on the right-hand side of a member
    184     /// access expression using the dot operator.
    185     ///
    186     /// The results of this completion are the members of the type being
    187     /// accessed. The type itself is available via
    188     /// \c CodeCompletionContext::getType().
    189     CCC_DotMemberAccess,
    190     /// \brief Code completion occurred on the right-hand side of a member
    191     /// access expression using the arrow operator.
    192     ///
    193     /// The results of this completion are the members of the type being
    194     /// accessed. The type itself is available via
    195     /// \c CodeCompletionContext::getType().
    196     CCC_ArrowMemberAccess,
    197     /// \brief Code completion occurred on the right-hand side of an Objective-C
    198     /// property access expression.
    199     ///
    200     /// The results of this completion are the members of the type being
    201     /// accessed. The type itself is available via
    202     /// \c CodeCompletionContext::getType().
    203     CCC_ObjCPropertyAccess,
    204     /// \brief Code completion occurred after the "enum" keyword, to indicate
    205     /// an enumeration name.
    206     CCC_EnumTag,
    207     /// \brief Code completion occurred after the "union" keyword, to indicate
    208     /// a union name.
    209     CCC_UnionTag,
    210     /// \brief Code completion occurred after the "struct" or "class" keyword,
    211     /// to indicate a struct or class name.
    212     CCC_ClassOrStructTag,
    213     /// \brief Code completion occurred where a protocol name is expected.
    214     CCC_ObjCProtocolName,
    215     /// \brief Code completion occurred where a namespace or namespace alias
    216     /// is expected.
    217     CCC_Namespace,
    218     /// \brief Code completion occurred where a type name is expected.
    219     CCC_Type,
    220     /// \brief Code completion occurred where a new name is expected.
    221     CCC_Name,
    222     /// \brief Code completion occurred where a new name is expected and a
    223     /// qualified name is permissible.
    224     CCC_PotentiallyQualifiedName,
    225     /// \brief Code completion occurred where an macro is being defined.
    226     CCC_MacroName,
    227     /// \brief Code completion occurred where a macro name is expected
    228     /// (without any arguments, in the case of a function-like macro).
    229     CCC_MacroNameUse,
    230     /// \brief Code completion occurred within a preprocessor expression.
    231     CCC_PreprocessorExpression,
    232     /// \brief Code completion occurred where a preprocessor directive is
    233     /// expected.
    234     CCC_PreprocessorDirective,
    235     /// \brief Code completion occurred in a context where natural language is
    236     /// expected, e.g., a comment or string literal.
    237     ///
    238     /// This context usually implies that no completions should be added,
    239     /// unless they come from an appropriate natural-language dictionary.
    240     CCC_NaturalLanguage,
    241     /// \brief Code completion for a selector, as in an \@selector expression.
    242     CCC_SelectorName,
    243     /// \brief Code completion within a type-qualifier list.
    244     CCC_TypeQualifiers,
    245     /// \brief Code completion in a parenthesized expression, which means that
    246     /// we may also have types here in C and Objective-C (as well as in C++).
    247     CCC_ParenthesizedExpression,
    248     /// \brief Code completion where an Objective-C instance message is
    249     /// expected.
    250     CCC_ObjCInstanceMessage,
    251     /// \brief Code completion where an Objective-C class message is expected.
    252     CCC_ObjCClassMessage,
    253     /// \brief Code completion where the name of an Objective-C class is
    254     /// expected.
    255     CCC_ObjCInterfaceName,
    256     /// \brief Code completion where an Objective-C category name is expected.
    257     CCC_ObjCCategoryName,
    258     /// \brief An unknown context, in which we are recovering from a parsing
    259     /// error and don't know which completions we should give.
    260     CCC_Recovery
    261   };
    262 
    263 private:
    264   enum Kind Kind;
    265 
    266   /// \brief The type that would prefer to see at this point (e.g., the type
    267   /// of an initializer or function parameter).
    268   QualType PreferredType;
    269 
    270   /// \brief The type of the base object in a member access expression.
    271   QualType BaseType;
    272 
    273   /// \brief The identifiers for Objective-C selector parts.
    274   IdentifierInfo **SelIdents;
    275 
    276   /// \brief The number of Objective-C selector parts.
    277   unsigned NumSelIdents;
    278 
    279 public:
    280   /// \brief Construct a new code-completion context of the given kind.
    281   CodeCompletionContext(enum Kind Kind) : Kind(Kind), SelIdents(NULL),
    282                                           NumSelIdents(0) { }
    283 
    284   /// \brief Construct a new code-completion context of the given kind.
    285   CodeCompletionContext(enum Kind Kind, QualType T,
    286                         IdentifierInfo **SelIdents = NULL,
    287                         unsigned NumSelIdents = 0) : Kind(Kind),
    288                                                      SelIdents(SelIdents),
    289                                                     NumSelIdents(NumSelIdents) {
    290     if (Kind == CCC_DotMemberAccess || Kind == CCC_ArrowMemberAccess ||
    291         Kind == CCC_ObjCPropertyAccess || Kind == CCC_ObjCClassMessage ||
    292         Kind == CCC_ObjCInstanceMessage)
    293       BaseType = T;
    294     else
    295       PreferredType = T;
    296   }
    297 
    298   /// \brief Retrieve the kind of code-completion context.
    299   enum Kind getKind() const { return Kind; }
    300 
    301   /// \brief Retrieve the type that this expression would prefer to have, e.g.,
    302   /// if the expression is a variable initializer or a function argument, the
    303   /// type of the corresponding variable or function parameter.
    304   QualType getPreferredType() const { return PreferredType; }
    305 
    306   /// \brief Retrieve the type of the base object in a member-access
    307   /// expression.
    308   QualType getBaseType() const { return BaseType; }
    309 
    310   /// \brief Retrieve the Objective-C selector identifiers.
    311   IdentifierInfo **getSelIdents() const { return SelIdents; }
    312 
    313   /// \brief Retrieve the number of Objective-C selector identifiers.
    314   unsigned getNumSelIdents() const { return NumSelIdents; }
    315 
    316   /// \brief Determines whether we want C++ constructors as results within this
    317   /// context.
    318   bool wantConstructorResults() const;
    319 };
    320 
    321 
    322 /// \brief A "string" used to describe how code completion can
    323 /// be performed for an entity.
    324 ///
    325 /// A code completion string typically shows how a particular entity can be
    326 /// used. For example, the code completion string for a function would show
    327 /// the syntax to call it, including the parentheses, placeholders for the
    328 /// arguments, etc.
    329 class CodeCompletionString {
    330 public:
    331   /// \brief The different kinds of "chunks" that can occur within a code
    332   /// completion string.
    333   enum ChunkKind {
    334     /// \brief The piece of text that the user is expected to type to
    335     /// match the code-completion string, typically a keyword or the name of a
    336     /// declarator or macro.
    337     CK_TypedText,
    338     /// \brief A piece of text that should be placed in the buffer, e.g.,
    339     /// parentheses or a comma in a function call.
    340     CK_Text,
    341     /// \brief A code completion string that is entirely optional. For example,
    342     /// an optional code completion string that describes the default arguments
    343     /// in a function call.
    344     CK_Optional,
    345     /// \brief A string that acts as a placeholder for, e.g., a function
    346     /// call argument.
    347     CK_Placeholder,
    348     /// \brief A piece of text that describes something about the result but
    349     /// should not be inserted into the buffer.
    350     CK_Informative,
    351     /// \brief A piece of text that describes the type of an entity or, for
    352     /// functions and methods, the return type.
    353     CK_ResultType,
    354     /// \brief A piece of text that describes the parameter that corresponds
    355     /// to the code-completion location within a function call, message send,
    356     /// macro invocation, etc.
    357     CK_CurrentParameter,
    358     /// \brief A left parenthesis ('(').
    359     CK_LeftParen,
    360     /// \brief A right parenthesis (')').
    361     CK_RightParen,
    362     /// \brief A left bracket ('[').
    363     CK_LeftBracket,
    364     /// \brief A right bracket (']').
    365     CK_RightBracket,
    366     /// \brief A left brace ('{').
    367     CK_LeftBrace,
    368     /// \brief A right brace ('}').
    369     CK_RightBrace,
    370     /// \brief A left angle bracket ('<').
    371     CK_LeftAngle,
    372     /// \brief A right angle bracket ('>').
    373     CK_RightAngle,
    374     /// \brief A comma separator (',').
    375     CK_Comma,
    376     /// \brief A colon (':').
    377     CK_Colon,
    378     /// \brief A semicolon (';').
    379     CK_SemiColon,
    380     /// \brief An '=' sign.
    381     CK_Equal,
    382     /// \brief Horizontal whitespace (' ').
    383     CK_HorizontalSpace,
    384     /// \brief Vertical whitespace ('\\n' or '\\r\\n', depending on the
    385     /// platform).
    386     CK_VerticalSpace
    387   };
    388 
    389   /// \brief One piece of the code completion string.
    390   struct Chunk {
    391     /// \brief The kind of data stored in this piece of the code completion
    392     /// string.
    393     ChunkKind Kind;
    394 
    395     union {
    396       /// \brief The text string associated with a CK_Text, CK_Placeholder,
    397       /// CK_Informative, or CK_Comma chunk.
    398       /// The string is owned by the chunk and will be deallocated
    399       /// (with delete[]) when the chunk is destroyed.
    400       const char *Text;
    401 
    402       /// \brief The code completion string associated with a CK_Optional chunk.
    403       /// The optional code completion string is owned by the chunk, and will
    404       /// be deallocated (with delete) when the chunk is destroyed.
    405       CodeCompletionString *Optional;
    406     };
    407 
    408     Chunk() : Kind(CK_Text), Text(0) { }
    409 
    410     explicit Chunk(ChunkKind Kind, const char *Text = "");
    411 
    412     /// \brief Create a new text chunk.
    413     static Chunk CreateText(const char *Text);
    414 
    415     /// \brief Create a new optional chunk.
    416     static Chunk CreateOptional(CodeCompletionString *Optional);
    417 
    418     /// \brief Create a new placeholder chunk.
    419     static Chunk CreatePlaceholder(const char *Placeholder);
    420 
    421     /// \brief Create a new informative chunk.
    422     static Chunk CreateInformative(const char *Informative);
    423 
    424     /// \brief Create a new result type chunk.
    425     static Chunk CreateResultType(const char *ResultType);
    426 
    427     /// \brief Create a new current-parameter chunk.
    428     static Chunk CreateCurrentParameter(const char *CurrentParameter);
    429   };
    430 
    431 private:
    432   /// \brief The number of chunks stored in this string.
    433   unsigned NumChunks : 16;
    434 
    435   /// \brief The number of annotations for this code-completion result.
    436   unsigned NumAnnotations : 16;
    437 
    438   /// \brief The priority of this code-completion string.
    439   unsigned Priority : 16;
    440 
    441   /// \brief The availability of this code-completion result.
    442   unsigned Availability : 2;
    443 
    444   /// \brief The name of the parent context.
    445   StringRef ParentName;
    446 
    447   /// \brief A brief documentation comment attached to the declaration of
    448   /// entity being completed by this result.
    449   const char *BriefComment;
    450 
    451   CodeCompletionString(const CodeCompletionString &) LLVM_DELETED_FUNCTION;
    452   void operator=(const CodeCompletionString &) LLVM_DELETED_FUNCTION;
    453 
    454   CodeCompletionString(const Chunk *Chunks, unsigned NumChunks,
    455                        unsigned Priority, CXAvailabilityKind Availability,
    456                        const char **Annotations, unsigned NumAnnotations,
    457                        StringRef ParentName,
    458                        const char *BriefComment);
    459   ~CodeCompletionString() { }
    460 
    461   friend class CodeCompletionBuilder;
    462   friend class CodeCompletionResult;
    463 
    464 public:
    465   typedef const Chunk *iterator;
    466   iterator begin() const { return reinterpret_cast<const Chunk *>(this + 1); }
    467   iterator end() const { return begin() + NumChunks; }
    468   bool empty() const { return NumChunks == 0; }
    469   unsigned size() const { return NumChunks; }
    470 
    471   const Chunk &operator[](unsigned I) const {
    472     assert(I < size() && "Chunk index out-of-range");
    473     return begin()[I];
    474   }
    475 
    476   /// \brief Returns the text in the TypedText chunk.
    477   const char *getTypedText() const;
    478 
    479   /// \brief Retrieve the priority of this code completion result.
    480   unsigned getPriority() const { return Priority; }
    481 
    482   /// \brief Retrieve the availability of this code completion result.
    483   unsigned getAvailability() const { return Availability; }
    484 
    485   /// \brief Retrieve the number of annotations for this code completion result.
    486   unsigned getAnnotationCount() const;
    487 
    488   /// \brief Retrieve the annotation string specified by \c AnnotationNr.
    489   const char *getAnnotation(unsigned AnnotationNr) const;
    490 
    491   /// \brief Retrieve the name of the parent context.
    492   StringRef getParentContextName() const {
    493     return ParentName;
    494   }
    495 
    496   const char *getBriefComment() const {
    497     return BriefComment;
    498   }
    499 
    500   /// \brief Retrieve a string representation of the code completion string,
    501   /// which is mainly useful for debugging.
    502   std::string getAsString() const;
    503 };
    504 
    505 /// \brief An allocator used specifically for the purpose of code completion.
    506 class CodeCompletionAllocator : public llvm::BumpPtrAllocator {
    507 public:
    508   /// \brief Copy the given string into this allocator.
    509   const char *CopyString(StringRef String);
    510 
    511   /// \brief Copy the given string into this allocator.
    512   const char *CopyString(Twine String);
    513 
    514   // \brief Copy the given string into this allocator.
    515   const char *CopyString(const char *String) {
    516     return CopyString(StringRef(String));
    517   }
    518 
    519   /// \brief Copy the given string into this allocator.
    520   const char *CopyString(const std::string &String) {
    521     return CopyString(StringRef(String));
    522   }
    523 };
    524 
    525 /// \brief Allocator for a cached set of global code completions.
    526 class GlobalCodeCompletionAllocator
    527   : public CodeCompletionAllocator,
    528     public RefCountedBase<GlobalCodeCompletionAllocator>
    529 {
    530 
    531 };
    532 
    533 class CodeCompletionTUInfo {
    534   llvm::DenseMap<const DeclContext *, StringRef> ParentNames;
    535   IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> AllocatorRef;
    536 
    537 public:
    538   explicit CodeCompletionTUInfo(
    539                     IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> Allocator)
    540     : AllocatorRef(Allocator) { }
    541 
    542   IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> getAllocatorRef() const {
    543     return AllocatorRef;
    544   }
    545   CodeCompletionAllocator &getAllocator() const {
    546     assert(AllocatorRef);
    547     return *AllocatorRef;
    548   }
    549 
    550   StringRef getParentName(const DeclContext *DC);
    551 };
    552 
    553 } // end namespace clang
    554 
    555 namespace llvm {
    556   template <> struct isPodLike<clang::CodeCompletionString::Chunk> {
    557     static const bool value = true;
    558   };
    559 }
    560 
    561 namespace clang {
    562 
    563 /// \brief A builder class used to construct new code-completion strings.
    564 class CodeCompletionBuilder {
    565 public:
    566   typedef CodeCompletionString::Chunk Chunk;
    567 
    568 private:
    569   CodeCompletionAllocator &Allocator;
    570   CodeCompletionTUInfo &CCTUInfo;
    571   unsigned Priority;
    572   CXAvailabilityKind Availability;
    573   StringRef ParentName;
    574   const char *BriefComment;
    575 
    576   /// \brief The chunks stored in this string.
    577   SmallVector<Chunk, 4> Chunks;
    578 
    579   SmallVector<const char *, 2> Annotations;
    580 
    581 public:
    582   CodeCompletionBuilder(CodeCompletionAllocator &Allocator,
    583                         CodeCompletionTUInfo &CCTUInfo)
    584     : Allocator(Allocator), CCTUInfo(CCTUInfo),
    585       Priority(0), Availability(CXAvailability_Available),
    586       BriefComment(NULL) { }
    587 
    588   CodeCompletionBuilder(CodeCompletionAllocator &Allocator,
    589                         CodeCompletionTUInfo &CCTUInfo,
    590                         unsigned Priority, CXAvailabilityKind Availability)
    591     : Allocator(Allocator), CCTUInfo(CCTUInfo),
    592       Priority(Priority), Availability(Availability),
    593       BriefComment(NULL) { }
    594 
    595   /// \brief Retrieve the allocator into which the code completion
    596   /// strings should be allocated.
    597   CodeCompletionAllocator &getAllocator() const { return Allocator; }
    598 
    599   CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; }
    600 
    601   /// \brief Take the resulting completion string.
    602   ///
    603   /// This operation can only be performed once.
    604   CodeCompletionString *TakeString();
    605 
    606   /// \brief Add a new typed-text chunk.
    607   void AddTypedTextChunk(const char *Text);
    608 
    609   /// \brief Add a new text chunk.
    610   void AddTextChunk(const char *Text);
    611 
    612   /// \brief Add a new optional chunk.
    613   void AddOptionalChunk(CodeCompletionString *Optional);
    614 
    615   /// \brief Add a new placeholder chunk.
    616   void AddPlaceholderChunk(const char *Placeholder);
    617 
    618   /// \brief Add a new informative chunk.
    619   void AddInformativeChunk(const char *Text);
    620 
    621   /// \brief Add a new result-type chunk.
    622   void AddResultTypeChunk(const char *ResultType);
    623 
    624   /// \brief Add a new current-parameter chunk.
    625   void AddCurrentParameterChunk(const char *CurrentParameter);
    626 
    627   /// \brief Add a new chunk.
    628   void AddChunk(CodeCompletionString::ChunkKind CK, const char *Text = "");
    629 
    630   void AddAnnotation(const char *A) { Annotations.push_back(A); }
    631 
    632   /// \brief Add the parent context information to this code completion.
    633   void addParentContext(const DeclContext *DC);
    634 
    635   void addBriefComment(StringRef Comment);
    636 
    637   StringRef getParentName() const { return ParentName; }
    638 };
    639 
    640 /// \brief Captures a result of code completion.
    641 class CodeCompletionResult {
    642 public:
    643   /// \brief Describes the kind of result generated.
    644   enum ResultKind {
    645     RK_Declaration = 0, ///< Refers to a declaration
    646     RK_Keyword,         ///< Refers to a keyword or symbol.
    647     RK_Macro,           ///< Refers to a macro
    648     RK_Pattern          ///< Refers to a precomputed pattern.
    649   };
    650 
    651   /// \brief When Kind == RK_Declaration or RK_Pattern, the declaration we are
    652   /// referring to. In the latter case, the declaration might be NULL.
    653   const NamedDecl *Declaration;
    654 
    655   union {
    656     /// \brief When Kind == RK_Keyword, the string representing the keyword
    657     /// or symbol's spelling.
    658     const char *Keyword;
    659 
    660     /// \brief When Kind == RK_Pattern, the code-completion string that
    661     /// describes the completion text to insert.
    662     CodeCompletionString *Pattern;
    663 
    664     /// \brief When Kind == RK_Macro, the identifier that refers to a macro.
    665     const IdentifierInfo *Macro;
    666   };
    667 
    668   /// \brief The priority of this particular code-completion result.
    669   unsigned Priority;
    670 
    671   /// \brief Specifies which parameter (of a function, Objective-C method,
    672   /// macro, etc.) we should start with when formatting the result.
    673   unsigned StartParameter;
    674 
    675   /// \brief The kind of result stored here.
    676   ResultKind Kind;
    677 
    678   /// \brief The cursor kind that describes this result.
    679   CXCursorKind CursorKind;
    680 
    681   /// \brief The availability of this result.
    682   CXAvailabilityKind Availability;
    683 
    684   /// \brief Whether this result is hidden by another name.
    685   bool Hidden : 1;
    686 
    687   /// \brief Whether this result was found via lookup into a base class.
    688   bool QualifierIsInformative : 1;
    689 
    690   /// \brief Whether this declaration is the beginning of a
    691   /// nested-name-specifier and, therefore, should be followed by '::'.
    692   bool StartsNestedNameSpecifier : 1;
    693 
    694   /// \brief Whether all parameters (of a function, Objective-C
    695   /// method, etc.) should be considered "informative".
    696   bool AllParametersAreInformative : 1;
    697 
    698   /// \brief Whether we're completing a declaration of the given entity,
    699   /// rather than a use of that entity.
    700   bool DeclaringEntity : 1;
    701 
    702   /// \brief If the result should have a nested-name-specifier, this is it.
    703   /// When \c QualifierIsInformative, the nested-name-specifier is
    704   /// informative rather than required.
    705   NestedNameSpecifier *Qualifier;
    706 
    707   /// \brief Build a result that refers to a declaration.
    708   CodeCompletionResult(const NamedDecl *Declaration,
    709                        unsigned Priority,
    710                        NestedNameSpecifier *Qualifier = 0,
    711                        bool QualifierIsInformative = false,
    712                        bool Accessible = true)
    713     : Declaration(Declaration), Priority(Priority),
    714       StartParameter(0), Kind(RK_Declaration),
    715       Availability(CXAvailability_Available), Hidden(false),
    716       QualifierIsInformative(QualifierIsInformative),
    717       StartsNestedNameSpecifier(false), AllParametersAreInformative(false),
    718       DeclaringEntity(false), Qualifier(Qualifier) {
    719     computeCursorKindAndAvailability(Accessible);
    720   }
    721 
    722   /// \brief Build a result that refers to a keyword or symbol.
    723   CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_Keyword)
    724     : Declaration(0), Keyword(Keyword), Priority(Priority), StartParameter(0),
    725       Kind(RK_Keyword), CursorKind(CXCursor_NotImplemented),
    726       Availability(CXAvailability_Available), Hidden(false),
    727       QualifierIsInformative(0), StartsNestedNameSpecifier(false),
    728       AllParametersAreInformative(false), DeclaringEntity(false), Qualifier(0)
    729   {
    730   }
    731 
    732   /// \brief Build a result that refers to a macro.
    733   CodeCompletionResult(const IdentifierInfo *Macro,
    734                        unsigned Priority = CCP_Macro)
    735     : Declaration(0), Macro(Macro), Priority(Priority), StartParameter(0),
    736       Kind(RK_Macro), CursorKind(CXCursor_MacroDefinition),
    737       Availability(CXAvailability_Available), Hidden(false),
    738       QualifierIsInformative(0), StartsNestedNameSpecifier(false),
    739       AllParametersAreInformative(false), DeclaringEntity(false), Qualifier(0)
    740   {
    741   }
    742 
    743   /// \brief Build a result that refers to a pattern.
    744   CodeCompletionResult(CodeCompletionString *Pattern,
    745                        unsigned Priority = CCP_CodePattern,
    746                        CXCursorKind CursorKind = CXCursor_NotImplemented,
    747                    CXAvailabilityKind Availability = CXAvailability_Available,
    748                        const NamedDecl *D = 0)
    749     : Declaration(D), Pattern(Pattern), Priority(Priority), StartParameter(0),
    750       Kind(RK_Pattern), CursorKind(CursorKind), Availability(Availability),
    751       Hidden(false), QualifierIsInformative(0),
    752       StartsNestedNameSpecifier(false), AllParametersAreInformative(false),
    753       DeclaringEntity(false), Qualifier(0)
    754   {
    755   }
    756 
    757   /// \brief Build a result that refers to a pattern with an associated
    758   /// declaration.
    759   CodeCompletionResult(CodeCompletionString *Pattern, NamedDecl *D,
    760                        unsigned Priority)
    761     : Declaration(D), Pattern(Pattern), Priority(Priority), StartParameter(0),
    762       Kind(RK_Pattern), Availability(CXAvailability_Available), Hidden(false),
    763       QualifierIsInformative(false), StartsNestedNameSpecifier(false),
    764       AllParametersAreInformative(false), DeclaringEntity(false), Qualifier(0) {
    765     computeCursorKindAndAvailability();
    766   }
    767 
    768   /// \brief Retrieve the declaration stored in this result.
    769   const NamedDecl *getDeclaration() const {
    770     assert(Kind == RK_Declaration && "Not a declaration result");
    771     return Declaration;
    772   }
    773 
    774   /// \brief Retrieve the keyword stored in this result.
    775   const char *getKeyword() const {
    776     assert(Kind == RK_Keyword && "Not a keyword result");
    777     return Keyword;
    778   }
    779 
    780   /// \brief Create a new code-completion string that describes how to insert
    781   /// this result into a program.
    782   ///
    783   /// \param S The semantic analysis that created the result.
    784   ///
    785   /// \param Allocator The allocator that will be used to allocate the
    786   /// string itself.
    787   CodeCompletionString *CreateCodeCompletionString(Sema &S,
    788                                            CodeCompletionAllocator &Allocator,
    789                                            CodeCompletionTUInfo &CCTUInfo,
    790                                            bool IncludeBriefComments);
    791   CodeCompletionString *CreateCodeCompletionString(ASTContext &Ctx,
    792                                                    Preprocessor &PP,
    793                                            CodeCompletionAllocator &Allocator,
    794                                            CodeCompletionTUInfo &CCTUInfo,
    795                                            bool IncludeBriefComments);
    796 
    797 private:
    798   void computeCursorKindAndAvailability(bool Accessible = true);
    799 };
    800 
    801 bool operator<(const CodeCompletionResult &X, const CodeCompletionResult &Y);
    802 
    803 inline bool operator>(const CodeCompletionResult &X,
    804                       const CodeCompletionResult &Y) {
    805   return Y < X;
    806 }
    807 
    808 inline bool operator<=(const CodeCompletionResult &X,
    809                       const CodeCompletionResult &Y) {
    810   return !(Y < X);
    811 }
    812 
    813 inline bool operator>=(const CodeCompletionResult &X,
    814                        const CodeCompletionResult &Y) {
    815   return !(X < Y);
    816 }
    817 
    818 
    819 raw_ostream &operator<<(raw_ostream &OS,
    820                               const CodeCompletionString &CCS);
    821 
    822 /// \brief Abstract interface for a consumer of code-completion
    823 /// information.
    824 class CodeCompleteConsumer {
    825 protected:
    826   const CodeCompleteOptions CodeCompleteOpts;
    827 
    828   /// \brief Whether the output format for the code-completion consumer is
    829   /// binary.
    830   bool OutputIsBinary;
    831 
    832 public:
    833   class OverloadCandidate {
    834   public:
    835     /// \brief Describes the type of overload candidate.
    836     enum CandidateKind {
    837       /// \brief The candidate is a function declaration.
    838       CK_Function,
    839       /// \brief The candidate is a function template.
    840       CK_FunctionTemplate,
    841       /// \brief The "candidate" is actually a variable, expression, or block
    842       /// for which we only have a function prototype.
    843       CK_FunctionType
    844     };
    845 
    846   private:
    847     /// \brief The kind of overload candidate.
    848     CandidateKind Kind;
    849 
    850     union {
    851       /// \brief The function overload candidate, available when
    852       /// Kind == CK_Function.
    853       FunctionDecl *Function;
    854 
    855       /// \brief The function template overload candidate, available when
    856       /// Kind == CK_FunctionTemplate.
    857       FunctionTemplateDecl *FunctionTemplate;
    858 
    859       /// \brief The function type that describes the entity being called,
    860       /// when Kind == CK_FunctionType.
    861       const FunctionType *Type;
    862     };
    863 
    864   public:
    865     OverloadCandidate(FunctionDecl *Function)
    866       : Kind(CK_Function), Function(Function) { }
    867 
    868     OverloadCandidate(FunctionTemplateDecl *FunctionTemplateDecl)
    869       : Kind(CK_FunctionTemplate), FunctionTemplate(FunctionTemplateDecl) { }
    870 
    871     OverloadCandidate(const FunctionType *Type)
    872       : Kind(CK_FunctionType), Type(Type) { }
    873 
    874     /// \brief Determine the kind of overload candidate.
    875     CandidateKind getKind() const { return Kind; }
    876 
    877     /// \brief Retrieve the function overload candidate or the templated
    878     /// function declaration for a function template.
    879     FunctionDecl *getFunction() const;
    880 
    881     /// \brief Retrieve the function template overload candidate.
    882     FunctionTemplateDecl *getFunctionTemplate() const {
    883       assert(getKind() == CK_FunctionTemplate && "Not a function template");
    884       return FunctionTemplate;
    885     }
    886 
    887     /// \brief Retrieve the function type of the entity, regardless of how the
    888     /// function is stored.
    889     const FunctionType *getFunctionType() const;
    890 
    891     /// \brief Create a new code-completion string that describes the function
    892     /// signature of this overload candidate.
    893     CodeCompletionString *CreateSignatureString(unsigned CurrentArg,
    894                                                 Sema &S,
    895                                       CodeCompletionAllocator &Allocator,
    896                                       CodeCompletionTUInfo &CCTUInfo) const;
    897   };
    898 
    899   CodeCompleteConsumer(const CodeCompleteOptions &CodeCompleteOpts,
    900                        bool OutputIsBinary)
    901     : CodeCompleteOpts(CodeCompleteOpts), OutputIsBinary(OutputIsBinary)
    902   { }
    903 
    904   /// \brief Whether the code-completion consumer wants to see macros.
    905   bool includeMacros() const {
    906     return CodeCompleteOpts.IncludeMacros;
    907   }
    908 
    909   /// \brief Whether the code-completion consumer wants to see code patterns.
    910   bool includeCodePatterns() const {
    911     return CodeCompleteOpts.IncludeCodePatterns;
    912   }
    913 
    914   /// \brief Whether to include global (top-level) declaration results.
    915   bool includeGlobals() const {
    916     return CodeCompleteOpts.IncludeGlobals;
    917   }
    918 
    919   /// \brief Whether to include brief documentation comments within the set of
    920   /// code completions returned.
    921   bool includeBriefComments() const {
    922     return CodeCompleteOpts.IncludeBriefComments;
    923   }
    924 
    925   /// \brief Determine whether the output of this consumer is binary.
    926   bool isOutputBinary() const { return OutputIsBinary; }
    927 
    928   /// \brief Deregisters and destroys this code-completion consumer.
    929   virtual ~CodeCompleteConsumer();
    930 
    931   /// \name Code-completion callbacks
    932   //@{
    933   /// \brief Process the finalized code-completion results.
    934   virtual void ProcessCodeCompleteResults(Sema &S,
    935                                           CodeCompletionContext Context,
    936                                           CodeCompletionResult *Results,
    937                                           unsigned NumResults) { }
    938 
    939   /// \param S the semantic-analyzer object for which code-completion is being
    940   /// done.
    941   ///
    942   /// \param CurrentArg the index of the current argument.
    943   ///
    944   /// \param Candidates an array of overload candidates.
    945   ///
    946   /// \param NumCandidates the number of overload candidates
    947   virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
    948                                          OverloadCandidate *Candidates,
    949                                          unsigned NumCandidates) { }
    950   //@}
    951 
    952   /// \brief Retrieve the allocator that will be used to allocate
    953   /// code completion strings.
    954   virtual CodeCompletionAllocator &getAllocator() = 0;
    955 
    956   virtual CodeCompletionTUInfo &getCodeCompletionTUInfo() = 0;
    957 };
    958 
    959 /// \brief A simple code-completion consumer that prints the results it
    960 /// receives in a simple format.
    961 class PrintingCodeCompleteConsumer : public CodeCompleteConsumer {
    962   /// \brief The raw output stream.
    963   raw_ostream &OS;
    964 
    965   CodeCompletionTUInfo CCTUInfo;
    966 
    967 public:
    968   /// \brief Create a new printing code-completion consumer that prints its
    969   /// results to the given raw output stream.
    970   PrintingCodeCompleteConsumer(const CodeCompleteOptions &CodeCompleteOpts,
    971                                raw_ostream &OS)
    972     : CodeCompleteConsumer(CodeCompleteOpts, false), OS(OS),
    973       CCTUInfo(new GlobalCodeCompletionAllocator) {}
    974 
    975   /// \brief Prints the finalized code-completion results.
    976   virtual void ProcessCodeCompleteResults(Sema &S,
    977                                           CodeCompletionContext Context,
    978                                           CodeCompletionResult *Results,
    979                                           unsigned NumResults);
    980 
    981   virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
    982                                          OverloadCandidate *Candidates,
    983                                          unsigned NumCandidates);
    984 
    985   virtual CodeCompletionAllocator &getAllocator() {
    986     return CCTUInfo.getAllocator();
    987   }
    988 
    989   virtual CodeCompletionTUInfo &getCodeCompletionTUInfo() { return CCTUInfo; }
    990 };
    991 
    992 } // end namespace clang
    993 
    994 #endif // LLVM_CLANG_SEMA_CODECOMPLETECONSUMER_H
    995