CodeCompleteConsumer.h revision b3958476b21702a15f64f09d2862506d03dffe7b
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
25namespace clang {
26
27class Decl;
28
29/// \brief Default priority values for code-completion results based
30/// on their kind.
31enum {
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.
70enum {
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.
95enum {
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.
107enum 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.
120SimplifiedTypeClass 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.
124QualType getDeclUsageType(ASTContext &C, 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.
135unsigned 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.
141CXCursorKind getCursorKindForDecl(const Decl *D);
142
143class FunctionDecl;
144class FunctionType;
145class FunctionTemplateDecl;
146class IdentifierInfo;
147class NamedDecl;
148class NestedNameSpecifier;
149class Sema;
150
151/// \brief The context in which code completion occurred, so that the
152/// code-completion consumer can process the results accordingly.
153class CodeCompletionContext {
154public:
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 expcted.
249    CCC_ObjCInstanceMessage,
250    /// \brief Code completion where an Objective-C class message is expected.
251    CCC_ObjCClassMessage,
252    /// \brief Code completion where the name of an Objective-C class is
253    /// expected.
254    CCC_ObjCInterfaceName,
255    /// \brief Code completion where an Objective-C category name is expected.
256    CCC_ObjCCategoryName,
257    /// \brief An unknown context, in which we are recovering from a parsing
258    /// error and don't know which completions we should give.
259    CCC_Recovery
260  };
261
262private:
263  enum Kind Kind;
264
265  /// \brief The type that would prefer to see at this point (e.g., the type
266  /// of an initializer or function parameter).
267  QualType PreferredType;
268
269  /// \brief The type of the base object in a member access expression.
270  QualType BaseType;
271
272  /// \brief The identifiers for Objective-C selector parts.
273  IdentifierInfo **SelIdents;
274
275  /// \brief The number of Objective-C selector parts.
276  unsigned NumSelIdents;
277
278public:
279  /// \brief Construct a new code-completion context of the given kind.
280  CodeCompletionContext(enum Kind Kind) : Kind(Kind), SelIdents(NULL),
281                                          NumSelIdents(0) { }
282
283  /// \brief Construct a new code-completion context of the given kind.
284  CodeCompletionContext(enum Kind Kind, QualType T,
285                        IdentifierInfo **SelIdents = NULL,
286                        unsigned NumSelIdents = 0) : Kind(Kind),
287                                                     SelIdents(SelIdents),
288                                                    NumSelIdents(NumSelIdents) {
289    if (Kind == CCC_DotMemberAccess || Kind == CCC_ArrowMemberAccess ||
290        Kind == CCC_ObjCPropertyAccess || Kind == CCC_ObjCClassMessage ||
291        Kind == CCC_ObjCInstanceMessage)
292      BaseType = T;
293    else
294      PreferredType = T;
295  }
296
297  /// \brief Retrieve the kind of code-completion context.
298  enum Kind getKind() const { return Kind; }
299
300  /// \brief Retrieve the type that this expression would prefer to have, e.g.,
301  /// if the expression is a variable initializer or a function argument, the
302  /// type of the corresponding variable or function parameter.
303  QualType getPreferredType() const { return PreferredType; }
304
305  /// \brief Retrieve the type of the base object in a member-access
306  /// expression.
307  QualType getBaseType() const { return BaseType; }
308
309  /// \brief Retrieve the Objective-C selector identifiers.
310  IdentifierInfo **getSelIdents() const { return SelIdents; }
311
312  /// \brief Retrieve the number of Objective-C selector identifiers.
313  unsigned getNumSelIdents() const { return NumSelIdents; }
314
315  /// \brief Determines whether we want C++ constructors as results within this
316  /// context.
317  bool wantConstructorResults() const;
318};
319
320
321/// \brief A "string" used to describe how code completion can
322/// be performed for an entity.
323///
324/// A code completion string typically shows how a particular entity can be
325/// used. For example, the code completion string for a function would show
326/// the syntax to call it, including the parentheses, placeholders for the
327/// arguments, etc.
328class CodeCompletionString {
329public:
330  /// \brief The different kinds of "chunks" that can occur within a code
331  /// completion string.
332  enum ChunkKind {
333    /// \brief The piece of text that the user is expected to type to
334    /// match the code-completion string, typically a keyword or the name of a
335    /// declarator or macro.
336    CK_TypedText,
337    /// \brief A piece of text that should be placed in the buffer, e.g.,
338    /// parentheses or a comma in a function call.
339    CK_Text,
340    /// \brief A code completion string that is entirely optional. For example,
341    /// an optional code completion string that describes the default arguments
342    /// in a function call.
343    CK_Optional,
344    /// \brief A string that acts as a placeholder for, e.g., a function
345    /// call argument.
346    CK_Placeholder,
347    /// \brief A piece of text that describes something about the result but
348    /// should not be inserted into the buffer.
349    CK_Informative,
350    /// \brief A piece of text that describes the type of an entity or, for
351    /// functions and methods, the return type.
352    CK_ResultType,
353    /// \brief A piece of text that describes the parameter that corresponds
354    /// to the code-completion location within a function call, message send,
355    /// macro invocation, etc.
356    CK_CurrentParameter,
357    /// \brief A left parenthesis ('(').
358    CK_LeftParen,
359    /// \brief A right parenthesis (')').
360    CK_RightParen,
361    /// \brief A left bracket ('[').
362    CK_LeftBracket,
363    /// \brief A right bracket (']').
364    CK_RightBracket,
365    /// \brief A left brace ('{').
366    CK_LeftBrace,
367    /// \brief A right brace ('}').
368    CK_RightBrace,
369    /// \brief A left angle bracket ('<').
370    CK_LeftAngle,
371    /// \brief A right angle bracket ('>').
372    CK_RightAngle,
373    /// \brief A comma separator (',').
374    CK_Comma,
375    /// \brief A colon (':').
376    CK_Colon,
377    /// \brief A semicolon (';').
378    CK_SemiColon,
379    /// \brief An '=' sign.
380    CK_Equal,
381    /// \brief Horizontal whitespace (' ').
382    CK_HorizontalSpace,
383    /// \brief Vertical whitespace ('\\n' or '\\r\\n', depending on the
384    /// platform).
385    CK_VerticalSpace
386  };
387
388  /// \brief One piece of the code completion string.
389  struct Chunk {
390    /// \brief The kind of data stored in this piece of the code completion
391    /// string.
392    ChunkKind Kind;
393
394    union {
395      /// \brief The text string associated with a CK_Text, CK_Placeholder,
396      /// CK_Informative, or CK_Comma chunk.
397      /// The string is owned by the chunk and will be deallocated
398      /// (with delete[]) when the chunk is destroyed.
399      const char *Text;
400
401      /// \brief The code completion string associated with a CK_Optional chunk.
402      /// The optional code completion string is owned by the chunk, and will
403      /// be deallocated (with delete) when the chunk is destroyed.
404      CodeCompletionString *Optional;
405    };
406
407    Chunk() : Kind(CK_Text), Text(0) { }
408
409    explicit Chunk(ChunkKind Kind, const char *Text = "");
410
411    /// \brief Create a new text chunk.
412    static Chunk CreateText(const char *Text);
413
414    /// \brief Create a new optional chunk.
415    static Chunk CreateOptional(CodeCompletionString *Optional);
416
417    /// \brief Create a new placeholder chunk.
418    static Chunk CreatePlaceholder(const char *Placeholder);
419
420    /// \brief Create a new informative chunk.
421    static Chunk CreateInformative(const char *Informative);
422
423    /// \brief Create a new result type chunk.
424    static Chunk CreateResultType(const char *ResultType);
425
426    /// \brief Create a new current-parameter chunk.
427    static Chunk CreateCurrentParameter(const char *CurrentParameter);
428  };
429
430private:
431  /// \brief The number of chunks stored in this string.
432  unsigned NumChunks : 16;
433
434  /// \brief The number of annotations for this code-completion result.
435  unsigned NumAnnotations : 16;
436
437  /// \brief The priority of this code-completion string.
438  unsigned Priority : 16;
439
440  /// \brief The availability of this code-completion result.
441  unsigned Availability : 2;
442
443  /// \brief The name of the parent context.
444  StringRef ParentName;
445
446  /// \brief A brief documentation comment attached to the declaration of
447  /// entity being completed by this result.
448  const char *BriefComment;
449
450  CodeCompletionString(const CodeCompletionString &) LLVM_DELETED_FUNCTION;
451  void operator=(const CodeCompletionString &) LLVM_DELETED_FUNCTION;
452
453  CodeCompletionString(const Chunk *Chunks, unsigned NumChunks,
454                       unsigned Priority, CXAvailabilityKind Availability,
455                       const char **Annotations, unsigned NumAnnotations,
456                       StringRef ParentName,
457                       const char *BriefComment);
458  ~CodeCompletionString() { }
459
460  friend class CodeCompletionBuilder;
461  friend class CodeCompletionResult;
462
463public:
464  typedef const Chunk *iterator;
465  iterator begin() const { return reinterpret_cast<const Chunk *>(this + 1); }
466  iterator end() const { return begin() + NumChunks; }
467  bool empty() const { return NumChunks == 0; }
468  unsigned size() const { return NumChunks; }
469
470  const Chunk &operator[](unsigned I) const {
471    assert(I < size() && "Chunk index out-of-range");
472    return begin()[I];
473  }
474
475  /// \brief Returns the text in the TypedText chunk.
476  const char *getTypedText() const;
477
478  /// \brief Retrieve the priority of this code completion result.
479  unsigned getPriority() const { return Priority; }
480
481  /// \brief Retrieve the availability of this code completion result.
482  unsigned getAvailability() const { return Availability; }
483
484  /// \brief Retrieve the number of annotations for this code completion result.
485  unsigned getAnnotationCount() const;
486
487  /// \brief Retrieve the annotation string specified by \c AnnotationNr.
488  const char *getAnnotation(unsigned AnnotationNr) const;
489
490  /// \brief Retrieve the name of the parent context.
491  StringRef getParentContextName() const {
492    return ParentName;
493  }
494
495  const char *getBriefComment() const {
496    return BriefComment;
497  }
498
499  /// \brief Retrieve a string representation of the code completion string,
500  /// which is mainly useful for debugging.
501  std::string getAsString() const;
502};
503
504/// \brief An allocator used specifically for the purpose of code completion.
505class CodeCompletionAllocator : public llvm::BumpPtrAllocator {
506public:
507  /// \brief Copy the given string into this allocator.
508  const char *CopyString(StringRef String);
509
510  /// \brief Copy the given string into this allocator.
511  const char *CopyString(Twine String);
512
513  // \brief Copy the given string into this allocator.
514  const char *CopyString(const char *String) {
515    return CopyString(StringRef(String));
516  }
517
518  /// \brief Copy the given string into this allocator.
519  const char *CopyString(const std::string &String) {
520    return CopyString(StringRef(String));
521  }
522};
523
524/// \brief Allocator for a cached set of global code completions.
525class GlobalCodeCompletionAllocator
526  : public CodeCompletionAllocator,
527    public RefCountedBase<GlobalCodeCompletionAllocator>
528{
529
530};
531
532class CodeCompletionTUInfo {
533  llvm::DenseMap<DeclContext *, StringRef> ParentNames;
534  IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> AllocatorRef;
535
536public:
537  explicit CodeCompletionTUInfo(
538                    IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> Allocator)
539    : AllocatorRef(Allocator) { }
540
541  IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> getAllocatorRef() const {
542    return AllocatorRef;
543  }
544  CodeCompletionAllocator &getAllocator() const {
545    assert(AllocatorRef);
546    return *AllocatorRef;
547  }
548
549  StringRef getParentName(DeclContext *DC);
550};
551
552} // end namespace clang
553
554namespace llvm {
555  template <> struct isPodLike<clang::CodeCompletionString::Chunk> {
556    static const bool value = true;
557  };
558}
559
560namespace clang {
561
562/// \brief A builder class used to construct new code-completion strings.
563class CodeCompletionBuilder {
564public:
565  typedef CodeCompletionString::Chunk Chunk;
566
567private:
568  CodeCompletionAllocator &Allocator;
569  CodeCompletionTUInfo &CCTUInfo;
570  unsigned Priority;
571  CXAvailabilityKind Availability;
572  StringRef ParentName;
573  const char *BriefComment;
574
575  /// \brief The chunks stored in this string.
576  SmallVector<Chunk, 4> Chunks;
577
578  SmallVector<const char *, 2> Annotations;
579
580public:
581  CodeCompletionBuilder(CodeCompletionAllocator &Allocator,
582                        CodeCompletionTUInfo &CCTUInfo)
583    : Allocator(Allocator), CCTUInfo(CCTUInfo),
584      Priority(0), Availability(CXAvailability_Available),
585      BriefComment(NULL) { }
586
587  CodeCompletionBuilder(CodeCompletionAllocator &Allocator,
588                        CodeCompletionTUInfo &CCTUInfo,
589                        unsigned Priority, CXAvailabilityKind Availability)
590    : Allocator(Allocator), CCTUInfo(CCTUInfo),
591      Priority(Priority), Availability(Availability),
592      BriefComment(NULL) { }
593
594  /// \brief Retrieve the allocator into which the code completion
595  /// strings should be allocated.
596  CodeCompletionAllocator &getAllocator() const { return Allocator; }
597
598  CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; }
599
600  /// \brief Take the resulting completion string.
601  ///
602  /// This operation can only be performed once.
603  CodeCompletionString *TakeString();
604
605  /// \brief Add a new typed-text chunk.
606  void AddTypedTextChunk(const char *Text);
607
608  /// \brief Add a new text chunk.
609  void AddTextChunk(const char *Text);
610
611  /// \brief Add a new optional chunk.
612  void AddOptionalChunk(CodeCompletionString *Optional);
613
614  /// \brief Add a new placeholder chunk.
615  void AddPlaceholderChunk(const char *Placeholder);
616
617  /// \brief Add a new informative chunk.
618  void AddInformativeChunk(const char *Text);
619
620  /// \brief Add a new result-type chunk.
621  void AddResultTypeChunk(const char *ResultType);
622
623  /// \brief Add a new current-parameter chunk.
624  void AddCurrentParameterChunk(const char *CurrentParameter);
625
626  /// \brief Add a new chunk.
627  void AddChunk(CodeCompletionString::ChunkKind CK, const char *Text = "");
628
629  void AddAnnotation(const char *A) { Annotations.push_back(A); }
630
631  /// \brief Add the parent context information to this code completion.
632  void addParentContext(DeclContext *DC);
633
634  void addBriefComment(StringRef Comment);
635
636  StringRef getParentName() const { return ParentName; }
637};
638
639/// \brief Captures a result of code completion.
640class CodeCompletionResult {
641public:
642  /// \brief Describes the kind of result generated.
643  enum ResultKind {
644    RK_Declaration = 0, ///< Refers to a declaration
645    RK_Keyword,         ///< Refers to a keyword or symbol.
646    RK_Macro,           ///< Refers to a macro
647    RK_Pattern          ///< Refers to a precomputed pattern.
648  };
649
650  /// \brief When Kind == RK_Declaration or RK_Pattern, the declaration we are
651  /// referring to. In the latter case, the declaration might be NULL.
652  NamedDecl *Declaration;
653
654  union {
655    /// \brief When Kind == RK_Keyword, the string representing the keyword
656    /// or symbol's spelling.
657    const char *Keyword;
658
659    /// \brief When Kind == RK_Pattern, the code-completion string that
660    /// describes the completion text to insert.
661    CodeCompletionString *Pattern;
662
663    /// \brief When Kind == RK_Macro, the identifier that refers to a macro.
664    const IdentifierInfo *Macro;
665  };
666
667  /// \brief The priority of this particular code-completion result.
668  unsigned Priority;
669
670  /// \brief Specifies which parameter (of a function, Objective-C method,
671  /// macro, etc.) we should start with when formatting the result.
672  unsigned StartParameter;
673
674  /// \brief The kind of result stored here.
675  ResultKind Kind;
676
677  /// \brief The cursor kind that describes this result.
678  CXCursorKind CursorKind;
679
680  /// \brief The availability of this result.
681  CXAvailabilityKind Availability;
682
683  /// \brief Whether this result is hidden by another name.
684  bool Hidden : 1;
685
686  /// \brief Whether this result was found via lookup into a base class.
687  bool QualifierIsInformative : 1;
688
689  /// \brief Whether this declaration is the beginning of a
690  /// nested-name-specifier and, therefore, should be followed by '::'.
691  bool StartsNestedNameSpecifier : 1;
692
693  /// \brief Whether all parameters (of a function, Objective-C
694  /// method, etc.) should be considered "informative".
695  bool AllParametersAreInformative : 1;
696
697  /// \brief Whether we're completing a declaration of the given entity,
698  /// rather than a use of that entity.
699  bool DeclaringEntity : 1;
700
701  /// \brief If the result should have a nested-name-specifier, this is it.
702  /// When \c QualifierIsInformative, the nested-name-specifier is
703  /// informative rather than required.
704  NestedNameSpecifier *Qualifier;
705
706  /// \brief Build a result that refers to a declaration.
707  CodeCompletionResult(NamedDecl *Declaration,
708                       NestedNameSpecifier *Qualifier = 0,
709                       bool QualifierIsInformative = false,
710                       bool Accessible = true)
711    : Declaration(Declaration), Priority(getPriorityFromDecl(Declaration)),
712      StartParameter(0), Kind(RK_Declaration),
713      Availability(CXAvailability_Available), Hidden(false),
714      QualifierIsInformative(QualifierIsInformative),
715      StartsNestedNameSpecifier(false), AllParametersAreInformative(false),
716      DeclaringEntity(false), Qualifier(Qualifier) {
717    computeCursorKindAndAvailability(Accessible);
718  }
719
720  /// \brief Build a result that refers to a keyword or symbol.
721  CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_Keyword)
722    : Declaration(0), Keyword(Keyword), Priority(Priority), StartParameter(0),
723      Kind(RK_Keyword), CursorKind(CXCursor_NotImplemented),
724      Availability(CXAvailability_Available), Hidden(false),
725      QualifierIsInformative(0), StartsNestedNameSpecifier(false),
726      AllParametersAreInformative(false), DeclaringEntity(false), Qualifier(0)
727  {
728  }
729
730  /// \brief Build a result that refers to a macro.
731  CodeCompletionResult(const IdentifierInfo *Macro,
732                       unsigned Priority = CCP_Macro)
733    : Declaration(0), Macro(Macro), Priority(Priority), StartParameter(0),
734      Kind(RK_Macro), CursorKind(CXCursor_MacroDefinition),
735      Availability(CXAvailability_Available), Hidden(false),
736      QualifierIsInformative(0), StartsNestedNameSpecifier(false),
737      AllParametersAreInformative(false), DeclaringEntity(false), Qualifier(0)
738  {
739  }
740
741  /// \brief Build a result that refers to a pattern.
742  CodeCompletionResult(CodeCompletionString *Pattern,
743                       unsigned Priority = CCP_CodePattern,
744                       CXCursorKind CursorKind = CXCursor_NotImplemented,
745                   CXAvailabilityKind Availability = CXAvailability_Available,
746                       NamedDecl *D = 0)
747    : Declaration(D), Pattern(Pattern), Priority(Priority), StartParameter(0),
748      Kind(RK_Pattern), CursorKind(CursorKind), Availability(Availability),
749      Hidden(false), QualifierIsInformative(0),
750      StartsNestedNameSpecifier(false), AllParametersAreInformative(false),
751      DeclaringEntity(false), Qualifier(0)
752  {
753  }
754
755  /// \brief Build a result that refers to a pattern with an associated
756  /// declaration.
757  CodeCompletionResult(CodeCompletionString *Pattern, NamedDecl *D,
758                       unsigned Priority)
759    : Declaration(D), Pattern(Pattern), Priority(Priority), StartParameter(0),
760      Kind(RK_Pattern), Availability(CXAvailability_Available), Hidden(false),
761      QualifierIsInformative(false), StartsNestedNameSpecifier(false),
762      AllParametersAreInformative(false), DeclaringEntity(false), Qualifier(0) {
763    computeCursorKindAndAvailability();
764  }
765
766  /// \brief Retrieve the declaration stored in this result.
767  NamedDecl *getDeclaration() const {
768    assert(Kind == RK_Declaration && "Not a declaration result");
769    return Declaration;
770  }
771
772  /// \brief Retrieve the keyword stored in this result.
773  const char *getKeyword() const {
774    assert(Kind == RK_Keyword && "Not a keyword result");
775    return Keyword;
776  }
777
778  /// \brief Create a new code-completion string that describes how to insert
779  /// this result into a program.
780  ///
781  /// \param S The semantic analysis that created the result.
782  ///
783  /// \param Allocator The allocator that will be used to allocate the
784  /// string itself.
785  CodeCompletionString *CreateCodeCompletionString(Sema &S,
786                                           CodeCompletionAllocator &Allocator,
787                                           CodeCompletionTUInfo &CCTUInfo,
788                                           bool IncludeBriefComments);
789  CodeCompletionString *CreateCodeCompletionString(ASTContext &Ctx,
790                                                   Preprocessor &PP,
791                                           CodeCompletionAllocator &Allocator,
792                                           CodeCompletionTUInfo &CCTUInfo,
793                                           bool IncludeBriefComments);
794
795  /// \brief Determine a base priority for the given declaration.
796  static unsigned getPriorityFromDecl(NamedDecl *ND);
797
798private:
799  void computeCursorKindAndAvailability(bool Accessible = true);
800};
801
802bool operator<(const CodeCompletionResult &X, const CodeCompletionResult &Y);
803
804inline bool operator>(const CodeCompletionResult &X,
805                      const CodeCompletionResult &Y) {
806  return Y < X;
807}
808
809inline bool operator<=(const CodeCompletionResult &X,
810                      const CodeCompletionResult &Y) {
811  return !(Y < X);
812}
813
814inline bool operator>=(const CodeCompletionResult &X,
815                       const CodeCompletionResult &Y) {
816  return !(X < Y);
817}
818
819
820raw_ostream &operator<<(raw_ostream &OS,
821                              const CodeCompletionString &CCS);
822
823/// \brief Abstract interface for a consumer of code-completion
824/// information.
825class CodeCompleteConsumer {
826protected:
827  const CodeCompleteOptions CodeCompleteOpts;
828
829  /// \brief Whether the output format for the code-completion consumer is
830  /// binary.
831  bool OutputIsBinary;
832
833public:
834  class OverloadCandidate {
835  public:
836    /// \brief Describes the type of overload candidate.
837    enum CandidateKind {
838      /// \brief The candidate is a function declaration.
839      CK_Function,
840      /// \brief The candidate is a function template.
841      CK_FunctionTemplate,
842      /// \brief The "candidate" is actually a variable, expression, or block
843      /// for which we only have a function prototype.
844      CK_FunctionType
845    };
846
847  private:
848    /// \brief The kind of overload candidate.
849    CandidateKind Kind;
850
851    union {
852      /// \brief The function overload candidate, available when
853      /// Kind == CK_Function.
854      FunctionDecl *Function;
855
856      /// \brief The function template overload candidate, available when
857      /// Kind == CK_FunctionTemplate.
858      FunctionTemplateDecl *FunctionTemplate;
859
860      /// \brief The function type that describes the entity being called,
861      /// when Kind == CK_FunctionType.
862      const FunctionType *Type;
863    };
864
865  public:
866    OverloadCandidate(FunctionDecl *Function)
867      : Kind(CK_Function), Function(Function) { }
868
869    OverloadCandidate(FunctionTemplateDecl *FunctionTemplateDecl)
870      : Kind(CK_FunctionTemplate), FunctionTemplate(FunctionTemplateDecl) { }
871
872    OverloadCandidate(const FunctionType *Type)
873      : Kind(CK_FunctionType), Type(Type) { }
874
875    /// \brief Determine the kind of overload candidate.
876    CandidateKind getKind() const { return Kind; }
877
878    /// \brief Retrieve the function overload candidate or the templated
879    /// function declaration for a function template.
880    FunctionDecl *getFunction() const;
881
882    /// \brief Retrieve the function template overload candidate.
883    FunctionTemplateDecl *getFunctionTemplate() const {
884      assert(getKind() == CK_FunctionTemplate && "Not a function template");
885      return FunctionTemplate;
886    }
887
888    /// \brief Retrieve the function type of the entity, regardless of how the
889    /// function is stored.
890    const FunctionType *getFunctionType() const;
891
892    /// \brief Create a new code-completion string that describes the function
893    /// signature of this overload candidate.
894    CodeCompletionString *CreateSignatureString(unsigned CurrentArg,
895                                                Sema &S,
896                                      CodeCompletionAllocator &Allocator,
897                                      CodeCompletionTUInfo &CCTUInfo) const;
898  };
899
900  CodeCompleteConsumer(const CodeCompleteOptions &CodeCompleteOpts,
901                       bool OutputIsBinary)
902    : CodeCompleteOpts(CodeCompleteOpts), OutputIsBinary(OutputIsBinary)
903  { }
904
905  /// \brief Whether the code-completion consumer wants to see macros.
906  bool includeMacros() const {
907    return CodeCompleteOpts.IncludeMacros;
908  }
909
910  /// \brief Whether the code-completion consumer wants to see code patterns.
911  bool includeCodePatterns() const {
912    return CodeCompleteOpts.IncludeCodePatterns;
913  }
914
915  /// \brief Whether to include global (top-level) declaration results.
916  bool includeGlobals() const {
917    return CodeCompleteOpts.IncludeGlobals;
918  }
919
920  /// \brief Whether to include brief documentation comments within the set of
921  /// code completions returned.
922  bool includeBriefComments() const {
923    return CodeCompleteOpts.IncludeBriefComments;
924  }
925
926  /// \brief Determine whether the output of this consumer is binary.
927  bool isOutputBinary() const { return OutputIsBinary; }
928
929  /// \brief Deregisters and destroys this code-completion consumer.
930  virtual ~CodeCompleteConsumer();
931
932  /// \name Code-completion callbacks
933  //@{
934  /// \brief Process the finalized code-completion results.
935  virtual void ProcessCodeCompleteResults(Sema &S,
936                                          CodeCompletionContext Context,
937                                          CodeCompletionResult *Results,
938                                          unsigned NumResults) { }
939
940  /// \param S the semantic-analyzer object for which code-completion is being
941  /// done.
942  ///
943  /// \param CurrentArg the index of the current argument.
944  ///
945  /// \param Candidates an array of overload candidates.
946  ///
947  /// \param NumCandidates the number of overload candidates
948  virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
949                                         OverloadCandidate *Candidates,
950                                         unsigned NumCandidates) { }
951  //@}
952
953  /// \brief Retrieve the allocator that will be used to allocate
954  /// code completion strings.
955  virtual CodeCompletionAllocator &getAllocator() = 0;
956
957  virtual CodeCompletionTUInfo &getCodeCompletionTUInfo() = 0;
958};
959
960/// \brief A simple code-completion consumer that prints the results it
961/// receives in a simple format.
962class PrintingCodeCompleteConsumer : public CodeCompleteConsumer {
963  /// \brief The raw output stream.
964  raw_ostream &OS;
965
966  CodeCompletionTUInfo CCTUInfo;
967
968public:
969  /// \brief Create a new printing code-completion consumer that prints its
970  /// results to the given raw output stream.
971  PrintingCodeCompleteConsumer(const CodeCompleteOptions &CodeCompleteOpts,
972                               raw_ostream &OS)
973    : CodeCompleteConsumer(CodeCompleteOpts, false), OS(OS),
974      CCTUInfo(new GlobalCodeCompletionAllocator) {}
975
976  /// \brief Prints the finalized code-completion results.
977  virtual void ProcessCodeCompleteResults(Sema &S,
978                                          CodeCompletionContext Context,
979                                          CodeCompletionResult *Results,
980                                          unsigned NumResults);
981
982  virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
983                                         OverloadCandidate *Candidates,
984                                         unsigned NumCandidates);
985
986  virtual CodeCompletionAllocator &getAllocator() {
987    return CCTUInfo.getAllocator();
988  }
989
990  virtual CodeCompletionTUInfo &getCodeCompletionTUInfo() { return CCTUInfo; }
991};
992
993} // end namespace clang
994
995#endif // LLVM_CLANG_SEMA_CODECOMPLETECONSUMER_H
996