blob: 69cb52b485074f0d5625c0a76207e3ef9d22206e [file] [log] [blame]
Ted Kremenekd2fa5662009-08-26 22:36:44 +00001//===- CIndex.cpp - Clang-C Source Indexing Library -----------------------===//
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 implements the Clang-C Source Indexing library.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang-c/Index.h"
Steve Naroff50398192009-08-28 15:28:48 +000015#include "clang/Index/Program.h"
16#include "clang/Index/Indexer.h"
Steve Naroff9efa7672009-09-04 15:44:05 +000017#include "clang/Index/ASTLocation.h"
18#include "clang/Index/Utils.h"
Douglas Gregor0c8296d2009-11-07 00:00:49 +000019#include "clang/Sema/CodeCompleteConsumer.h"
Steve Naroff50398192009-08-28 15:28:48 +000020#include "clang/AST/DeclVisitor.h"
Steve Narofffb570422009-09-22 19:25:29 +000021#include "clang/AST/StmtVisitor.h"
Steve Naroffc857ea42009-09-02 13:28:54 +000022#include "clang/AST/Decl.h"
Benjamin Kramerd01a0bc2009-08-29 12:56:35 +000023#include "clang/Basic/FileManager.h"
Steve Naroff2d4d6292009-08-31 14:26:51 +000024#include "clang/Basic/SourceManager.h"
Benjamin Kramerd01a0bc2009-08-29 12:56:35 +000025#include "clang/Frontend/ASTUnit.h"
Douglas Gregor0c8296d2009-11-07 00:00:49 +000026#include "llvm/ADT/StringExtras.h"
27#include "llvm/ADT/StringSwitch.h"
Benjamin Kramer20d75812009-10-18 16:13:48 +000028#include "llvm/Config/config.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000029#include "llvm/Support/Compiler.h"
Douglas Gregor02465752009-10-16 21:24:31 +000030#include "llvm/Support/MemoryBuffer.h"
31#include "llvm/System/Path.h"
Benjamin Kramer0829a832009-10-18 11:19:36 +000032#include "llvm/System/Program.h"
Ted Kremenek379afec2009-10-22 03:24:01 +000033#include "llvm/Support/raw_ostream.h"
Ted Kremenekfc062212009-10-19 21:44:57 +000034
Benjamin Kramerd01a0bc2009-08-29 12:56:35 +000035#include <cstdio>
Ted Kremenek49358d82009-10-19 21:17:25 +000036#include <vector>
Douglas Gregor0c8296d2009-11-07 00:00:49 +000037#include <sstream>
Ted Kremenek49358d82009-10-19 21:17:25 +000038
Benjamin Kramer20d75812009-10-18 16:13:48 +000039#ifdef LLVM_ON_WIN32
40#define WIN32_LEAN_AND_MEAN
41#include <windows.h>
42#else
Steve Naroff5b7d8e22009-10-15 20:04:39 +000043#include <dlfcn.h>
Daniel Dunbara47dd192009-10-17 23:53:11 +000044#endif
Steve Naroff5b7d8e22009-10-15 20:04:39 +000045
Steve Naroff50398192009-08-28 15:28:48 +000046using namespace clang;
47using namespace idx;
48
Steve Naroff89922f82009-08-31 00:59:03 +000049namespace {
Steve Naroff4ade6d62009-09-23 17:52:52 +000050static enum CXCursorKind TranslateDeclRefExpr(DeclRefExpr *DRE)
51{
52 NamedDecl *D = DRE->getDecl();
53 if (isa<VarDecl>(D))
54 return CXCursor_VarRef;
55 else if (isa<FunctionDecl>(D))
56 return CXCursor_FunctionRef;
57 else if (isa<EnumConstantDecl>(D))
58 return CXCursor_EnumConstantRef;
59 else
60 return CXCursor_NotImplemented;
61}
62
63#if 0
64// Will be useful one day.
Steve Narofffb570422009-09-22 19:25:29 +000065class CRefVisitor : public StmtVisitor<CRefVisitor> {
66 CXDecl CDecl;
67 CXDeclIterator Callback;
68 CXClientData CData;
69
70 void Call(enum CXCursorKind CK, Stmt *SRef) {
71 CXCursor C = { CK, CDecl, SRef };
72 Callback(CDecl, C, CData);
73 }
74
75public:
76 CRefVisitor(CXDecl C, CXDeclIterator cback, CXClientData D) :
77 CDecl(C), Callback(cback), CData(D) {}
78
79 void VisitStmt(Stmt *S) {
80 for (Stmt::child_iterator C = S->child_begin(), CEnd = S->child_end();
81 C != CEnd; ++C)
82 Visit(*C);
83 }
84 void VisitDeclRefExpr(DeclRefExpr *Node) {
Steve Naroff4ade6d62009-09-23 17:52:52 +000085 Call(TranslateDeclRefExpr(Node), Node);
Steve Narofffb570422009-09-22 19:25:29 +000086 }
87 void VisitMemberExpr(MemberExpr *Node) {
88 Call(CXCursor_MemberRef, Node);
89 }
90 void VisitObjCMessageExpr(ObjCMessageExpr *Node) {
91 Call(CXCursor_ObjCSelectorRef, Node);
92 }
93 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) {
94 Call(CXCursor_ObjCIvarRef, Node);
95 }
96};
Steve Naroff4ade6d62009-09-23 17:52:52 +000097#endif
Ted Kremenekfc062212009-10-19 21:44:57 +000098
99/// IgnoreDiagnosticsClient - A DiagnosticsClient that just ignores emitted
100/// warnings and errors.
101class VISIBILITY_HIDDEN IgnoreDiagnosticsClient : public DiagnosticClient {
102public:
103 virtual ~IgnoreDiagnosticsClient() {}
104 virtual void HandleDiagnostic(Diagnostic::Level, const DiagnosticInfo &) {}
105};
Steve Narofffb570422009-09-22 19:25:29 +0000106
Steve Naroff89922f82009-08-31 00:59:03 +0000107// Translation Unit Visitor.
108class TUVisitor : public DeclVisitor<TUVisitor> {
109 CXTranslationUnit TUnit;
110 CXTranslationUnitIterator Callback;
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000111 CXClientData CData;
112
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000113 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
114 // to the visitor. Declarations with a PCH level greater than this value will
115 // be suppressed.
116 unsigned MaxPCHLevel;
117
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000118 void Call(enum CXCursorKind CK, NamedDecl *ND) {
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000119 // Filter any declarations that have a PCH level greater than what we allow.
120 if (ND->getPCHLevel() > MaxPCHLevel)
121 return;
122
Steve Narofff96b5242009-10-28 20:44:47 +0000123 // Filter any implicit declarations (since the source info will be bogus).
124 if (ND->isImplicit())
125 return;
126
Steve Narofffb570422009-09-22 19:25:29 +0000127 CXCursor C = { CK, ND, 0 };
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000128 Callback(TUnit, C, CData);
129 }
Steve Naroff89922f82009-08-31 00:59:03 +0000130public:
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000131 TUVisitor(CXTranslationUnit CTU,
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000132 CXTranslationUnitIterator cback, CXClientData D,
133 unsigned MaxPCHLevel) :
134 TUnit(CTU), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Steve Naroff89922f82009-08-31 00:59:03 +0000135
136 void VisitTranslationUnitDecl(TranslationUnitDecl *D) {
137 VisitDeclContext(dyn_cast<DeclContext>(D));
138 }
139 void VisitDeclContext(DeclContext *DC) {
140 for (DeclContext::decl_iterator
141 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
142 Visit(*I);
143 }
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000144 void VisitTypedefDecl(TypedefDecl *ND) {
145 Call(CXCursor_TypedefDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000146 }
147 void VisitTagDecl(TagDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000148 switch (ND->getTagKind()) {
149 case TagDecl::TK_struct:
150 Call(CXCursor_StructDecl, ND);
151 break;
152 case TagDecl::TK_class:
153 Call(CXCursor_ClassDecl, ND);
154 break;
155 case TagDecl::TK_union:
156 Call(CXCursor_UnionDecl, ND);
157 break;
158 case TagDecl::TK_enum:
159 Call(CXCursor_EnumDecl, ND);
160 break;
161 }
Steve Naroff89922f82009-08-31 00:59:03 +0000162 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000163 void VisitVarDecl(VarDecl *ND) {
164 Call(CXCursor_VarDecl, ND);
165 }
Steve Naroff89922f82009-08-31 00:59:03 +0000166 void VisitFunctionDecl(FunctionDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000167 Call(ND->isThisDeclarationADefinition() ? CXCursor_FunctionDefn
168 : CXCursor_FunctionDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000169 }
170 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000171 Call(CXCursor_ObjCInterfaceDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000172 }
173 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000174 Call(CXCursor_ObjCCategoryDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000175 }
176 void VisitObjCProtocolDecl(ObjCProtocolDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000177 Call(CXCursor_ObjCProtocolDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000178 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000179 void VisitObjCImplementationDecl(ObjCImplementationDecl *ND) {
180 Call(CXCursor_ObjCClassDefn, ND);
181 }
182 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *ND) {
183 Call(CXCursor_ObjCCategoryDefn, ND);
184 }
Steve Naroff89922f82009-08-31 00:59:03 +0000185};
186
Steve Naroffc857ea42009-09-02 13:28:54 +0000187// Declaration visitor.
188class CDeclVisitor : public DeclVisitor<CDeclVisitor> {
189 CXDecl CDecl;
190 CXDeclIterator Callback;
191 CXClientData CData;
192
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000193 // MaxPCHLevel - the maximum PCH level of declarations that we will pass on
194 // to the visitor. Declarations with a PCH level greater than this value will
195 // be suppressed.
196 unsigned MaxPCHLevel;
197
Steve Naroffc857ea42009-09-02 13:28:54 +0000198 void Call(enum CXCursorKind CK, NamedDecl *ND) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000199 // Disable the callback when the context is equal to the visiting decl.
200 if (CDecl == ND && !clang_isReference(CK))
201 return;
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000202
203 // Filter any declarations that have a PCH level greater than what we allow.
204 if (ND->getPCHLevel() > MaxPCHLevel)
205 return;
206
Steve Narofffb570422009-09-22 19:25:29 +0000207 CXCursor C = { CK, ND, 0 };
Steve Naroffc857ea42009-09-02 13:28:54 +0000208 Callback(CDecl, C, CData);
209 }
Steve Naroff89922f82009-08-31 00:59:03 +0000210public:
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000211 CDeclVisitor(CXDecl C, CXDeclIterator cback, CXClientData D,
212 unsigned MaxPCHLevel) :
213 CDecl(C), Callback(cback), CData(D), MaxPCHLevel(MaxPCHLevel) {}
Steve Naroffc857ea42009-09-02 13:28:54 +0000214
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000215 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
216 // Issue callbacks for the containing class.
217 Call(CXCursor_ObjCClassRef, ND);
218 // FIXME: Issue callbacks for protocol refs.
219 VisitDeclContext(dyn_cast<DeclContext>(ND));
220 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000221 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000222 // Issue callbacks for super class.
Steve Narofff334b4e2009-09-02 18:26:48 +0000223 if (D->getSuperClass())
224 Call(CXCursor_ObjCSuperClassRef, D);
225
Steve Naroff9efa7672009-09-04 15:44:05 +0000226 for (ObjCProtocolDecl::protocol_iterator I = D->protocol_begin(),
227 E = D->protocol_end(); I != E; ++I)
228 Call(CXCursor_ObjCProtocolRef, *I);
Steve Naroffc857ea42009-09-02 13:28:54 +0000229 VisitDeclContext(dyn_cast<DeclContext>(D));
230 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000231 void VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
232 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
233 E = PID->protocol_end(); I != E; ++I)
234 Call(CXCursor_ObjCProtocolRef, *I);
235
236 VisitDeclContext(dyn_cast<DeclContext>(PID));
237 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000238 void VisitTagDecl(TagDecl *D) {
239 VisitDeclContext(dyn_cast<DeclContext>(D));
240 }
241 void VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
242 VisitDeclContext(dyn_cast<DeclContext>(D));
243 }
244 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
245 VisitDeclContext(dyn_cast<DeclContext>(D));
246 }
Steve Naroff89922f82009-08-31 00:59:03 +0000247 void VisitDeclContext(DeclContext *DC) {
248 for (DeclContext::decl_iterator
249 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
250 Visit(*I);
251 }
252 void VisitEnumConstantDecl(EnumConstantDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000253 Call(CXCursor_EnumConstantDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000254 }
255 void VisitFieldDecl(FieldDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000256 Call(CXCursor_FieldDecl, ND);
257 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000258 void VisitVarDecl(VarDecl *ND) {
259 Call(CXCursor_VarDecl, ND);
260 }
261 void VisitParmVarDecl(ParmVarDecl *ND) {
262 Call(CXCursor_ParmDecl, ND);
263 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000264 void VisitObjCPropertyDecl(ObjCPropertyDecl *ND) {
265 Call(CXCursor_ObjCPropertyDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000266 }
267 void VisitObjCIvarDecl(ObjCIvarDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000268 Call(CXCursor_ObjCIvarDecl, ND);
269 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000270 void VisitFunctionDecl(FunctionDecl *ND) {
271 if (ND->isThisDeclarationADefinition()) {
272 VisitDeclContext(dyn_cast<DeclContext>(ND));
Steve Naroff4ade6d62009-09-23 17:52:52 +0000273#if 0
274 // Not currently needed.
275 CompoundStmt *Body = dyn_cast<CompoundStmt>(ND->getBody());
Steve Narofffb570422009-09-22 19:25:29 +0000276 CRefVisitor RVisit(CDecl, Callback, CData);
Steve Naroff4ade6d62009-09-23 17:52:52 +0000277 RVisit.Visit(Body);
278#endif
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000279 }
280 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000281 void VisitObjCMethodDecl(ObjCMethodDecl *ND) {
282 if (ND->getBody()) {
283 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDefn
284 : CXCursor_ObjCClassMethodDefn, ND);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000285 VisitDeclContext(dyn_cast<DeclContext>(ND));
Steve Naroffc857ea42009-09-02 13:28:54 +0000286 } else
287 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDecl
288 : CXCursor_ObjCClassMethodDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000289 }
290};
291
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000292class CIndexer : public Indexer {
293public:
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000294 explicit CIndexer(Program *prog) : Indexer(*prog),
295 OnlyLocalDecls(false),
296 DisplayDiagnostics(false) {}
Ted Kremenekdff76892009-10-17 06:21:47 +0000297
298 virtual ~CIndexer() { delete &getProgram(); }
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000299
300 /// \brief Whether we only want to see "local" declarations (that did not
301 /// come from a previous precompiled header). If false, we want to see all
302 /// declarations.
303 bool getOnlyLocalDecls() const { return OnlyLocalDecls; }
304 void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; }
Benjamin Kramer96707622009-10-18 11:10:55 +0000305
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000306 void setDisplayDiagnostics(bool Display = true) {
307 DisplayDiagnostics = Display;
308 }
309 bool getDisplayDiagnostics() const { return DisplayDiagnostics; }
310
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000311 /// \brief Get the path of the clang binary.
Benjamin Kramerc5a9e952009-10-19 10:20:24 +0000312 const llvm::sys::Path& getClangPath();
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000313private:
314 bool OnlyLocalDecls;
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000315 bool DisplayDiagnostics;
316
Benjamin Kramerc5a9e952009-10-19 10:20:24 +0000317 llvm::sys::Path ClangPath;
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000318};
Steve Naroff89922f82009-08-31 00:59:03 +0000319
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000320const llvm::sys::Path& CIndexer::getClangPath() {
321 // Did we already compute the path?
322 if (!ClangPath.empty())
323 return ClangPath;
324
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000325 // Find the location where this library lives (libCIndex.dylib).
Benjamin Kramer20d75812009-10-18 16:13:48 +0000326#ifdef LLVM_ON_WIN32
327 MEMORY_BASIC_INFORMATION mbi;
328 char path[MAX_PATH];
Benjamin Krameredcd8282009-10-18 16:20:58 +0000329 VirtualQuery((void *)(uintptr_t)clang_createTranslationUnit, &mbi,
Benjamin Kramer20d75812009-10-18 16:13:48 +0000330 sizeof(mbi));
331 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
332
333 llvm::sys::Path CIndexPath(path);
John Thompson6a6742a2009-11-11 23:11:14 +0000334
335 CIndexPath.eraseComponent();
336 CIndexPath.appendComponent("clang");
337 CIndexPath.appendSuffix("exe");
338 CIndexPath.makeAbsolute();
Benjamin Kramer20d75812009-10-18 16:13:48 +0000339#else
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000340 // This silly cast below avoids a C++ warning.
341 Dl_info info;
342 if (dladdr((void *)(uintptr_t)clang_createTranslationUnit, &info) == 0)
343 assert(0 && "Call to dladdr() failed");
344
345 llvm::sys::Path CIndexPath(info.dli_fname);
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000346
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000347 // We now have the CIndex directory, locate clang relative to it.
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000348 CIndexPath.eraseComponent();
349 CIndexPath.eraseComponent();
350 CIndexPath.appendComponent("bin");
351 CIndexPath.appendComponent("clang");
John Thompson6a6742a2009-11-11 23:11:14 +0000352#endif
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000353
354 // Cache our result.
355 ClangPath = CIndexPath;
356 return ClangPath;
357}
358
359}
360
Daniel Dunbarc6190332009-11-08 04:13:53 +0000361static SourceLocation getLocationFromCursor(CXCursor C,
362 SourceManager &SourceMgr,
363 NamedDecl *ND) {
364 if (clang_isReference(C.kind)) {
365 switch (C.kind) {
366 case CXCursor_ObjCClassRef: {
367 if (isa<ObjCInterfaceDecl>(ND)) {
368 // FIXME: This is a hack (storing the parent decl in the stmt slot).
369 NamedDecl *parentDecl = static_cast<NamedDecl *>(C.stmt);
370 return parentDecl->getLocation();
371 }
372 ObjCCategoryDecl *OID = dyn_cast<ObjCCategoryDecl>(ND);
373 assert(OID && "clang_getCursorLine(): Missing category decl");
374 return OID->getClassInterface()->getLocation();
375 }
376 case CXCursor_ObjCSuperClassRef: {
377 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
378 assert(OID && "clang_getCursorLine(): Missing interface decl");
379 return OID->getSuperClassLoc();
380 }
381 case CXCursor_ObjCProtocolRef: {
382 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
383 assert(OID && "clang_getCursorLine(): Missing protocol decl");
384 return OID->getLocation();
385 }
386 case CXCursor_ObjCSelectorRef: {
387 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(
388 static_cast<Stmt *>(C.stmt));
389 assert(OME && "clang_getCursorLine(): Missing message expr");
390 return OME->getLeftLoc(); /* FIXME: should be a range */
391 }
392 case CXCursor_VarRef:
393 case CXCursor_FunctionRef:
394 case CXCursor_EnumConstantRef: {
395 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(
396 static_cast<Stmt *>(C.stmt));
397 assert(DRE && "clang_getCursorLine(): Missing decl ref expr");
398 return DRE->getLocation();
399 }
400 default:
401 return SourceLocation();
402 }
403 } else { // We have a declaration or a definition.
404 SourceLocation SLoc;
405 switch (ND->getKind()) {
406 case Decl::ObjCInterface: {
407 SLoc = dyn_cast<ObjCInterfaceDecl>(ND)->getClassLoc();
408 break;
409 }
410 case Decl::ObjCProtocol: {
411 SLoc = ND->getLocation(); /* FIXME: need to get the name location. */
412 break;
413 }
414 default: {
415 SLoc = ND->getLocation();
416 break;
417 }
418 }
419 if (SLoc.isInvalid())
420 return SourceLocation();
421 return SourceMgr.getSpellingLoc(SLoc); // handles macro instantiations.
422 }
423}
424
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000425static CXString createCXString(const char *String, bool DupString = false) {
426 CXString Str;
427 if (DupString) {
428 Str.Spelling = strdup(String);
429 Str.MustFreeString = 1;
430 } else {
431 Str.Spelling = String;
432 Str.MustFreeString = 0;
433 }
434 return Str;
435}
436
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000437extern "C" {
438
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000439CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
440 int displayDiagnostics)
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000441{
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000442 CIndexer *CIdxr = new CIndexer(new Program());
443 if (excludeDeclarationsFromPCH)
444 CIdxr->setOnlyLocalDecls();
445 if (displayDiagnostics)
446 CIdxr->setDisplayDiagnostics();
447 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +0000448}
449
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000450void clang_disposeIndex(CXIndex CIdx)
451{
452 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000453 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000454}
455
Steve Naroff50398192009-08-28 15:28:48 +0000456// FIXME: need to pass back error info.
457CXTranslationUnit clang_createTranslationUnit(
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000458 CXIndex CIdx, const char *ast_filename)
Steve Naroff600866c2009-08-27 19:51:58 +0000459{
Steve Naroff50398192009-08-28 15:28:48 +0000460 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000461 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Steve Naroff50398192009-08-28 15:28:48 +0000462 std::string astName(ast_filename);
463 std::string ErrMsg;
464
Ted Kremenek379afec2009-10-22 03:24:01 +0000465 CXTranslationUnit TU =
466 ASTUnit::LoadFromPCHFile(astName, &ErrMsg,
467 CXXIdx->getDisplayDiagnostics() ?
468 NULL : new IgnoreDiagnosticsClient(),
469 CXXIdx->getOnlyLocalDecls(),
470 /* UseBumpAllocator = */ true);
471
Ted Kremenek0854d702009-11-10 19:18:52 +0000472 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty())
Ted Kremenek779e5f42009-10-26 22:08:39 +0000473 llvm::errs() << "clang_createTranslationUnit: " << ErrMsg << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +0000474
475 return TU;
Steve Naroff600866c2009-08-27 19:51:58 +0000476}
477
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000478CXTranslationUnit clang_createTranslationUnitFromSourceFile(
479 CXIndex CIdx,
480 const char *source_filename,
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000481 int num_command_line_args, const char **command_line_args) {
482 assert(CIdx && "Passed null CXIndex");
483 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
484
Ted Kremenek139ba862009-10-22 00:03:57 +0000485 // Build up the arguments for invoking 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000486 std::vector<const char *> argv;
Ted Kremenek139ba862009-10-22 00:03:57 +0000487
488 // First add the complete path to the 'clang' executable.
489 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000490 argv.push_back(ClangPath.c_str());
Ted Kremenek139ba862009-10-22 00:03:57 +0000491
492 // Add the '-emit-ast' option as our execution mode for 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000493 argv.push_back("-emit-ast");
Ted Kremenek139ba862009-10-22 00:03:57 +0000494
495 // The 'source_filename' argument is optional. If the caller does not
496 // specify it then it is assumed that the source file is specified
497 // in the actual argument list.
498 if (source_filename)
499 argv.push_back(source_filename);
500
Steve Naroff37b5ac22009-10-15 20:50:09 +0000501 // Generate a temporary name for the AST file.
Ted Kremenek139ba862009-10-22 00:03:57 +0000502 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000503 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000504 argv.push_back(tmpnam(astTmpFile));
Ted Kremenek139ba862009-10-22 00:03:57 +0000505
506 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
507 for (int i = 0; i < num_command_line_args; ++i)
508 if (const char *arg = command_line_args[i]) {
509 if (strcmp(arg, "-o") == 0) {
510 ++i; // Also skip the matching argument.
511 continue;
512 }
513 if (strcmp(arg, "-emit-ast") == 0 ||
514 strcmp(arg, "-c") == 0 ||
515 strcmp(arg, "-fsyntax-only") == 0) {
516 continue;
517 }
518
519 // Keep the argument.
520 argv.push_back(arg);
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000521 }
Ted Kremenek139ba862009-10-22 00:03:57 +0000522
523 // Add the null terminator.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000524 argv.push_back(NULL);
525
Ted Kremenekfeb15e32009-10-26 22:14:08 +0000526 // Invoke 'clang'.
527 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
528 // on Unix or NUL (Windows).
Ted Kremenek379afec2009-10-22 03:24:01 +0000529 std::string ErrMsg;
Ted Kremenekc46e4632009-10-19 22:27:32 +0000530 const llvm::sys::Path *Redirects[] = { &DevNull, &DevNull, &DevNull, NULL };
Ted Kremenek379afec2009-10-22 03:24:01 +0000531 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
532 /* redirects */ !CXXIdx->getDisplayDiagnostics() ? &Redirects[0] : NULL,
533 /* secondsToWait */ 0, /* memoryLimits */ 0, &ErrMsg);
534
Ted Kremenek0854d702009-11-10 19:18:52 +0000535 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Ted Kremenek379afec2009-10-22 03:24:01 +0000536 llvm::errs() << "clang_createTranslationUnitFromSourceFile: " << ErrMsg
537 << '\n' << "Arguments: \n";
538 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
Ted Kremenek779e5f42009-10-26 22:08:39 +0000539 I!=E; ++I) {
540 if (*I)
541 llvm::errs() << ' ' << *I << '\n';
542 }
543 llvm::errs() << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +0000544 }
Benjamin Kramer0829a832009-10-18 11:19:36 +0000545
Steve Naroff37b5ac22009-10-15 20:50:09 +0000546 // Finally, we create the translation unit from the ast file.
Steve Naroffe19944c2009-10-15 22:23:48 +0000547 ASTUnit *ATU = static_cast<ASTUnit *>(
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000548 clang_createTranslationUnit(CIdx, astTmpFile));
549 if (ATU)
550 ATU->unlinkTemporaryFile();
Steve Naroffe19944c2009-10-15 22:23:48 +0000551 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000552}
553
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000554void clang_disposeTranslationUnit(
555 CXTranslationUnit CTUnit)
556{
557 assert(CTUnit && "Passed null CXTranslationUnit");
558 delete static_cast<ASTUnit *>(CTUnit);
559}
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000560
Steve Naroffef0cef62009-11-09 17:45:52 +0000561CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit)
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000562{
563 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000564 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000565 return createCXString(CXXUnit->getOriginalSourceFileName().c_str(), true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000566}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000567
Steve Naroffc857ea42009-09-02 13:28:54 +0000568void clang_loadTranslationUnit(CXTranslationUnit CTUnit,
569 CXTranslationUnitIterator callback,
570 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000571{
Steve Naroff50398192009-08-28 15:28:48 +0000572 assert(CTUnit && "Passed null CXTranslationUnit");
573 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
574 ASTContext &Ctx = CXXUnit->getASTContext();
575
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000576 TUVisitor DVisit(CTUnit, callback, CData,
577 CXXUnit->getOnlyLocalDecls()? 1 : Decl::MaxPCHLevel);
Steve Naroff50398192009-08-28 15:28:48 +0000578 DVisit.Visit(Ctx.getTranslationUnitDecl());
Steve Naroff600866c2009-08-27 19:51:58 +0000579}
580
Steve Naroffc857ea42009-09-02 13:28:54 +0000581void clang_loadDeclaration(CXDecl Dcl,
582 CXDeclIterator callback,
583 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000584{
Steve Naroffc857ea42009-09-02 13:28:54 +0000585 assert(Dcl && "Passed null CXDecl");
586
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000587 CDeclVisitor DVisit(Dcl, callback, CData,
588 static_cast<Decl *>(Dcl)->getPCHLevel());
Steve Naroffc857ea42009-09-02 13:28:54 +0000589 DVisit.Visit(static_cast<Decl *>(Dcl));
Steve Naroff600866c2009-08-27 19:51:58 +0000590}
591
Steve Naroff7e8f8182009-08-28 12:07:44 +0000592// Some notes on CXEntity:
593//
594// - Since the 'ordinary' namespace includes functions, data, typedefs,
595// ObjC interfaces, thecurrent algorithm is a bit naive (resulting in one
596// entity for 2 different types). For example:
597//
598// module1.m: @interface Foo @end Foo *x;
599// module2.m: void Foo(int);
600//
601// - Since the unique name spans translation units, static data/functions
602// within a CXTranslationUnit are *not* currently represented by entities.
603// As a result, there will be no entity for the following:
604//
605// module.m: static void Foo() { }
606//
607
608
Steve Naroff600866c2009-08-27 19:51:58 +0000609const char *clang_getDeclarationName(CXEntity)
610{
611 return "";
612}
613const char *clang_getURI(CXEntity)
614{
615 return "";
616}
617
618CXEntity clang_getEntity(const char *URI)
619{
620 return 0;
621}
622
623//
624// CXDecl Operations.
625//
Steve Naroff600866c2009-08-27 19:51:58 +0000626CXEntity clang_getEntityFromDecl(CXDecl)
627{
628 return 0;
629}
Steve Naroffef0cef62009-11-09 17:45:52 +0000630CXString clang_getDeclSpelling(CXDecl AnonDecl)
Steve Naroff600866c2009-08-27 19:51:58 +0000631{
Steve Naroff89922f82009-08-31 00:59:03 +0000632 assert(AnonDecl && "Passed null CXDecl");
633 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
Steve Naroffef0cef62009-11-09 17:45:52 +0000634
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000635 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
636 return createCXString(OMD->getSelector().getAsString().c_str(), true);
637
638 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
Steve Naroff0d69b8c2009-10-29 21:11:04 +0000639 // No, this isn't the same as the code below. getIdentifier() is non-virtual
640 // and returns different names. NamedDecl returns the class name and
641 // ObjCCategoryImplDecl returns the category name.
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000642 return createCXString(CIMP->getIdentifier()->getNameStart());
643
644 if (ND->getIdentifier())
645 return createCXString(ND->getIdentifier()->getNameStart());
646
647 return createCXString("");
Steve Naroff600866c2009-08-27 19:51:58 +0000648}
Steve Narofff334b4e2009-09-02 18:26:48 +0000649
Steve Naroff699a07d2009-09-25 21:32:34 +0000650unsigned clang_getDeclLine(CXDecl AnonDecl)
651{
652 assert(AnonDecl && "Passed null CXDecl");
653 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
654 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
655 return SourceMgr.getSpellingLineNumber(ND->getLocation());
656}
657
658unsigned clang_getDeclColumn(CXDecl AnonDecl)
659{
660 assert(AnonDecl && "Passed null CXDecl");
661 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
662 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff74165242009-09-25 22:15:54 +0000663 return SourceMgr.getSpellingColumnNumber(ND->getLocation());
Steve Naroff699a07d2009-09-25 21:32:34 +0000664}
665
Steve Naroffee9405e2009-09-25 21:45:39 +0000666const char *clang_getDeclSource(CXDecl AnonDecl)
667{
668 assert(AnonDecl && "Passed null CXDecl");
Steve Naroff88145032009-10-27 14:35:18 +0000669 FileEntry *FEnt = static_cast<FileEntry *>(clang_getDeclSourceFile(AnonDecl));
670 assert (FEnt && "Cannot find FileEntry for Decl");
671 return clang_getFileName(FEnt);
672}
673
674static const FileEntry *getFileEntryFromSourceLocation(SourceManager &SMgr,
675 SourceLocation SLoc)
676{
677 FileID FID;
678 if (SLoc.isFileID())
679 FID = SMgr.getFileID(SLoc);
680 else
681 FID = SMgr.getDecomposedSpellingLoc(SLoc).first;
682 return SMgr.getFileEntryForID(FID);
683}
684
685CXFile clang_getDeclSourceFile(CXDecl AnonDecl)
686{
687 assert(AnonDecl && "Passed null CXDecl");
Steve Naroffee9405e2009-09-25 21:45:39 +0000688 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
689 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff88145032009-10-27 14:35:18 +0000690 return (void *)getFileEntryFromSourceLocation(SourceMgr, ND->getLocation());
691}
692
693const char *clang_getFileName(CXFile SFile) {
694 assert(SFile && "Passed null CXFile");
695 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
696 return FEnt->getName();
697}
698
699time_t clang_getFileTime(CXFile SFile) {
700 assert(SFile && "Passed null CXFile");
701 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
702 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +0000703}
704
Steve Naroffef0cef62009-11-09 17:45:52 +0000705CXString clang_getCursorSpelling(CXCursor C)
Steve Narofff334b4e2009-09-02 18:26:48 +0000706{
707 assert(C.decl && "CXCursor has null decl");
708 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroffef0cef62009-11-09 17:45:52 +0000709
Steve Narofff334b4e2009-09-02 18:26:48 +0000710 if (clang_isReference(C.kind)) {
711 switch (C.kind) {
Steve Naroffbade7de2009-10-19 13:41:39 +0000712 case CXCursor_ObjCSuperClassRef: {
Steve Narofff334b4e2009-09-02 18:26:48 +0000713 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
714 assert(OID && "clang_getCursorLine(): Missing interface decl");
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000715 return createCXString(OID->getSuperClass()->getIdentifier()
716 ->getNameStart());
Steve Naroffbade7de2009-10-19 13:41:39 +0000717 }
718 case CXCursor_ObjCClassRef: {
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000719 if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND))
720 return createCXString(OID->getIdentifier()->getNameStart());
721
722 ObjCCategoryDecl *OCD = dyn_cast<ObjCCategoryDecl>(ND);
723 assert(OCD && "clang_getCursorLine(): Missing category decl");
724 return createCXString(OCD->getClassInterface()->getIdentifier()
725 ->getNameStart());
Steve Naroffbade7de2009-10-19 13:41:39 +0000726 }
727 case CXCursor_ObjCProtocolRef: {
Steve Naroff9efa7672009-09-04 15:44:05 +0000728 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
729 assert(OID && "clang_getCursorLine(): Missing protocol decl");
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000730 return createCXString(OID->getIdentifier()->getNameStart());
Steve Naroffbade7de2009-10-19 13:41:39 +0000731 }
732 case CXCursor_ObjCSelectorRef: {
Steve Narofffb570422009-09-22 19:25:29 +0000733 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(
734 static_cast<Stmt *>(C.stmt));
735 assert(OME && "clang_getCursorLine(): Missing message expr");
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000736 return createCXString(OME->getSelector().getAsString().c_str(), true);
Steve Naroffbade7de2009-10-19 13:41:39 +0000737 }
Steve Narofffb570422009-09-22 19:25:29 +0000738 case CXCursor_VarRef:
739 case CXCursor_FunctionRef:
Steve Naroffbade7de2009-10-19 13:41:39 +0000740 case CXCursor_EnumConstantRef: {
Steve Narofffb570422009-09-22 19:25:29 +0000741 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(
742 static_cast<Stmt *>(C.stmt));
743 assert(DRE && "clang_getCursorLine(): Missing decl ref expr");
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000744 return createCXString(DRE->getDecl()->getIdentifier()->getNameStart());
Steve Naroffbade7de2009-10-19 13:41:39 +0000745 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000746 default:
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000747 return createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +0000748 }
749 }
750 return clang_getDeclSpelling(C.decl);
751}
752
753const char *clang_getCursorKindSpelling(enum CXCursorKind Kind)
Steve Naroff600866c2009-08-27 19:51:58 +0000754{
Steve Naroff89922f82009-08-31 00:59:03 +0000755 switch (Kind) {
756 case CXCursor_FunctionDecl: return "FunctionDecl";
757 case CXCursor_TypedefDecl: return "TypedefDecl";
758 case CXCursor_EnumDecl: return "EnumDecl";
759 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000760 case CXCursor_StructDecl: return "StructDecl";
761 case CXCursor_UnionDecl: return "UnionDecl";
762 case CXCursor_ClassDecl: return "ClassDecl";
Steve Naroff89922f82009-08-31 00:59:03 +0000763 case CXCursor_FieldDecl: return "FieldDecl";
764 case CXCursor_VarDecl: return "VarDecl";
765 case CXCursor_ParmDecl: return "ParmDecl";
766 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
767 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
768 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
769 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
770 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000771 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
772 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
773 case CXCursor_FunctionDefn: return "FunctionDefn";
774 case CXCursor_ObjCInstanceMethodDefn: return "ObjCInstanceMethodDefn";
775 case CXCursor_ObjCClassMethodDefn: return "ObjCClassMethodDefn";
776 case CXCursor_ObjCClassDefn: return "ObjCClassDefn";
777 case CXCursor_ObjCCategoryDefn: return "ObjCCategoryDefn";
Steve Narofff334b4e2009-09-02 18:26:48 +0000778 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
Steve Naroff9efa7672009-09-04 15:44:05 +0000779 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000780 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Steve Narofffb570422009-09-22 19:25:29 +0000781 case CXCursor_ObjCSelectorRef: return "ObjCSelectorRef";
782
783 case CXCursor_VarRef: return "VarRef";
784 case CXCursor_FunctionRef: return "FunctionRef";
785 case CXCursor_EnumConstantRef: return "EnumConstantRef";
786 case CXCursor_MemberRef: return "MemberRef";
787
Steve Naroff77128dd2009-09-15 20:25:34 +0000788 case CXCursor_InvalidFile: return "InvalidFile";
789 case CXCursor_NoDeclFound: return "NoDeclFound";
790 case CXCursor_NotImplemented: return "NotImplemented";
Steve Naroff89922f82009-08-31 00:59:03 +0000791 default: return "<not implemented>";
792 }
Steve Naroff600866c2009-08-27 19:51:58 +0000793}
Steve Naroff89922f82009-08-31 00:59:03 +0000794
Steve Naroff9efa7672009-09-04 15:44:05 +0000795static enum CXCursorKind TranslateKind(Decl *D) {
796 switch (D->getKind()) {
797 case Decl::Function: return CXCursor_FunctionDecl;
798 case Decl::Typedef: return CXCursor_TypedefDecl;
799 case Decl::Enum: return CXCursor_EnumDecl;
800 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
801 case Decl::Record: return CXCursor_StructDecl; // FIXME: union/class
802 case Decl::Field: return CXCursor_FieldDecl;
803 case Decl::Var: return CXCursor_VarDecl;
804 case Decl::ParmVar: return CXCursor_ParmDecl;
805 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Steve Narofffb570422009-09-22 19:25:29 +0000806 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
807 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Steve Naroff9efa7672009-09-04 15:44:05 +0000808 case Decl::ObjCMethod: {
809 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D);
810 if (MD->isInstanceMethod())
811 return CXCursor_ObjCInstanceMethodDecl;
812 return CXCursor_ObjCClassMethodDecl;
813 }
814 default: break;
815 }
Steve Naroff77128dd2009-09-15 20:25:34 +0000816 return CXCursor_NotImplemented;
Steve Naroff9efa7672009-09-04 15:44:05 +0000817}
Steve Naroff600866c2009-08-27 19:51:58 +0000818//
819// CXCursor Operations.
820//
Steve Naroff9efa7672009-09-04 15:44:05 +0000821CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Steve Narofff96b5242009-10-28 20:44:47 +0000822 unsigned line, unsigned column)
Steve Naroff600866c2009-08-27 19:51:58 +0000823{
Steve Naroff9efa7672009-09-04 15:44:05 +0000824 assert(CTUnit && "Passed null CXTranslationUnit");
825 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
826
827 FileManager &FMgr = CXXUnit->getFileManager();
828 const FileEntry *File = FMgr.getFile(source_name,
Steve Naroff77128dd2009-09-15 20:25:34 +0000829 source_name+strlen(source_name));
830 if (!File) {
Steve Narofffb570422009-09-22 19:25:29 +0000831 CXCursor C = { CXCursor_InvalidFile, 0, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000832 return C;
833 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000834 SourceLocation SLoc =
835 CXXUnit->getSourceManager().getLocation(File, line, column);
836
Steve Narofff96b5242009-10-28 20:44:47 +0000837 ASTLocation LastLoc = CXXUnit->getLastASTLocation();
838
839 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc,
840 &LastLoc);
841 if (ALoc.isValid())
842 CXXUnit->setLastASTLocation(ALoc);
843
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000844 Decl *Dcl = ALoc.getParentDecl();
Argyrios Kyrtzidis05a76512009-09-29 19:45:58 +0000845 if (ALoc.isNamedRef())
846 Dcl = ALoc.AsNamedRef().ND;
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000847 Stmt *Stm = ALoc.dyn_AsStmt();
Steve Naroff4ade6d62009-09-23 17:52:52 +0000848 if (Dcl) {
849 if (Stm) {
850 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Stm)) {
851 CXCursor C = { TranslateDeclRefExpr(DRE), Dcl, Stm };
852 return C;
853 } else if (ObjCMessageExpr *MExp = dyn_cast<ObjCMessageExpr>(Stm)) {
854 CXCursor C = { CXCursor_ObjCSelectorRef, Dcl, MExp };
855 return C;
Steve Naroff85e2db72009-10-01 00:31:07 +0000856 }
Steve Naroff4ade6d62009-09-23 17:52:52 +0000857 // Fall through...treat as a decl, not a ref.
858 }
Steve Naroff85e2db72009-10-01 00:31:07 +0000859 if (ALoc.isNamedRef()) {
860 if (isa<ObjCInterfaceDecl>(Dcl)) {
861 CXCursor C = { CXCursor_ObjCClassRef, Dcl, ALoc.getParentDecl() };
862 return C;
863 }
864 if (isa<ObjCProtocolDecl>(Dcl)) {
865 CXCursor C = { CXCursor_ObjCProtocolRef, Dcl, ALoc.getParentDecl() };
866 return C;
867 }
868 }
869 CXCursor C = { TranslateKind(Dcl), Dcl, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000870 return C;
871 }
Steve Narofffb570422009-09-22 19:25:29 +0000872 CXCursor C = { CXCursor_NoDeclFound, 0, 0 };
Steve Naroff9efa7672009-09-04 15:44:05 +0000873 return C;
Steve Naroff600866c2009-08-27 19:51:58 +0000874}
875
Steve Naroff77128dd2009-09-15 20:25:34 +0000876CXCursor clang_getCursorFromDecl(CXDecl AnonDecl)
877{
878 assert(AnonDecl && "Passed null CXDecl");
879 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
880
Steve Narofffb570422009-09-22 19:25:29 +0000881 CXCursor C = { TranslateKind(ND), ND, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000882 return C;
883}
884
885unsigned clang_isInvalid(enum CXCursorKind K)
886{
887 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
888}
889
Steve Naroff89922f82009-08-31 00:59:03 +0000890unsigned clang_isDeclaration(enum CXCursorKind K)
891{
892 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
893}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000894
Steve Narofff334b4e2009-09-02 18:26:48 +0000895unsigned clang_isReference(enum CXCursorKind K)
896{
897 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
898}
899
900unsigned clang_isDefinition(enum CXCursorKind K)
901{
902 return K >= CXCursor_FirstDefn && K <= CXCursor_LastDefn;
903}
904
Steve Naroff9efa7672009-09-04 15:44:05 +0000905CXCursorKind clang_getCursorKind(CXCursor C)
906{
907 return C.kind;
908}
909
Steve Naroff699a07d2009-09-25 21:32:34 +0000910static Decl *getDeclFromExpr(Stmt *E) {
911 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
912 return RefExpr->getDecl();
913 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
914 return ME->getMemberDecl();
915 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
916 return RE->getDecl();
917
918 if (CallExpr *CE = dyn_cast<CallExpr>(E))
919 return getDeclFromExpr(CE->getCallee());
920 if (CastExpr *CE = dyn_cast<CastExpr>(E))
921 return getDeclFromExpr(CE->getSubExpr());
922 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
923 return OME->getMethodDecl();
924
925 return 0;
926}
927
Steve Naroff9efa7672009-09-04 15:44:05 +0000928CXDecl clang_getCursorDecl(CXCursor C)
929{
Steve Naroff699a07d2009-09-25 21:32:34 +0000930 if (clang_isDeclaration(C.kind))
931 return C.decl;
932
933 if (clang_isReference(C.kind)) {
Steve Naroff85e2db72009-10-01 00:31:07 +0000934 if (C.stmt) {
Steve Narofff9adf8f2009-10-05 17:58:19 +0000935 if (C.kind == CXCursor_ObjCClassRef ||
936 C.kind == CXCursor_ObjCProtocolRef)
Steve Naroff85e2db72009-10-01 00:31:07 +0000937 return static_cast<Stmt *>(C.stmt);
938 else
939 return getDeclFromExpr(static_cast<Stmt *>(C.stmt));
940 } else
Steve Naroff699a07d2009-09-25 21:32:34 +0000941 return C.decl;
942 }
943 return 0;
Steve Naroff9efa7672009-09-04 15:44:05 +0000944}
945
Steve Naroff2d4d6292009-08-31 14:26:51 +0000946unsigned clang_getCursorLine(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000947{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000948 assert(C.decl && "CXCursor has null decl");
949 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000950 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000951
952 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000953 return SourceMgr.getSpellingLineNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000954}
Steve Narofff334b4e2009-09-02 18:26:48 +0000955
Steve Naroffef0cef62009-11-09 17:45:52 +0000956// Access string.
957const char *clang_getCString(CXString string) {
958 return string.Spelling;
959}
960
961// Free CXString.
962void clang_disposeString(CXString string) {
Benjamin Kramer858e5de2009-11-09 18:24:53 +0000963 if (string.MustFreeString)
964 free((void*)string.Spelling);
Steve Naroffef0cef62009-11-09 17:45:52 +0000965}
966
Steve Naroff2d4d6292009-08-31 14:26:51 +0000967unsigned clang_getCursorColumn(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000968{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000969 assert(C.decl && "CXCursor has null decl");
970 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000971 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000972
973 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000974 return SourceMgr.getSpellingColumnNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000975}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000976const char *clang_getCursorSource(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000977{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000978 assert(C.decl && "CXCursor has null decl");
979 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000980 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000981
982 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Douglas Gregor02465752009-10-16 21:24:31 +0000983 if (SLoc.isFileID())
984 return SourceMgr.getBufferName(SLoc);
985
986 // Retrieve the file in which the macro was instantiated, then provide that
987 // buffer name.
988 // FIXME: Do we want to give specific macro-instantiation information?
989 const llvm::MemoryBuffer *Buffer
990 = SourceMgr.getBuffer(SourceMgr.getDecomposedSpellingLoc(SLoc).first);
991 if (!Buffer)
992 return 0;
993
994 return Buffer->getBufferIdentifier();
Steve Naroff600866c2009-08-27 19:51:58 +0000995}
996
Steve Naroff88145032009-10-27 14:35:18 +0000997CXFile clang_getCursorSourceFile(CXCursor C)
998{
999 assert(C.decl && "CXCursor has null decl");
1000 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
1001 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
1002
1003 return (void *)getFileEntryFromSourceLocation(SourceMgr,
1004 getLocationFromCursor(C,SourceMgr, ND));
1005}
1006
Steve Naroff4ade6d62009-09-23 17:52:52 +00001007void clang_getDefinitionSpellingAndExtent(CXCursor C,
1008 const char **startBuf,
1009 const char **endBuf,
1010 unsigned *startLine,
1011 unsigned *startColumn,
1012 unsigned *endLine,
1013 unsigned *endColumn)
1014{
1015 assert(C.decl && "CXCursor has null decl");
1016 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
1017 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
1018 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
1019
1020 SourceManager &SM = FD->getASTContext().getSourceManager();
1021 *startBuf = SM.getCharacterData(Body->getLBracLoc());
1022 *endBuf = SM.getCharacterData(Body->getRBracLoc());
1023 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
1024 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
1025 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
1026 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
1027}
1028
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001029enum CXCompletionChunkKind
1030clang_getCompletionChunkKind(CXCompletionString completion_string,
1031 unsigned chunk_number) {
1032 CodeCompletionString *CCStr = (CodeCompletionString *)completion_string;
1033 if (!CCStr || chunk_number >= CCStr->size())
1034 return CXCompletionChunk_Text;
1035
1036 switch ((*CCStr)[chunk_number].Kind) {
1037 case CodeCompletionString::CK_TypedText:
1038 return CXCompletionChunk_TypedText;
1039 case CodeCompletionString::CK_Text:
1040 return CXCompletionChunk_Text;
1041 case CodeCompletionString::CK_Optional:
1042 return CXCompletionChunk_Optional;
1043 case CodeCompletionString::CK_Placeholder:
1044 return CXCompletionChunk_Placeholder;
1045 case CodeCompletionString::CK_Informative:
1046 return CXCompletionChunk_Informative;
1047 case CodeCompletionString::CK_CurrentParameter:
1048 return CXCompletionChunk_CurrentParameter;
1049 case CodeCompletionString::CK_LeftParen:
1050 return CXCompletionChunk_LeftParen;
1051 case CodeCompletionString::CK_RightParen:
1052 return CXCompletionChunk_RightParen;
1053 case CodeCompletionString::CK_LeftBracket:
1054 return CXCompletionChunk_LeftBracket;
1055 case CodeCompletionString::CK_RightBracket:
1056 return CXCompletionChunk_RightBracket;
1057 case CodeCompletionString::CK_LeftBrace:
1058 return CXCompletionChunk_LeftBrace;
1059 case CodeCompletionString::CK_RightBrace:
1060 return CXCompletionChunk_RightBrace;
1061 case CodeCompletionString::CK_LeftAngle:
1062 return CXCompletionChunk_LeftAngle;
1063 case CodeCompletionString::CK_RightAngle:
1064 return CXCompletionChunk_RightAngle;
1065 case CodeCompletionString::CK_Comma:
1066 return CXCompletionChunk_Comma;
1067 }
1068
1069 // Should be unreachable, but let's be careful.
1070 return CXCompletionChunk_Text;
1071}
1072
1073const char *clang_getCompletionChunkText(CXCompletionString completion_string,
1074 unsigned chunk_number) {
1075 CodeCompletionString *CCStr = (CodeCompletionString *)completion_string;
1076 if (!CCStr || chunk_number >= CCStr->size())
1077 return 0;
1078
1079 switch ((*CCStr)[chunk_number].Kind) {
1080 case CodeCompletionString::CK_TypedText:
1081 case CodeCompletionString::CK_Text:
1082 case CodeCompletionString::CK_Placeholder:
1083 case CodeCompletionString::CK_CurrentParameter:
1084 case CodeCompletionString::CK_Informative:
1085 case CodeCompletionString::CK_LeftParen:
1086 case CodeCompletionString::CK_RightParen:
1087 case CodeCompletionString::CK_LeftBracket:
1088 case CodeCompletionString::CK_RightBracket:
1089 case CodeCompletionString::CK_LeftBrace:
1090 case CodeCompletionString::CK_RightBrace:
1091 case CodeCompletionString::CK_LeftAngle:
1092 case CodeCompletionString::CK_RightAngle:
1093 case CodeCompletionString::CK_Comma:
1094 return (*CCStr)[chunk_number].Text;
1095
1096 case CodeCompletionString::CK_Optional:
1097 // Note: treated as an empty text block.
1098 return 0;
1099 }
1100
1101 // Should be unreachable, but let's be careful.
1102 return 0;
1103}
1104
1105CXCompletionString
1106clang_getCompletionChunkCompletionString(CXCompletionString completion_string,
1107 unsigned chunk_number) {
1108 CodeCompletionString *CCStr = (CodeCompletionString *)completion_string;
1109 if (!CCStr || chunk_number >= CCStr->size())
1110 return 0;
1111
1112 switch ((*CCStr)[chunk_number].Kind) {
1113 case CodeCompletionString::CK_TypedText:
1114 case CodeCompletionString::CK_Text:
1115 case CodeCompletionString::CK_Placeholder:
1116 case CodeCompletionString::CK_CurrentParameter:
1117 case CodeCompletionString::CK_Informative:
1118 case CodeCompletionString::CK_LeftParen:
1119 case CodeCompletionString::CK_RightParen:
1120 case CodeCompletionString::CK_LeftBracket:
1121 case CodeCompletionString::CK_RightBracket:
1122 case CodeCompletionString::CK_LeftBrace:
1123 case CodeCompletionString::CK_RightBrace:
1124 case CodeCompletionString::CK_LeftAngle:
1125 case CodeCompletionString::CK_RightAngle:
1126 case CodeCompletionString::CK_Comma:
1127 return 0;
1128
1129 case CodeCompletionString::CK_Optional:
1130 // Note: treated as an empty text block.
1131 return (*CCStr)[chunk_number].Optional;
1132 }
1133
1134 // Should be unreachable, but let's be careful.
1135 return 0;
1136}
1137
1138unsigned clang_getNumCompletionChunks(CXCompletionString completion_string) {
1139 CodeCompletionString *CCStr = (CodeCompletionString *)completion_string;
1140 return CCStr? CCStr->size() : 0;
1141}
Steve Naroff4ade6d62009-09-23 17:52:52 +00001142
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001143static CXCursorKind parseResultKind(llvm::StringRef Str) {
1144 return llvm::StringSwitch<CXCursorKind>(Str)
1145 .Case("Typedef", CXCursor_TypedefDecl)
1146 .Case("Struct", CXCursor_StructDecl)
1147 .Case("Union", CXCursor_UnionDecl)
1148 .Case("Class", CXCursor_ClassDecl)
Douglas Gregorff4393c2009-11-09 21:35:27 +00001149 .Case("Enum", CXCursor_EnumDecl)
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001150 .Case("Field", CXCursor_FieldDecl)
1151 .Case("EnumConstant", CXCursor_EnumConstantDecl)
1152 .Case("Function", CXCursor_FunctionDecl)
1153 // FIXME: Hacks here to make C++ member functions look like C functions
1154 .Case("CXXMethod", CXCursor_FunctionDecl)
1155 .Case("CXXConstructor", CXCursor_FunctionDecl)
1156 .Case("CXXDestructor", CXCursor_FunctionDecl)
1157 .Case("CXXConversion", CXCursor_FunctionDecl)
1158 .Case("Var", CXCursor_VarDecl)
1159 .Case("ParmVar", CXCursor_ParmDecl)
1160 .Case("ObjCInterface", CXCursor_ObjCInterfaceDecl)
1161 .Case("ObjCCategory", CXCursor_ObjCCategoryDecl)
1162 .Case("ObjCProtocol", CXCursor_ObjCProtocolDecl)
1163 .Case("ObjCProperty", CXCursor_ObjCPropertyDecl)
1164 .Case("ObjCIvar", CXCursor_ObjCIvarDecl)
1165 .Case("ObjCInstanceMethod", CXCursor_ObjCInstanceMethodDecl)
1166 .Case("ObjCClassMethod", CXCursor_ObjCClassMethodDecl)
1167 .Default(CXCursor_NotImplemented);
1168}
1169
1170void clang_codeComplete(CXIndex CIdx,
1171 const char *source_filename,
1172 int num_command_line_args,
1173 const char **command_line_args,
1174 const char *complete_filename,
1175 unsigned complete_line,
1176 unsigned complete_column,
1177 CXCompletionIterator completion_iterator,
1178 CXClientData client_data) {
1179 // The indexer, which is mainly used to determine where diagnostics go.
1180 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
1181
1182 // Build up the arguments for invoking 'clang'.
1183 std::vector<const char *> argv;
1184
1185 // First add the complete path to the 'clang' executable.
1186 llvm::sys::Path ClangPath = CXXIdx->getClangPath();
1187 argv.push_back(ClangPath.c_str());
1188
1189 // Add the '-fsyntax-only' argument so that we only perform a basic
1190 // syntax check of the code.
1191 argv.push_back("-fsyntax-only");
1192
1193 // Add the appropriate '-code-completion-at=file:line:column' argument
1194 // to perform code completion, with an "-Xclang" preceding it.
1195 std::string code_complete_at;
1196 code_complete_at += "-code-completion-at=";
1197 code_complete_at += complete_filename;
1198 code_complete_at += ":";
1199 code_complete_at += llvm::utostr(complete_line);
1200 code_complete_at += ":";
1201 code_complete_at += llvm::utostr(complete_column);
1202 argv.push_back("-Xclang");
1203 argv.push_back(code_complete_at.c_str());
1204 argv.push_back("-Xclang");
1205 argv.push_back("-code-completion-printer=cindex");
1206
1207 // Add the source file name (FIXME: later, we'll want to build temporary
1208 // file from the buffer, or just feed the source text via standard input).
1209 argv.push_back(source_filename);
1210
1211 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
1212 for (int i = 0; i < num_command_line_args; ++i)
1213 if (const char *arg = command_line_args[i]) {
1214 if (strcmp(arg, "-o") == 0) {
1215 ++i; // Also skip the matching argument.
1216 continue;
1217 }
1218 if (strcmp(arg, "-emit-ast") == 0 ||
1219 strcmp(arg, "-c") == 0 ||
1220 strcmp(arg, "-fsyntax-only") == 0) {
1221 continue;
1222 }
1223
1224 // Keep the argument.
1225 argv.push_back(arg);
1226 }
1227
1228 // Add the null terminator.
1229 argv.push_back(NULL);
1230
1231 // Generate a temporary name for the AST file.
1232 char tmpFile[L_tmpnam];
1233 char *tmpFileName = tmpnam(tmpFile);
1234 llvm::sys::Path ResultsFile(tmpFileName);
1235
1236 // Invoke 'clang'.
1237 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
1238 // on Unix or NUL (Windows).
1239 std::string ErrMsg;
1240 const llvm::sys::Path *Redirects[] = { &DevNull, &ResultsFile, &DevNull, 0 };
1241 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
1242 /* redirects */ &Redirects[0],
1243 /* secondsToWait */ 0,
1244 /* memoryLimits */ 0, &ErrMsg);
1245
Ted Kremenek0854d702009-11-10 19:18:52 +00001246 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001247 llvm::errs() << "clang_codeComplete: " << ErrMsg
1248 << '\n' << "Arguments: \n";
1249 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
1250 I!=E; ++I) {
1251 if (*I)
1252 llvm::errs() << ' ' << *I << '\n';
1253 }
1254 llvm::errs() << '\n';
1255 }
1256
1257 // Parse the resulting source file to find code-completion results.
1258 using llvm::MemoryBuffer;
1259 using llvm::StringRef;
1260 if (MemoryBuffer *F = MemoryBuffer::getFile(ResultsFile.c_str())) {
1261 StringRef Buffer = F->getBuffer();
1262 do {
1263 StringRef::size_type CompletionIdx = Buffer.find("COMPLETION:");
1264 StringRef::size_type OverloadIdx = Buffer.find("OVERLOAD:");
1265 if (CompletionIdx == StringRef::npos && OverloadIdx == StringRef::npos)
1266 break;
1267
1268 if (OverloadIdx < CompletionIdx) {
1269 // Parse an overload result.
1270 Buffer = Buffer.substr(OverloadIdx);
1271
1272 // Skip past the OVERLOAD:
1273 Buffer = Buffer.substr(Buffer.find(':') + 1);
1274
1275 // Find the entire completion string.
1276 StringRef::size_type EOL = Buffer.find_first_of("\n\r");
1277 if (EOL == StringRef::npos)
1278 continue;
1279
1280 StringRef Line = Buffer.substr(0, EOL);
1281 Buffer = Buffer.substr(EOL + 1);
1282 CodeCompletionString *CCStr = CodeCompletionString::Deserialize(Line);
1283 if (!CCStr || CCStr->empty())
1284 continue;
1285
1286 // Vend the code-completion result to the caller.
1287 CXCompletionResult Result;
1288 Result.CursorKind = CXCursor_NotImplemented;
1289 Result.CompletionString = CCStr;
1290 if (completion_iterator)
1291 completion_iterator(&Result, client_data);
1292 delete CCStr;
1293
1294 continue;
1295 }
1296
1297 // Parse a completion result.
1298 Buffer = Buffer.substr(CompletionIdx);
1299
1300 // Skip past the COMPLETION:
1301 Buffer = Buffer.substr(Buffer.find(':') + 1);
1302
1303 // Get the rank
1304 unsigned Rank = 0;
1305 StringRef::size_type AfterRank = Buffer.find(':');
1306 Buffer.substr(0, AfterRank).getAsInteger(10, Rank);
1307 Buffer = Buffer.substr(AfterRank + 1);
1308
1309 // Get the kind of result.
1310 StringRef::size_type AfterKind = Buffer.find(':');
1311 StringRef Kind = Buffer.substr(0, AfterKind);
1312 Buffer = Buffer.substr(AfterKind + 1);
1313
1314 // Skip over any whitespace.
1315 Buffer = Buffer.substr(Buffer.find_first_not_of(" \t"));
1316
1317 // Find the entire completion string.
1318 StringRef::size_type EOL = Buffer.find_first_of("\n\r");
1319 if (EOL == StringRef::npos)
1320 continue;
1321
1322 StringRef Line = Buffer.substr(0, EOL);
1323 Buffer = Buffer.substr(EOL + 1);
1324 CodeCompletionString *CCStr = CodeCompletionString::Deserialize(Line);
1325 if (!CCStr || CCStr->empty())
1326 continue;
1327
1328 // Vend the code-completion result to the caller.
1329 CXCompletionResult Result;
1330 Result.CursorKind = parseResultKind(Kind);
1331 Result.CompletionString = CCStr;
1332 if (completion_iterator)
1333 completion_iterator(&Result, client_data);
1334 delete CCStr;
1335 } while (true);
1336 delete F;
1337 }
1338
1339 ResultsFile.eraseFromDisk();
1340}
1341
Steve Naroff600866c2009-08-27 19:51:58 +00001342} // end extern "C"