2010-01-06 03:32:54 +08:00
|
|
|
//===- CIndexCodeCompletion.cpp - Code Completion API hooks ---------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the Clang-C Source Indexing library hooks for
|
|
|
|
// code completion.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CIndexer.h"
|
2010-01-28 08:56:43 +08:00
|
|
|
#include "CIndexDiagnostic.h"
|
2010-04-13 03:45:50 +08:00
|
|
|
#include "clang/Basic/SourceManager.h"
|
|
|
|
#include "clang/Basic/FileManager.h"
|
2010-08-05 00:47:14 +08:00
|
|
|
#include "clang/Frontend/ASTUnit.h"
|
2010-04-13 03:45:50 +08:00
|
|
|
#include "clang/Frontend/CompilerInstance.h"
|
2010-01-28 08:56:43 +08:00
|
|
|
#include "clang/Frontend/FrontendDiagnostic.h"
|
2010-01-06 03:32:54 +08:00
|
|
|
#include "clang/Sema/CodeCompleteConsumer.h"
|
2010-08-10 04:45:32 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2010-01-06 03:32:54 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2010-08-20 07:44:10 +08:00
|
|
|
#include "llvm/Support/CrashRecoveryContext.h"
|
2010-01-06 03:32:54 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2010-08-10 04:45:32 +08:00
|
|
|
#include "llvm/Support/Timer.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2010-01-06 03:32:54 +08:00
|
|
|
#include "llvm/System/Program.h"
|
2010-07-27 00:29:14 +08:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstdio>
|
2010-01-06 03:32:54 +08:00
|
|
|
|
2010-08-10 04:45:32 +08:00
|
|
|
|
2010-04-15 09:02:28 +08:00
|
|
|
#ifdef UDP_CODE_COMPLETION_LOGGER
|
|
|
|
#include "clang/Basic/Version.h"
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
using namespace clang;
|
2010-02-17 09:42:24 +08:00
|
|
|
using namespace clang::cxstring;
|
2010-01-06 03:32:54 +08:00
|
|
|
|
2010-05-27 06:00:08 +08:00
|
|
|
namespace {
|
|
|
|
/// \brief Stored representation of a completion string.
|
|
|
|
///
|
|
|
|
/// This is the representation behind a CXCompletionString.
|
|
|
|
class CXStoredCodeCompletionString : public CodeCompletionString {
|
|
|
|
unsigned Priority;
|
2010-08-24 07:00:57 +08:00
|
|
|
CXAvailabilityKind Availability;
|
2010-05-27 06:00:08 +08:00
|
|
|
|
|
|
|
public:
|
2010-08-24 07:00:57 +08:00
|
|
|
CXStoredCodeCompletionString(unsigned Priority,
|
|
|
|
CXAvailabilityKind Availability)
|
|
|
|
: Priority(Priority), Availability(Availability) { }
|
2010-05-27 06:00:08 +08:00
|
|
|
|
|
|
|
unsigned getPriority() const { return Priority; }
|
2010-08-24 07:00:57 +08:00
|
|
|
CXAvailabilityKind getAvailability() const { return Availability; }
|
2010-05-27 06:00:08 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
enum CXCompletionChunkKind
|
|
|
|
clang_getCompletionChunkKind(CXCompletionString completion_string,
|
|
|
|
unsigned chunk_number) {
|
2010-05-27 06:00:08 +08:00
|
|
|
CXStoredCodeCompletionString *CCStr
|
|
|
|
= (CXStoredCodeCompletionString *)completion_string;
|
2010-01-06 03:32:54 +08:00
|
|
|
if (!CCStr || chunk_number >= CCStr->size())
|
|
|
|
return CXCompletionChunk_Text;
|
|
|
|
|
|
|
|
switch ((*CCStr)[chunk_number].Kind) {
|
|
|
|
case CodeCompletionString::CK_TypedText:
|
|
|
|
return CXCompletionChunk_TypedText;
|
|
|
|
case CodeCompletionString::CK_Text:
|
|
|
|
return CXCompletionChunk_Text;
|
|
|
|
case CodeCompletionString::CK_Optional:
|
|
|
|
return CXCompletionChunk_Optional;
|
|
|
|
case CodeCompletionString::CK_Placeholder:
|
|
|
|
return CXCompletionChunk_Placeholder;
|
|
|
|
case CodeCompletionString::CK_Informative:
|
|
|
|
return CXCompletionChunk_Informative;
|
|
|
|
case CodeCompletionString::CK_ResultType:
|
|
|
|
return CXCompletionChunk_ResultType;
|
|
|
|
case CodeCompletionString::CK_CurrentParameter:
|
|
|
|
return CXCompletionChunk_CurrentParameter;
|
|
|
|
case CodeCompletionString::CK_LeftParen:
|
|
|
|
return CXCompletionChunk_LeftParen;
|
|
|
|
case CodeCompletionString::CK_RightParen:
|
|
|
|
return CXCompletionChunk_RightParen;
|
|
|
|
case CodeCompletionString::CK_LeftBracket:
|
|
|
|
return CXCompletionChunk_LeftBracket;
|
|
|
|
case CodeCompletionString::CK_RightBracket:
|
|
|
|
return CXCompletionChunk_RightBracket;
|
|
|
|
case CodeCompletionString::CK_LeftBrace:
|
|
|
|
return CXCompletionChunk_LeftBrace;
|
|
|
|
case CodeCompletionString::CK_RightBrace:
|
|
|
|
return CXCompletionChunk_RightBrace;
|
|
|
|
case CodeCompletionString::CK_LeftAngle:
|
|
|
|
return CXCompletionChunk_LeftAngle;
|
|
|
|
case CodeCompletionString::CK_RightAngle:
|
|
|
|
return CXCompletionChunk_RightAngle;
|
|
|
|
case CodeCompletionString::CK_Comma:
|
|
|
|
return CXCompletionChunk_Comma;
|
Improve code completion by introducing patterns for the various C and
C++ grammatical constructs that show up in top-level (namespace-level)
declarations, member declarations, template declarations, statements,
expressions, conditions, etc. For example, we now provide a pattern
for
static_cast<type>(expr)
when we can have an expression, or
using namespace identifier;
when we can have a using directive.
Also, improves the results of code completion at the beginning of a
top-level declaration. Previously, we would see value names (function
names, global variables, etc.); now we see types, namespace names,
etc., but no values.
llvm-svn: 93134
2010-01-11 07:08:15 +08:00
|
|
|
case CodeCompletionString::CK_Colon:
|
|
|
|
return CXCompletionChunk_Colon;
|
|
|
|
case CodeCompletionString::CK_SemiColon:
|
|
|
|
return CXCompletionChunk_SemiColon;
|
|
|
|
case CodeCompletionString::CK_Equal:
|
|
|
|
return CXCompletionChunk_Equal;
|
|
|
|
case CodeCompletionString::CK_HorizontalSpace:
|
|
|
|
return CXCompletionChunk_HorizontalSpace;
|
|
|
|
case CodeCompletionString::CK_VerticalSpace:
|
|
|
|
return CXCompletionChunk_VerticalSpace;
|
2010-01-06 03:32:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Should be unreachable, but let's be careful.
|
|
|
|
return CXCompletionChunk_Text;
|
|
|
|
}
|
|
|
|
|
2010-02-17 09:42:24 +08:00
|
|
|
CXString clang_getCompletionChunkText(CXCompletionString completion_string,
|
|
|
|
unsigned chunk_number) {
|
2010-05-27 06:00:08 +08:00
|
|
|
CXStoredCodeCompletionString *CCStr
|
|
|
|
= (CXStoredCodeCompletionString *)completion_string;
|
2010-01-06 03:32:54 +08:00
|
|
|
if (!CCStr || chunk_number >= CCStr->size())
|
2010-02-17 09:42:24 +08:00
|
|
|
return createCXString(0);
|
2010-01-06 03:32:54 +08:00
|
|
|
|
|
|
|
switch ((*CCStr)[chunk_number].Kind) {
|
|
|
|
case CodeCompletionString::CK_TypedText:
|
|
|
|
case CodeCompletionString::CK_Text:
|
|
|
|
case CodeCompletionString::CK_Placeholder:
|
|
|
|
case CodeCompletionString::CK_CurrentParameter:
|
|
|
|
case CodeCompletionString::CK_Informative:
|
|
|
|
case CodeCompletionString::CK_LeftParen:
|
|
|
|
case CodeCompletionString::CK_RightParen:
|
|
|
|
case CodeCompletionString::CK_LeftBracket:
|
|
|
|
case CodeCompletionString::CK_RightBracket:
|
|
|
|
case CodeCompletionString::CK_LeftBrace:
|
|
|
|
case CodeCompletionString::CK_RightBrace:
|
|
|
|
case CodeCompletionString::CK_LeftAngle:
|
|
|
|
case CodeCompletionString::CK_RightAngle:
|
|
|
|
case CodeCompletionString::CK_Comma:
|
|
|
|
case CodeCompletionString::CK_ResultType:
|
Improve code completion by introducing patterns for the various C and
C++ grammatical constructs that show up in top-level (namespace-level)
declarations, member declarations, template declarations, statements,
expressions, conditions, etc. For example, we now provide a pattern
for
static_cast<type>(expr)
when we can have an expression, or
using namespace identifier;
when we can have a using directive.
Also, improves the results of code completion at the beginning of a
top-level declaration. Previously, we would see value names (function
names, global variables, etc.); now we see types, namespace names,
etc., but no values.
llvm-svn: 93134
2010-01-11 07:08:15 +08:00
|
|
|
case CodeCompletionString::CK_Colon:
|
|
|
|
case CodeCompletionString::CK_SemiColon:
|
|
|
|
case CodeCompletionString::CK_Equal:
|
|
|
|
case CodeCompletionString::CK_HorizontalSpace:
|
2010-02-17 09:42:24 +08:00
|
|
|
return createCXString((*CCStr)[chunk_number].Text, false);
|
2010-01-06 03:32:54 +08:00
|
|
|
|
2010-05-25 14:14:46 +08:00
|
|
|
case CodeCompletionString::CK_VerticalSpace:
|
|
|
|
// FIXME: Temporary hack until we figure out how to handle vertical space.
|
|
|
|
return createCXString(" ");
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
case CodeCompletionString::CK_Optional:
|
|
|
|
// Note: treated as an empty text block.
|
2010-02-17 09:42:24 +08:00
|
|
|
return createCXString("");
|
2010-01-06 03:32:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Should be unreachable, but let's be careful.
|
2010-02-17 09:42:24 +08:00
|
|
|
return createCXString(0);
|
2010-01-06 03:32:54 +08:00
|
|
|
}
|
|
|
|
|
2010-02-17 09:42:24 +08:00
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
CXCompletionString
|
|
|
|
clang_getCompletionChunkCompletionString(CXCompletionString completion_string,
|
|
|
|
unsigned chunk_number) {
|
2010-05-27 06:00:08 +08:00
|
|
|
CXStoredCodeCompletionString *CCStr
|
|
|
|
= (CXStoredCodeCompletionString *)completion_string;
|
2010-01-06 03:32:54 +08:00
|
|
|
if (!CCStr || chunk_number >= CCStr->size())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch ((*CCStr)[chunk_number].Kind) {
|
|
|
|
case CodeCompletionString::CK_TypedText:
|
|
|
|
case CodeCompletionString::CK_Text:
|
|
|
|
case CodeCompletionString::CK_Placeholder:
|
|
|
|
case CodeCompletionString::CK_CurrentParameter:
|
|
|
|
case CodeCompletionString::CK_Informative:
|
|
|
|
case CodeCompletionString::CK_LeftParen:
|
|
|
|
case CodeCompletionString::CK_RightParen:
|
|
|
|
case CodeCompletionString::CK_LeftBracket:
|
|
|
|
case CodeCompletionString::CK_RightBracket:
|
|
|
|
case CodeCompletionString::CK_LeftBrace:
|
|
|
|
case CodeCompletionString::CK_RightBrace:
|
|
|
|
case CodeCompletionString::CK_LeftAngle:
|
|
|
|
case CodeCompletionString::CK_RightAngle:
|
|
|
|
case CodeCompletionString::CK_Comma:
|
|
|
|
case CodeCompletionString::CK_ResultType:
|
Improve code completion by introducing patterns for the various C and
C++ grammatical constructs that show up in top-level (namespace-level)
declarations, member declarations, template declarations, statements,
expressions, conditions, etc. For example, we now provide a pattern
for
static_cast<type>(expr)
when we can have an expression, or
using namespace identifier;
when we can have a using directive.
Also, improves the results of code completion at the beginning of a
top-level declaration. Previously, we would see value names (function
names, global variables, etc.); now we see types, namespace names,
etc., but no values.
llvm-svn: 93134
2010-01-11 07:08:15 +08:00
|
|
|
case CodeCompletionString::CK_Colon:
|
|
|
|
case CodeCompletionString::CK_SemiColon:
|
|
|
|
case CodeCompletionString::CK_Equal:
|
|
|
|
case CodeCompletionString::CK_HorizontalSpace:
|
|
|
|
case CodeCompletionString::CK_VerticalSpace:
|
2010-01-06 03:32:54 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case CodeCompletionString::CK_Optional:
|
|
|
|
// Note: treated as an empty text block.
|
|
|
|
return (*CCStr)[chunk_number].Optional;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should be unreachable, but let's be careful.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned clang_getNumCompletionChunks(CXCompletionString completion_string) {
|
2010-05-27 06:00:08 +08:00
|
|
|
CXStoredCodeCompletionString *CCStr
|
|
|
|
= (CXStoredCodeCompletionString *)completion_string;
|
2010-01-06 03:32:54 +08:00
|
|
|
return CCStr? CCStr->size() : 0;
|
|
|
|
}
|
|
|
|
|
2010-05-27 06:00:08 +08:00
|
|
|
unsigned clang_getCompletionPriority(CXCompletionString completion_string) {
|
|
|
|
CXStoredCodeCompletionString *CCStr
|
|
|
|
= (CXStoredCodeCompletionString *)completion_string;
|
2010-05-28 02:35:05 +08:00
|
|
|
return CCStr? CCStr->getPriority() : unsigned(CCP_Unlikely);
|
2010-05-27 06:00:08 +08:00
|
|
|
}
|
|
|
|
|
2010-08-24 07:00:57 +08:00
|
|
|
enum CXAvailabilityKind
|
|
|
|
clang_getCompletionAvailability(CXCompletionString completion_string) {
|
|
|
|
CXStoredCodeCompletionString *CCStr
|
|
|
|
= (CXStoredCodeCompletionString *)completion_string;
|
|
|
|
return CCStr? CCStr->getAvailability() : CXAvailability_Available;
|
|
|
|
}
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
static bool ReadUnsigned(const char *&Memory, const char *MemoryEnd,
|
|
|
|
unsigned &Value) {
|
|
|
|
if (Memory + sizeof(unsigned) > MemoryEnd)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
memmove(&Value, Memory, sizeof(unsigned));
|
|
|
|
Memory += sizeof(unsigned);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief The CXCodeCompleteResults structure we allocate internally;
|
|
|
|
/// the client only sees the initial CXCodeCompleteResults structure.
|
|
|
|
struct AllocatedCXCodeCompleteResults : public CXCodeCompleteResults {
|
2010-02-19 07:07:20 +08:00
|
|
|
AllocatedCXCodeCompleteResults();
|
|
|
|
~AllocatedCXCodeCompleteResults();
|
|
|
|
|
2010-02-19 02:08:43 +08:00
|
|
|
/// \brief Diagnostics produced while performing code completion.
|
|
|
|
llvm::SmallVector<StoredDiagnostic, 8> Diagnostics;
|
|
|
|
|
2010-03-16 08:06:06 +08:00
|
|
|
/// \brief Diag object
|
2010-08-05 00:47:14 +08:00
|
|
|
llvm::IntrusiveRefCntPtr<Diagnostic> Diag;
|
2010-03-16 08:06:06 +08:00
|
|
|
|
2010-02-19 02:08:43 +08:00
|
|
|
/// \brief Language options used to adjust source locations.
|
2010-01-31 07:31:40 +08:00
|
|
|
LangOptions LangOpts;
|
2010-02-19 02:08:43 +08:00
|
|
|
|
|
|
|
/// \brief Source manager, used for diagnostics.
|
|
|
|
SourceManager SourceMgr;
|
|
|
|
|
|
|
|
/// \brief File manager, used for diagnostics.
|
|
|
|
FileManager FileMgr;
|
2010-02-19 07:35:40 +08:00
|
|
|
|
|
|
|
/// \brief Temporary files that should be removed once we have finished
|
|
|
|
/// with the code-completion results.
|
|
|
|
std::vector<llvm::sys::Path> TemporaryFiles;
|
2010-08-05 01:07:00 +08:00
|
|
|
|
|
|
|
/// \brief Temporary buffers that will be deleted once we have finished with the code-completion results.
|
|
|
|
llvm::SmallVector<const llvm::MemoryBuffer *, 1> TemporaryBuffers;
|
2010-01-06 03:32:54 +08:00
|
|
|
};
|
|
|
|
|
2010-02-19 07:07:20 +08:00
|
|
|
AllocatedCXCodeCompleteResults::AllocatedCXCodeCompleteResults()
|
2010-08-05 01:07:00 +08:00
|
|
|
: CXCodeCompleteResults(), Diag(new Diagnostic), SourceMgr(*Diag) { }
|
2010-02-19 07:07:20 +08:00
|
|
|
|
|
|
|
AllocatedCXCodeCompleteResults::~AllocatedCXCodeCompleteResults() {
|
|
|
|
for (unsigned I = 0, N = NumResults; I != N; ++I)
|
2010-05-27 06:00:08 +08:00
|
|
|
delete (CXStoredCodeCompletionString *)Results[I].CompletionString;
|
2010-02-19 07:07:20 +08:00
|
|
|
delete [] Results;
|
2010-02-19 07:35:40 +08:00
|
|
|
|
|
|
|
for (unsigned I = 0, N = TemporaryFiles.size(); I != N; ++I)
|
|
|
|
TemporaryFiles[I].eraseFromDisk();
|
2010-08-05 01:07:00 +08:00
|
|
|
for (unsigned I = 0, N = TemporaryBuffers.size(); I != N; ++I)
|
|
|
|
delete TemporaryBuffers[I];
|
2010-02-19 07:07:20 +08:00
|
|
|
}
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
CXCodeCompleteResults *clang_codeComplete(CXIndex CIdx,
|
|
|
|
const char *source_filename,
|
|
|
|
int num_command_line_args,
|
2010-09-02 00:43:19 +08:00
|
|
|
const char * const *command_line_args,
|
2010-01-06 03:32:54 +08:00
|
|
|
unsigned num_unsaved_files,
|
|
|
|
struct CXUnsavedFile *unsaved_files,
|
|
|
|
const char *complete_filename,
|
|
|
|
unsigned complete_line,
|
2010-02-19 02:08:43 +08:00
|
|
|
unsigned complete_column) {
|
2010-04-15 09:02:28 +08:00
|
|
|
#ifdef UDP_CODE_COMPLETION_LOGGER
|
|
|
|
#ifdef UDP_CODE_COMPLETION_LOGGER_PORT
|
|
|
|
const llvm::TimeRecord &StartTime = llvm::TimeRecord::getCurrentTime();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-07-27 00:29:14 +08:00
|
|
|
bool EnableLogging = getenv("LIBCLANG_CODE_COMPLETION_LOGGING") != 0;
|
2010-08-10 04:45:32 +08:00
|
|
|
|
|
|
|
llvm::OwningPtr<llvm::NamedRegionTimer> CCTimer;
|
|
|
|
if (getenv("LIBCLANG_TIMING")) {
|
|
|
|
llvm::SmallString<128> TimerName;
|
|
|
|
llvm::raw_svector_ostream TimerNameOut(TimerName);
|
2010-08-10 05:00:09 +08:00
|
|
|
TimerNameOut << "Code completion (out-of-process) @ " << complete_filename
|
|
|
|
<< ":" << complete_line << ":" << complete_column;
|
2010-08-10 04:45:32 +08:00
|
|
|
CCTimer.reset(new llvm::NamedRegionTimer(TimerNameOut.str()));
|
|
|
|
}
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
// The indexer, which is mainly used to determine where diagnostics go.
|
|
|
|
CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
|
|
|
|
|
2010-01-28 08:56:43 +08:00
|
|
|
// Configure the diagnostics.
|
|
|
|
DiagnosticOptions DiagOpts;
|
2010-04-06 07:52:57 +08:00
|
|
|
llvm::IntrusiveRefCntPtr<Diagnostic> Diags;
|
|
|
|
Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0);
|
2010-01-28 08:56:43 +08:00
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
// The set of temporary files that we've built.
|
|
|
|
std::vector<llvm::sys::Path> TemporaryFiles;
|
|
|
|
|
|
|
|
// Build up the arguments for invoking 'clang'.
|
|
|
|
std::vector<const char *> argv;
|
|
|
|
|
|
|
|
// First add the complete path to the 'clang' executable.
|
|
|
|
llvm::sys::Path ClangPath = CXXIdx->getClangPath();
|
|
|
|
argv.push_back(ClangPath.c_str());
|
|
|
|
|
2010-07-01 05:40:01 +08:00
|
|
|
// Always use Clang C++ support.
|
|
|
|
argv.push_back("-ccc-clang-cxx");
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
// Add the '-fsyntax-only' argument so that we only perform a basic
|
|
|
|
// syntax check of the code.
|
|
|
|
argv.push_back("-fsyntax-only");
|
|
|
|
|
|
|
|
// Add the appropriate '-code-completion-at=file:line:column' argument
|
|
|
|
// to perform code completion, with an "-Xclang" preceding it.
|
|
|
|
std::string code_complete_at;
|
|
|
|
code_complete_at += complete_filename;
|
|
|
|
code_complete_at += ":";
|
|
|
|
code_complete_at += llvm::utostr(complete_line);
|
|
|
|
code_complete_at += ":";
|
|
|
|
code_complete_at += llvm::utostr(complete_column);
|
|
|
|
argv.push_back("-Xclang");
|
|
|
|
argv.push_back("-code-completion-at");
|
|
|
|
argv.push_back("-Xclang");
|
|
|
|
argv.push_back(code_complete_at.c_str());
|
|
|
|
argv.push_back("-Xclang");
|
|
|
|
argv.push_back("-no-code-completion-debug-printer");
|
|
|
|
argv.push_back("-Xclang");
|
|
|
|
argv.push_back("-code-completion-macros");
|
2010-01-28 14:00:51 +08:00
|
|
|
argv.push_back("-fdiagnostics-binary");
|
|
|
|
|
2010-01-23 08:14:00 +08:00
|
|
|
// Remap any unsaved files to temporary files.
|
2010-01-06 03:32:54 +08:00
|
|
|
std::vector<std::string> RemapArgs;
|
2010-01-23 08:14:00 +08:00
|
|
|
if (RemapFiles(num_unsaved_files, unsaved_files, RemapArgs, TemporaryFiles))
|
|
|
|
return 0;
|
2010-01-06 03:32:54 +08:00
|
|
|
|
|
|
|
// The pointers into the elements of RemapArgs are stable because we
|
|
|
|
// won't be adding anything to RemapArgs after this point.
|
|
|
|
for (unsigned i = 0, e = RemapArgs.size(); i != e; ++i)
|
|
|
|
argv.push_back(RemapArgs[i].c_str());
|
|
|
|
|
|
|
|
// Add the source file name (FIXME: later, we'll want to build temporary
|
|
|
|
// file from the buffer, or just feed the source text via standard input).
|
|
|
|
if (source_filename)
|
|
|
|
argv.push_back(source_filename);
|
|
|
|
|
|
|
|
// Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
|
|
|
|
for (int i = 0; i < num_command_line_args; ++i)
|
|
|
|
if (const char *arg = command_line_args[i]) {
|
|
|
|
if (strcmp(arg, "-o") == 0) {
|
|
|
|
++i; // Also skip the matching argument.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (strcmp(arg, "-emit-ast") == 0 ||
|
|
|
|
strcmp(arg, "-c") == 0 ||
|
|
|
|
strcmp(arg, "-fsyntax-only") == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep the argument.
|
|
|
|
argv.push_back(arg);
|
|
|
|
}
|
|
|
|
|
2010-07-27 00:29:14 +08:00
|
|
|
if (EnableLogging) {
|
|
|
|
std::string Log = ClangPath.str();
|
|
|
|
for (unsigned I = 0, N = argv.size(); I != N; ++I) {
|
|
|
|
Log += ' ';
|
|
|
|
Log += argv[I];
|
|
|
|
}
|
|
|
|
fprintf(stderr, "libclang (Code Completion): %s\n", Log.c_str());
|
|
|
|
}
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
// Add the null terminator.
|
|
|
|
argv.push_back(NULL);
|
|
|
|
|
2010-01-28 14:00:51 +08:00
|
|
|
// Generate a temporary name for the code-completion results file.
|
2010-03-14 05:22:49 +08:00
|
|
|
char tmpFile[L_tmpnam];
|
|
|
|
char *tmpFileName = tmpnam(tmpFile);
|
|
|
|
llvm::sys::Path ResultsFile(tmpFileName);
|
2010-01-06 03:32:54 +08:00
|
|
|
TemporaryFiles.push_back(ResultsFile);
|
|
|
|
|
2010-01-28 14:00:51 +08:00
|
|
|
// Generate a temporary name for the diagnostics file.
|
2010-03-14 05:22:49 +08:00
|
|
|
char tmpFileResults[L_tmpnam];
|
|
|
|
char *tmpResultsFileName = tmpnam(tmpFileResults);
|
|
|
|
llvm::sys::Path DiagnosticsFile(tmpResultsFileName);
|
2010-01-28 14:00:51 +08:00
|
|
|
TemporaryFiles.push_back(DiagnosticsFile);
|
|
|
|
|
2010-07-27 00:29:14 +08:00
|
|
|
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
// Invoke 'clang'.
|
|
|
|
llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
|
|
|
|
// on Unix or NUL (Windows).
|
|
|
|
std::string ErrMsg;
|
2010-01-28 14:00:51 +08:00
|
|
|
const llvm::sys::Path *Redirects[] = { &DevNull, &ResultsFile,
|
|
|
|
&DiagnosticsFile, 0 };
|
2010-01-06 03:32:54 +08:00
|
|
|
llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
|
|
|
|
/* redirects */ &Redirects[0],
|
|
|
|
/* secondsToWait */ 0,
|
|
|
|
/* memoryLimits */ 0, &ErrMsg);
|
|
|
|
|
2010-01-28 08:56:43 +08:00
|
|
|
if (!ErrMsg.empty()) {
|
|
|
|
std::string AllArgs;
|
2010-01-06 03:32:54 +08:00
|
|
|
for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
|
2010-01-28 08:56:43 +08:00
|
|
|
I != E; ++I) {
|
|
|
|
AllArgs += ' ';
|
2010-01-06 03:32:54 +08:00
|
|
|
if (*I)
|
2010-01-28 08:56:43 +08:00
|
|
|
AllArgs += *I;
|
2010-01-06 03:32:54 +08:00
|
|
|
}
|
2010-01-28 08:56:43 +08:00
|
|
|
|
2010-02-24 04:23:45 +08:00
|
|
|
Diags->Report(diag::err_fe_invoking) << AllArgs << ErrMsg;
|
2010-01-06 03:32:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the resulting source file to find code-completion results.
|
|
|
|
using llvm::MemoryBuffer;
|
|
|
|
using llvm::StringRef;
|
2010-02-19 02:08:43 +08:00
|
|
|
AllocatedCXCodeCompleteResults *Results = new AllocatedCXCodeCompleteResults;
|
|
|
|
Results->Results = 0;
|
|
|
|
Results->NumResults = 0;
|
|
|
|
// FIXME: Set Results->LangOpts!
|
2010-01-06 03:32:54 +08:00
|
|
|
if (MemoryBuffer *F = MemoryBuffer::getFile(ResultsFile.c_str())) {
|
|
|
|
llvm::SmallVector<CXCompletionResult, 4> CompletionResults;
|
|
|
|
StringRef Buffer = F->getBuffer();
|
|
|
|
for (const char *Str = Buffer.data(), *StrEnd = Str + Buffer.size();
|
|
|
|
Str < StrEnd;) {
|
|
|
|
unsigned KindValue;
|
|
|
|
if (ReadUnsigned(Str, StrEnd, KindValue))
|
|
|
|
break;
|
|
|
|
|
2010-05-27 06:00:08 +08:00
|
|
|
unsigned Priority;
|
|
|
|
if (ReadUnsigned(Str, StrEnd, Priority))
|
|
|
|
break;
|
|
|
|
|
2010-08-24 07:00:57 +08:00
|
|
|
unsigned Availability;
|
|
|
|
if (ReadUnsigned(Str, StrEnd, Availability))
|
|
|
|
break;
|
|
|
|
|
2010-05-27 06:00:08 +08:00
|
|
|
CXStoredCodeCompletionString *CCStr
|
2010-08-24 07:00:57 +08:00
|
|
|
= new CXStoredCodeCompletionString(Priority,
|
|
|
|
(CXAvailabilityKind)Availability);
|
2010-05-27 06:00:08 +08:00
|
|
|
if (!CCStr->Deserialize(Str, StrEnd)) {
|
|
|
|
delete CCStr;
|
2010-01-06 03:32:54 +08:00
|
|
|
continue;
|
2010-05-27 06:00:08 +08:00
|
|
|
}
|
2010-01-06 03:32:54 +08:00
|
|
|
|
|
|
|
if (!CCStr->empty()) {
|
|
|
|
// Vend the code-completion result to the caller.
|
|
|
|
CXCompletionResult Result;
|
|
|
|
Result.CursorKind = (CXCursorKind)KindValue;
|
|
|
|
Result.CompletionString = CCStr;
|
|
|
|
CompletionResults.push_back(Result);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Allocate the results.
|
|
|
|
Results->Results = new CXCompletionResult [CompletionResults.size()];
|
|
|
|
Results->NumResults = CompletionResults.size();
|
|
|
|
memcpy(Results->Results, CompletionResults.data(),
|
|
|
|
CompletionResults.size() * sizeof(CXCompletionResult));
|
2010-08-05 01:07:00 +08:00
|
|
|
Results->TemporaryBuffers.push_back(F);
|
2010-01-06 03:32:54 +08:00
|
|
|
}
|
|
|
|
|
2010-02-19 02:08:43 +08:00
|
|
|
LoadSerializedDiagnostics(DiagnosticsFile, num_unsaved_files, unsaved_files,
|
|
|
|
Results->FileMgr, Results->SourceMgr,
|
|
|
|
Results->Diagnostics);
|
|
|
|
|
2010-02-19 07:35:40 +08:00
|
|
|
// Make sure we delete temporary files when the code-completion results are
|
|
|
|
// destroyed.
|
|
|
|
Results->TemporaryFiles.swap(TemporaryFiles);
|
2010-08-05 00:47:14 +08:00
|
|
|
|
|
|
|
#ifdef UDP_CODE_COMPLETION_LOGGER
|
|
|
|
#ifdef UDP_CODE_COMPLETION_LOGGER_PORT
|
|
|
|
const llvm::TimeRecord &EndTime = llvm::TimeRecord::getCurrentTime();
|
|
|
|
llvm::SmallString<256> LogResult;
|
|
|
|
llvm::raw_svector_ostream os(LogResult);
|
|
|
|
|
|
|
|
// Figure out the language and whether or not it uses PCH.
|
|
|
|
const char *lang = 0;
|
|
|
|
bool usesPCH = false;
|
|
|
|
|
|
|
|
for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if (*I == 0)
|
|
|
|
continue;
|
|
|
|
if (strcmp(*I, "-x") == 0) {
|
|
|
|
if (I + 1 != E) {
|
|
|
|
lang = *(++I);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp(*I, "-include") == 0) {
|
|
|
|
if (I+1 != E) {
|
|
|
|
const char *arg = *(++I);
|
|
|
|
llvm::SmallString<512> pchName;
|
|
|
|
{
|
|
|
|
llvm::raw_svector_ostream os(pchName);
|
|
|
|
os << arg << ".pth";
|
|
|
|
}
|
|
|
|
pchName.push_back('\0');
|
|
|
|
struct stat stat_results;
|
|
|
|
if (stat(pchName.data(), &stat_results) == 0)
|
|
|
|
usesPCH = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
os << "{ ";
|
|
|
|
os << "\"wall\": " << (EndTime.getWallTime() - StartTime.getWallTime());
|
|
|
|
os << ", \"numRes\": " << Results->NumResults;
|
|
|
|
os << ", \"diags\": " << Results->Diagnostics.size();
|
|
|
|
os << ", \"pch\": " << (usesPCH ? "true" : "false");
|
|
|
|
os << ", \"lang\": \"" << (lang ? lang : "<unknown>") << '"';
|
|
|
|
const char *name = getlogin();
|
|
|
|
os << ", \"user\": \"" << (name ? name : "unknown") << '"';
|
|
|
|
os << ", \"clangVer\": \"" << getClangFullVersion() << '"';
|
|
|
|
os << " }";
|
|
|
|
|
|
|
|
llvm::StringRef res = os.str();
|
|
|
|
if (res.size() > 0) {
|
|
|
|
do {
|
|
|
|
// Setup the UDP socket.
|
|
|
|
struct sockaddr_in servaddr;
|
|
|
|
bzero(&servaddr, sizeof(servaddr));
|
|
|
|
servaddr.sin_family = AF_INET;
|
|
|
|
servaddr.sin_port = htons(UDP_CODE_COMPLETION_LOGGER_PORT);
|
|
|
|
if (inet_pton(AF_INET, UDP_CODE_COMPLETION_LOGGER,
|
|
|
|
&servaddr.sin_addr) <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (sockfd < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
sendto(sockfd, res.data(), res.size(), 0,
|
|
|
|
(struct sockaddr *)&servaddr, sizeof(servaddr));
|
|
|
|
close(sockfd);
|
|
|
|
}
|
|
|
|
while (false);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
2010-08-28 05:13:41 +08:00
|
|
|
clang_sortCodeCompletionResults(Results->Results, Results->NumResults);
|
2010-08-05 00:47:14 +08:00
|
|
|
return Results;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end extern "C"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class CaptureCompletionResults : public CodeCompleteConsumer {
|
|
|
|
AllocatedCXCodeCompleteResults &AllocatedResults;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit CaptureCompletionResults(AllocatedCXCodeCompleteResults &Results)
|
2010-08-15 14:18:01 +08:00
|
|
|
: CodeCompleteConsumer(true, false, true, false),
|
|
|
|
AllocatedResults(Results) { }
|
2010-08-05 00:47:14 +08:00
|
|
|
|
2010-08-12 05:23:17 +08:00
|
|
|
virtual void ProcessCodeCompleteResults(Sema &S,
|
|
|
|
CodeCompletionContext Context,
|
2010-08-25 14:19:51 +08:00
|
|
|
CodeCompletionResult *Results,
|
2010-08-05 00:47:14 +08:00
|
|
|
unsigned NumResults) {
|
|
|
|
AllocatedResults.Results = new CXCompletionResult [NumResults];
|
|
|
|
AllocatedResults.NumResults = NumResults;
|
|
|
|
for (unsigned I = 0; I != NumResults; ++I) {
|
|
|
|
CXStoredCodeCompletionString *StoredCompletion
|
2010-08-24 07:00:57 +08:00
|
|
|
= new CXStoredCodeCompletionString(Results[I].Priority,
|
|
|
|
Results[I].Availability);
|
2010-08-05 00:47:14 +08:00
|
|
|
(void)Results[I].CreateCodeCompletionString(S, StoredCompletion);
|
2010-08-14 06:48:40 +08:00
|
|
|
AllocatedResults.Results[I].CursorKind = Results[I].CursorKind;
|
2010-08-05 00:47:14 +08:00
|
|
|
AllocatedResults.Results[I].CompletionString = StoredCompletion;
|
|
|
|
}
|
|
|
|
}
|
2010-08-26 21:48:20 +08:00
|
|
|
|
|
|
|
// FIXME: Add ProcessOverloadCandidates?
|
2010-08-05 00:47:14 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
2010-08-20 07:44:10 +08:00
|
|
|
struct CodeCompleteAtInfo {
|
|
|
|
CXTranslationUnit TU;
|
|
|
|
const char *complete_filename;
|
|
|
|
unsigned complete_line;
|
|
|
|
unsigned complete_column;
|
|
|
|
struct CXUnsavedFile *unsaved_files;
|
|
|
|
unsigned num_unsaved_files;
|
|
|
|
unsigned options;
|
|
|
|
CXCodeCompleteResults *result;
|
|
|
|
};
|
|
|
|
void clang_codeCompleteAt_Impl(void *UserData) {
|
|
|
|
CodeCompleteAtInfo *CCAI = static_cast<CodeCompleteAtInfo*>(UserData);
|
|
|
|
CXTranslationUnit TU = CCAI->TU;
|
|
|
|
const char *complete_filename = CCAI->complete_filename;
|
|
|
|
unsigned complete_line = CCAI->complete_line;
|
|
|
|
unsigned complete_column = CCAI->complete_column;
|
|
|
|
struct CXUnsavedFile *unsaved_files = CCAI->unsaved_files;
|
|
|
|
unsigned num_unsaved_files = CCAI->num_unsaved_files;
|
|
|
|
unsigned options = CCAI->options;
|
|
|
|
CCAI->result = 0;
|
|
|
|
|
2010-08-05 00:47:14 +08:00
|
|
|
#ifdef UDP_CODE_COMPLETION_LOGGER
|
|
|
|
#ifdef UDP_CODE_COMPLETION_LOGGER_PORT
|
|
|
|
const llvm::TimeRecord &StartTime = llvm::TimeRecord::getCurrentTime();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool EnableLogging = getenv("LIBCLANG_CODE_COMPLETION_LOGGING") != 0;
|
|
|
|
|
|
|
|
ASTUnit *AST = static_cast<ASTUnit *>(TU);
|
|
|
|
if (!AST)
|
2010-08-20 07:44:10 +08:00
|
|
|
return;
|
2010-08-05 00:47:14 +08:00
|
|
|
|
2010-09-24 02:47:53 +08:00
|
|
|
ASTUnit::ConcurrencyCheck Check(*AST);
|
|
|
|
|
2010-08-05 00:47:14 +08:00
|
|
|
// Perform the remapping of source files.
|
|
|
|
llvm::SmallVector<ASTUnit::RemappedFile, 4> RemappedFiles;
|
|
|
|
for (unsigned I = 0; I != num_unsaved_files; ++I) {
|
|
|
|
llvm::StringRef Data(unsaved_files[I].Contents, unsaved_files[I].Length);
|
|
|
|
const llvm::MemoryBuffer *Buffer
|
|
|
|
= llvm::MemoryBuffer::getMemBufferCopy(Data, unsaved_files[I].Filename);
|
|
|
|
RemappedFiles.push_back(std::make_pair(unsaved_files[I].Filename,
|
|
|
|
Buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EnableLogging) {
|
|
|
|
// FIXME: Add logging.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the resulting source file to find code-completion results.
|
|
|
|
AllocatedCXCodeCompleteResults *Results = new AllocatedCXCodeCompleteResults;
|
|
|
|
Results->Results = 0;
|
|
|
|
Results->NumResults = 0;
|
|
|
|
|
|
|
|
// Create a code-completion consumer to capture the results.
|
|
|
|
CaptureCompletionResults Capture(*Results);
|
|
|
|
|
|
|
|
// Perform completion.
|
|
|
|
AST->CodeComplete(complete_filename, complete_line, complete_column,
|
2010-08-05 17:09:23 +08:00
|
|
|
RemappedFiles.data(), RemappedFiles.size(),
|
|
|
|
(options & CXCodeComplete_IncludeMacros),
|
|
|
|
(options & CXCodeComplete_IncludeCodePatterns),
|
|
|
|
Capture,
|
2010-08-05 00:47:14 +08:00
|
|
|
*Results->Diag, Results->LangOpts, Results->SourceMgr,
|
2010-08-20 08:59:43 +08:00
|
|
|
Results->FileMgr, Results->Diagnostics,
|
|
|
|
Results->TemporaryBuffers);
|
2010-08-05 00:47:14 +08:00
|
|
|
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
|
2010-04-15 09:02:28 +08:00
|
|
|
#ifdef UDP_CODE_COMPLETION_LOGGER
|
|
|
|
#ifdef UDP_CODE_COMPLETION_LOGGER_PORT
|
|
|
|
const llvm::TimeRecord &EndTime = llvm::TimeRecord::getCurrentTime();
|
|
|
|
llvm::SmallString<256> LogResult;
|
|
|
|
llvm::raw_svector_ostream os(LogResult);
|
|
|
|
|
|
|
|
// Figure out the language and whether or not it uses PCH.
|
|
|
|
const char *lang = 0;
|
|
|
|
bool usesPCH = false;
|
|
|
|
|
|
|
|
for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if (*I == 0)
|
|
|
|
continue;
|
|
|
|
if (strcmp(*I, "-x") == 0) {
|
|
|
|
if (I + 1 != E) {
|
|
|
|
lang = *(++I);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp(*I, "-include") == 0) {
|
|
|
|
if (I+1 != E) {
|
|
|
|
const char *arg = *(++I);
|
|
|
|
llvm::SmallString<512> pchName;
|
|
|
|
{
|
|
|
|
llvm::raw_svector_ostream os(pchName);
|
|
|
|
os << arg << ".pth";
|
|
|
|
}
|
|
|
|
pchName.push_back('\0');
|
|
|
|
struct stat stat_results;
|
|
|
|
if (stat(pchName.data(), &stat_results) == 0)
|
|
|
|
usesPCH = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-17 08:21:42 +08:00
|
|
|
os << "{ ";
|
|
|
|
os << "\"wall\": " << (EndTime.getWallTime() - StartTime.getWallTime());
|
|
|
|
os << ", \"numRes\": " << Results->NumResults;
|
|
|
|
os << ", \"diags\": " << Results->Diagnostics.size();
|
|
|
|
os << ", \"pch\": " << (usesPCH ? "true" : "false");
|
|
|
|
os << ", \"lang\": \"" << (lang ? lang : "<unknown>") << '"';
|
2010-04-15 09:02:28 +08:00
|
|
|
const char *name = getlogin();
|
2010-04-17 08:21:42 +08:00
|
|
|
os << ", \"user\": \"" << (name ? name : "unknown") << '"';
|
|
|
|
os << ", \"clangVer\": \"" << getClangFullVersion() << '"';
|
|
|
|
os << " }";
|
2010-04-15 09:02:28 +08:00
|
|
|
|
|
|
|
llvm::StringRef res = os.str();
|
|
|
|
if (res.size() > 0) {
|
|
|
|
do {
|
|
|
|
// Setup the UDP socket.
|
|
|
|
struct sockaddr_in servaddr;
|
|
|
|
bzero(&servaddr, sizeof(servaddr));
|
|
|
|
servaddr.sin_family = AF_INET;
|
|
|
|
servaddr.sin_port = htons(UDP_CODE_COMPLETION_LOGGER_PORT);
|
|
|
|
if (inet_pton(AF_INET, UDP_CODE_COMPLETION_LOGGER,
|
|
|
|
&servaddr.sin_addr) <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (sockfd < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
sendto(sockfd, res.data(), res.size(), 0,
|
|
|
|
(struct sockaddr *)&servaddr, sizeof(servaddr));
|
|
|
|
close(sockfd);
|
|
|
|
}
|
|
|
|
while (false);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
2010-08-20 07:44:10 +08:00
|
|
|
CCAI->result = Results;
|
|
|
|
}
|
|
|
|
CXCodeCompleteResults *clang_codeCompleteAt(CXTranslationUnit TU,
|
|
|
|
const char *complete_filename,
|
|
|
|
unsigned complete_line,
|
|
|
|
unsigned complete_column,
|
|
|
|
struct CXUnsavedFile *unsaved_files,
|
|
|
|
unsigned num_unsaved_files,
|
|
|
|
unsigned options) {
|
|
|
|
CodeCompleteAtInfo CCAI = { TU, complete_filename, complete_line,
|
|
|
|
complete_column, unsaved_files, num_unsaved_files,
|
|
|
|
options, 0 };
|
|
|
|
llvm::CrashRecoveryContext CRC;
|
|
|
|
|
|
|
|
if (!CRC.RunSafely(clang_codeCompleteAt_Impl, &CCAI)) {
|
|
|
|
fprintf(stderr, "libclang: crash detected in code completion\n");
|
|
|
|
static_cast<ASTUnit *>(TU)->setUnsafeToFree(true);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CCAI.result;
|
2010-01-06 03:32:54 +08:00
|
|
|
}
|
|
|
|
|
2010-08-05 17:09:23 +08:00
|
|
|
unsigned clang_defaultCodeCompleteOptions(void) {
|
|
|
|
return CXCodeComplete_IncludeMacros;
|
|
|
|
}
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
void clang_disposeCodeCompleteResults(CXCodeCompleteResults *ResultsIn) {
|
|
|
|
if (!ResultsIn)
|
|
|
|
return;
|
|
|
|
|
|
|
|
AllocatedCXCodeCompleteResults *Results
|
|
|
|
= static_cast<AllocatedCXCodeCompleteResults*>(ResultsIn);
|
|
|
|
delete Results;
|
|
|
|
}
|
2010-08-24 07:00:57 +08:00
|
|
|
|
2010-02-19 02:08:43 +08:00
|
|
|
unsigned
|
|
|
|
clang_codeCompleteGetNumDiagnostics(CXCodeCompleteResults *ResultsIn) {
|
|
|
|
AllocatedCXCodeCompleteResults *Results
|
|
|
|
= static_cast<AllocatedCXCodeCompleteResults*>(ResultsIn);
|
|
|
|
if (!Results)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return Results->Diagnostics.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
CXDiagnostic
|
|
|
|
clang_codeCompleteGetDiagnostic(CXCodeCompleteResults *ResultsIn,
|
|
|
|
unsigned Index) {
|
|
|
|
AllocatedCXCodeCompleteResults *Results
|
|
|
|
= static_cast<AllocatedCXCodeCompleteResults*>(ResultsIn);
|
|
|
|
if (!Results || Index >= Results->Diagnostics.size())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return new CXStoredDiagnostic(Results->Diagnostics[Index], Results->LangOpts);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-06 03:32:54 +08:00
|
|
|
} // end extern "C"
|
2010-08-26 21:48:20 +08:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct OrderCompletionResults {
|
|
|
|
bool operator()(const CXCompletionResult &XR,
|
|
|
|
const CXCompletionResult &YR) const {
|
|
|
|
CXStoredCodeCompletionString *X
|
|
|
|
= (CXStoredCodeCompletionString *)XR.CompletionString;
|
|
|
|
CXStoredCodeCompletionString *Y
|
|
|
|
= (CXStoredCodeCompletionString *)YR.CompletionString;
|
|
|
|
|
|
|
|
const char *XText = X->getTypedText();
|
|
|
|
const char *YText = Y->getTypedText();
|
|
|
|
if (!XText || !YText)
|
|
|
|
return XText != 0;
|
|
|
|
|
|
|
|
int result = llvm::StringRef(XText).compare_lower(YText);
|
|
|
|
if (result < 0)
|
|
|
|
return true;
|
|
|
|
if (result > 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
result = llvm::StringRef(XText).compare(YText);
|
2010-09-11 07:05:54 +08:00
|
|
|
return result < 0;
|
2010-08-26 21:48:20 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
void clang_sortCodeCompletionResults(CXCompletionResult *Results,
|
|
|
|
unsigned NumResults) {
|
|
|
|
std::stable_sort(Results, Results + NumResults, OrderCompletionResults());
|
|
|
|
}
|
2010-08-26 23:07:07 +08:00
|
|
|
}
|