blob: da73ae40a396f19abc18e43ef4521594d40a8249 [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);
334#else
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000335 // This silly cast below avoids a C++ warning.
336 Dl_info info;
337 if (dladdr((void *)(uintptr_t)clang_createTranslationUnit, &info) == 0)
338 assert(0 && "Call to dladdr() failed");
339
340 llvm::sys::Path CIndexPath(info.dli_fname);
Daniel Dunbara47dd192009-10-17 23:53:11 +0000341#endif
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000342
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000343 // We now have the CIndex directory, locate clang relative to it.
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000344 CIndexPath.eraseComponent();
345 CIndexPath.eraseComponent();
346 CIndexPath.appendComponent("bin");
347 CIndexPath.appendComponent("clang");
348
349 // Cache our result.
350 ClangPath = CIndexPath;
351 return ClangPath;
352}
353
354}
355
Daniel Dunbarc6190332009-11-08 04:13:53 +0000356static SourceLocation getLocationFromCursor(CXCursor C,
357 SourceManager &SourceMgr,
358 NamedDecl *ND) {
359 if (clang_isReference(C.kind)) {
360 switch (C.kind) {
361 case CXCursor_ObjCClassRef: {
362 if (isa<ObjCInterfaceDecl>(ND)) {
363 // FIXME: This is a hack (storing the parent decl in the stmt slot).
364 NamedDecl *parentDecl = static_cast<NamedDecl *>(C.stmt);
365 return parentDecl->getLocation();
366 }
367 ObjCCategoryDecl *OID = dyn_cast<ObjCCategoryDecl>(ND);
368 assert(OID && "clang_getCursorLine(): Missing category decl");
369 return OID->getClassInterface()->getLocation();
370 }
371 case CXCursor_ObjCSuperClassRef: {
372 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
373 assert(OID && "clang_getCursorLine(): Missing interface decl");
374 return OID->getSuperClassLoc();
375 }
376 case CXCursor_ObjCProtocolRef: {
377 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
378 assert(OID && "clang_getCursorLine(): Missing protocol decl");
379 return OID->getLocation();
380 }
381 case CXCursor_ObjCSelectorRef: {
382 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(
383 static_cast<Stmt *>(C.stmt));
384 assert(OME && "clang_getCursorLine(): Missing message expr");
385 return OME->getLeftLoc(); /* FIXME: should be a range */
386 }
387 case CXCursor_VarRef:
388 case CXCursor_FunctionRef:
389 case CXCursor_EnumConstantRef: {
390 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(
391 static_cast<Stmt *>(C.stmt));
392 assert(DRE && "clang_getCursorLine(): Missing decl ref expr");
393 return DRE->getLocation();
394 }
395 default:
396 return SourceLocation();
397 }
398 } else { // We have a declaration or a definition.
399 SourceLocation SLoc;
400 switch (ND->getKind()) {
401 case Decl::ObjCInterface: {
402 SLoc = dyn_cast<ObjCInterfaceDecl>(ND)->getClassLoc();
403 break;
404 }
405 case Decl::ObjCProtocol: {
406 SLoc = ND->getLocation(); /* FIXME: need to get the name location. */
407 break;
408 }
409 default: {
410 SLoc = ND->getLocation();
411 break;
412 }
413 }
414 if (SLoc.isInvalid())
415 return SourceLocation();
416 return SourceMgr.getSpellingLoc(SLoc); // handles macro instantiations.
417 }
418}
419
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000420static CXString createCXString(const char *String, bool DupString = false) {
421 CXString Str;
422 if (DupString) {
423 Str.Spelling = strdup(String);
424 Str.MustFreeString = 1;
425 } else {
426 Str.Spelling = String;
427 Str.MustFreeString = 0;
428 }
429 return Str;
430}
431
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000432extern "C" {
433
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000434CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
435 int displayDiagnostics)
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000436{
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000437 CIndexer *CIdxr = new CIndexer(new Program());
438 if (excludeDeclarationsFromPCH)
439 CIdxr->setOnlyLocalDecls();
440 if (displayDiagnostics)
441 CIdxr->setDisplayDiagnostics();
442 return CIdxr;
Steve Naroff600866c2009-08-27 19:51:58 +0000443}
444
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000445void clang_disposeIndex(CXIndex CIdx)
446{
447 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000448 delete static_cast<CIndexer *>(CIdx);
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000449}
450
Steve Naroff50398192009-08-28 15:28:48 +0000451// FIXME: need to pass back error info.
452CXTranslationUnit clang_createTranslationUnit(
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000453 CXIndex CIdx, const char *ast_filename)
Steve Naroff600866c2009-08-27 19:51:58 +0000454{
Steve Naroff50398192009-08-28 15:28:48 +0000455 assert(CIdx && "Passed null CXIndex");
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000456 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
Steve Naroff50398192009-08-28 15:28:48 +0000457 std::string astName(ast_filename);
458 std::string ErrMsg;
459
Ted Kremenek379afec2009-10-22 03:24:01 +0000460 CXTranslationUnit TU =
461 ASTUnit::LoadFromPCHFile(astName, &ErrMsg,
462 CXXIdx->getDisplayDiagnostics() ?
463 NULL : new IgnoreDiagnosticsClient(),
464 CXXIdx->getOnlyLocalDecls(),
465 /* UseBumpAllocator = */ true);
466
Ted Kremenek0854d702009-11-10 19:18:52 +0000467 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty())
Ted Kremenek779e5f42009-10-26 22:08:39 +0000468 llvm::errs() << "clang_createTranslationUnit: " << ErrMsg << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +0000469
470 return TU;
Steve Naroff600866c2009-08-27 19:51:58 +0000471}
472
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000473CXTranslationUnit clang_createTranslationUnitFromSourceFile(
474 CXIndex CIdx,
475 const char *source_filename,
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000476 int num_command_line_args, const char **command_line_args) {
477 assert(CIdx && "Passed null CXIndex");
478 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
479
Ted Kremenek139ba862009-10-22 00:03:57 +0000480 // Build up the arguments for invoking 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000481 std::vector<const char *> argv;
Ted Kremenek139ba862009-10-22 00:03:57 +0000482
483 // First add the complete path to the 'clang' executable.
484 llvm::sys::Path ClangPath = static_cast<CIndexer *>(CIdx)->getClangPath();
Benjamin Kramer5e4bc592009-10-18 16:11:04 +0000485 argv.push_back(ClangPath.c_str());
Ted Kremenek139ba862009-10-22 00:03:57 +0000486
487 // Add the '-emit-ast' option as our execution mode for 'clang'.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000488 argv.push_back("-emit-ast");
Ted Kremenek139ba862009-10-22 00:03:57 +0000489
490 // The 'source_filename' argument is optional. If the caller does not
491 // specify it then it is assumed that the source file is specified
492 // in the actual argument list.
493 if (source_filename)
494 argv.push_back(source_filename);
495
Steve Naroff37b5ac22009-10-15 20:50:09 +0000496 // Generate a temporary name for the AST file.
Ted Kremenek139ba862009-10-22 00:03:57 +0000497 argv.push_back("-o");
Steve Naroff37b5ac22009-10-15 20:50:09 +0000498 char astTmpFile[L_tmpnam];
Ted Kremenek74cd0692009-10-15 23:21:22 +0000499 argv.push_back(tmpnam(astTmpFile));
Ted Kremenek139ba862009-10-22 00:03:57 +0000500
501 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
502 for (int i = 0; i < num_command_line_args; ++i)
503 if (const char *arg = command_line_args[i]) {
504 if (strcmp(arg, "-o") == 0) {
505 ++i; // Also skip the matching argument.
506 continue;
507 }
508 if (strcmp(arg, "-emit-ast") == 0 ||
509 strcmp(arg, "-c") == 0 ||
510 strcmp(arg, "-fsyntax-only") == 0) {
511 continue;
512 }
513
514 // Keep the argument.
515 argv.push_back(arg);
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000516 }
Ted Kremenek139ba862009-10-22 00:03:57 +0000517
518 // Add the null terminator.
Ted Kremenek74cd0692009-10-15 23:21:22 +0000519 argv.push_back(NULL);
520
Ted Kremenekfeb15e32009-10-26 22:14:08 +0000521 // Invoke 'clang'.
522 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
523 // on Unix or NUL (Windows).
Ted Kremenek379afec2009-10-22 03:24:01 +0000524 std::string ErrMsg;
Ted Kremenekc46e4632009-10-19 22:27:32 +0000525 const llvm::sys::Path *Redirects[] = { &DevNull, &DevNull, &DevNull, NULL };
Ted Kremenek379afec2009-10-22 03:24:01 +0000526 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
527 /* redirects */ !CXXIdx->getDisplayDiagnostics() ? &Redirects[0] : NULL,
528 /* secondsToWait */ 0, /* memoryLimits */ 0, &ErrMsg);
529
Ted Kremenek0854d702009-11-10 19:18:52 +0000530 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Ted Kremenek379afec2009-10-22 03:24:01 +0000531 llvm::errs() << "clang_createTranslationUnitFromSourceFile: " << ErrMsg
532 << '\n' << "Arguments: \n";
533 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
Ted Kremenek779e5f42009-10-26 22:08:39 +0000534 I!=E; ++I) {
535 if (*I)
536 llvm::errs() << ' ' << *I << '\n';
537 }
538 llvm::errs() << '\n';
Ted Kremenek379afec2009-10-22 03:24:01 +0000539 }
Benjamin Kramer0829a832009-10-18 11:19:36 +0000540
Steve Naroff37b5ac22009-10-15 20:50:09 +0000541 // Finally, we create the translation unit from the ast file.
Steve Naroffe19944c2009-10-15 22:23:48 +0000542 ASTUnit *ATU = static_cast<ASTUnit *>(
Steve Naroffe56b4ba2009-10-20 14:46:24 +0000543 clang_createTranslationUnit(CIdx, astTmpFile));
544 if (ATU)
545 ATU->unlinkTemporaryFile();
Steve Naroffe19944c2009-10-15 22:23:48 +0000546 return ATU;
Steve Naroff5b7d8e22009-10-15 20:04:39 +0000547}
548
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000549void clang_disposeTranslationUnit(
550 CXTranslationUnit CTUnit)
551{
552 assert(CTUnit && "Passed null CXTranslationUnit");
553 delete static_cast<ASTUnit *>(CTUnit);
554}
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000555
Steve Naroffef0cef62009-11-09 17:45:52 +0000556CXString clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit)
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000557{
558 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000559 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000560 return createCXString(CXXUnit->getOriginalSourceFileName().c_str(), true);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000561}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000562
Steve Naroffc857ea42009-09-02 13:28:54 +0000563void clang_loadTranslationUnit(CXTranslationUnit CTUnit,
564 CXTranslationUnitIterator callback,
565 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000566{
Steve Naroff50398192009-08-28 15:28:48 +0000567 assert(CTUnit && "Passed null CXTranslationUnit");
568 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
569 ASTContext &Ctx = CXXUnit->getASTContext();
570
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000571 TUVisitor DVisit(CTUnit, callback, CData,
572 CXXUnit->getOnlyLocalDecls()? 1 : Decl::MaxPCHLevel);
Steve Naroff50398192009-08-28 15:28:48 +0000573 DVisit.Visit(Ctx.getTranslationUnitDecl());
Steve Naroff600866c2009-08-27 19:51:58 +0000574}
575
Steve Naroffc857ea42009-09-02 13:28:54 +0000576void clang_loadDeclaration(CXDecl Dcl,
577 CXDeclIterator callback,
578 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000579{
Steve Naroffc857ea42009-09-02 13:28:54 +0000580 assert(Dcl && "Passed null CXDecl");
581
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000582 CDeclVisitor DVisit(Dcl, callback, CData,
583 static_cast<Decl *>(Dcl)->getPCHLevel());
Steve Naroffc857ea42009-09-02 13:28:54 +0000584 DVisit.Visit(static_cast<Decl *>(Dcl));
Steve Naroff600866c2009-08-27 19:51:58 +0000585}
586
Steve Naroff7e8f8182009-08-28 12:07:44 +0000587// Some notes on CXEntity:
588//
589// - Since the 'ordinary' namespace includes functions, data, typedefs,
590// ObjC interfaces, thecurrent algorithm is a bit naive (resulting in one
591// entity for 2 different types). For example:
592//
593// module1.m: @interface Foo @end Foo *x;
594// module2.m: void Foo(int);
595//
596// - Since the unique name spans translation units, static data/functions
597// within a CXTranslationUnit are *not* currently represented by entities.
598// As a result, there will be no entity for the following:
599//
600// module.m: static void Foo() { }
601//
602
603
Steve Naroff600866c2009-08-27 19:51:58 +0000604const char *clang_getDeclarationName(CXEntity)
605{
606 return "";
607}
608const char *clang_getURI(CXEntity)
609{
610 return "";
611}
612
613CXEntity clang_getEntity(const char *URI)
614{
615 return 0;
616}
617
618//
619// CXDecl Operations.
620//
Steve Naroff600866c2009-08-27 19:51:58 +0000621CXEntity clang_getEntityFromDecl(CXDecl)
622{
623 return 0;
624}
Steve Naroffef0cef62009-11-09 17:45:52 +0000625CXString clang_getDeclSpelling(CXDecl AnonDecl)
Steve Naroff600866c2009-08-27 19:51:58 +0000626{
Steve Naroff89922f82009-08-31 00:59:03 +0000627 assert(AnonDecl && "Passed null CXDecl");
628 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
Steve Naroffef0cef62009-11-09 17:45:52 +0000629
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000630 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
631 return createCXString(OMD->getSelector().getAsString().c_str(), true);
632
633 if (ObjCCategoryImplDecl *CIMP = dyn_cast<ObjCCategoryImplDecl>(ND))
Steve Naroff0d69b8c2009-10-29 21:11:04 +0000634 // No, this isn't the same as the code below. getIdentifier() is non-virtual
635 // and returns different names. NamedDecl returns the class name and
636 // ObjCCategoryImplDecl returns the category name.
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000637 return createCXString(CIMP->getIdentifier()->getNameStart());
638
639 if (ND->getIdentifier())
640 return createCXString(ND->getIdentifier()->getNameStart());
641
642 return createCXString("");
Steve Naroff600866c2009-08-27 19:51:58 +0000643}
Steve Narofff334b4e2009-09-02 18:26:48 +0000644
Steve Naroff699a07d2009-09-25 21:32:34 +0000645unsigned clang_getDeclLine(CXDecl AnonDecl)
646{
647 assert(AnonDecl && "Passed null CXDecl");
648 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
649 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
650 return SourceMgr.getSpellingLineNumber(ND->getLocation());
651}
652
653unsigned clang_getDeclColumn(CXDecl AnonDecl)
654{
655 assert(AnonDecl && "Passed null CXDecl");
656 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
657 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff74165242009-09-25 22:15:54 +0000658 return SourceMgr.getSpellingColumnNumber(ND->getLocation());
Steve Naroff699a07d2009-09-25 21:32:34 +0000659}
660
Steve Naroffee9405e2009-09-25 21:45:39 +0000661const char *clang_getDeclSource(CXDecl AnonDecl)
662{
663 assert(AnonDecl && "Passed null CXDecl");
Steve Naroff88145032009-10-27 14:35:18 +0000664 FileEntry *FEnt = static_cast<FileEntry *>(clang_getDeclSourceFile(AnonDecl));
665 assert (FEnt && "Cannot find FileEntry for Decl");
666 return clang_getFileName(FEnt);
667}
668
669static const FileEntry *getFileEntryFromSourceLocation(SourceManager &SMgr,
670 SourceLocation SLoc)
671{
672 FileID FID;
673 if (SLoc.isFileID())
674 FID = SMgr.getFileID(SLoc);
675 else
676 FID = SMgr.getDecomposedSpellingLoc(SLoc).first;
677 return SMgr.getFileEntryForID(FID);
678}
679
680CXFile clang_getDeclSourceFile(CXDecl AnonDecl)
681{
682 assert(AnonDecl && "Passed null CXDecl");
Steve Naroffee9405e2009-09-25 21:45:39 +0000683 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
684 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Naroff88145032009-10-27 14:35:18 +0000685 return (void *)getFileEntryFromSourceLocation(SourceMgr, ND->getLocation());
686}
687
688const char *clang_getFileName(CXFile SFile) {
689 assert(SFile && "Passed null CXFile");
690 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
691 return FEnt->getName();
692}
693
694time_t clang_getFileTime(CXFile SFile) {
695 assert(SFile && "Passed null CXFile");
696 FileEntry *FEnt = static_cast<FileEntry *>(SFile);
697 return FEnt->getModificationTime();
Steve Naroffee9405e2009-09-25 21:45:39 +0000698}
699
Steve Naroffef0cef62009-11-09 17:45:52 +0000700CXString clang_getCursorSpelling(CXCursor C)
Steve Narofff334b4e2009-09-02 18:26:48 +0000701{
702 assert(C.decl && "CXCursor has null decl");
703 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroffef0cef62009-11-09 17:45:52 +0000704
Steve Narofff334b4e2009-09-02 18:26:48 +0000705 if (clang_isReference(C.kind)) {
706 switch (C.kind) {
Steve Naroffbade7de2009-10-19 13:41:39 +0000707 case CXCursor_ObjCSuperClassRef: {
Steve Narofff334b4e2009-09-02 18:26:48 +0000708 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
709 assert(OID && "clang_getCursorLine(): Missing interface decl");
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000710 return createCXString(OID->getSuperClass()->getIdentifier()
711 ->getNameStart());
Steve Naroffbade7de2009-10-19 13:41:39 +0000712 }
713 case CXCursor_ObjCClassRef: {
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000714 if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND))
715 return createCXString(OID->getIdentifier()->getNameStart());
716
717 ObjCCategoryDecl *OCD = dyn_cast<ObjCCategoryDecl>(ND);
718 assert(OCD && "clang_getCursorLine(): Missing category decl");
719 return createCXString(OCD->getClassInterface()->getIdentifier()
720 ->getNameStart());
Steve Naroffbade7de2009-10-19 13:41:39 +0000721 }
722 case CXCursor_ObjCProtocolRef: {
Steve Naroff9efa7672009-09-04 15:44:05 +0000723 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
724 assert(OID && "clang_getCursorLine(): Missing protocol decl");
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000725 return createCXString(OID->getIdentifier()->getNameStart());
Steve Naroffbade7de2009-10-19 13:41:39 +0000726 }
727 case CXCursor_ObjCSelectorRef: {
Steve Narofffb570422009-09-22 19:25:29 +0000728 ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(
729 static_cast<Stmt *>(C.stmt));
730 assert(OME && "clang_getCursorLine(): Missing message expr");
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000731 return createCXString(OME->getSelector().getAsString().c_str(), true);
Steve Naroffbade7de2009-10-19 13:41:39 +0000732 }
Steve Narofffb570422009-09-22 19:25:29 +0000733 case CXCursor_VarRef:
734 case CXCursor_FunctionRef:
Steve Naroffbade7de2009-10-19 13:41:39 +0000735 case CXCursor_EnumConstantRef: {
Steve Narofffb570422009-09-22 19:25:29 +0000736 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(
737 static_cast<Stmt *>(C.stmt));
738 assert(DRE && "clang_getCursorLine(): Missing decl ref expr");
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000739 return createCXString(DRE->getDecl()->getIdentifier()->getNameStart());
Steve Naroffbade7de2009-10-19 13:41:39 +0000740 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000741 default:
Benjamin Kramer62cf3222009-11-09 19:13:48 +0000742 return createCXString("<not implemented>");
Steve Narofff334b4e2009-09-02 18:26:48 +0000743 }
744 }
745 return clang_getDeclSpelling(C.decl);
746}
747
748const char *clang_getCursorKindSpelling(enum CXCursorKind Kind)
Steve Naroff600866c2009-08-27 19:51:58 +0000749{
Steve Naroff89922f82009-08-31 00:59:03 +0000750 switch (Kind) {
751 case CXCursor_FunctionDecl: return "FunctionDecl";
752 case CXCursor_TypedefDecl: return "TypedefDecl";
753 case CXCursor_EnumDecl: return "EnumDecl";
754 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000755 case CXCursor_StructDecl: return "StructDecl";
756 case CXCursor_UnionDecl: return "UnionDecl";
757 case CXCursor_ClassDecl: return "ClassDecl";
Steve Naroff89922f82009-08-31 00:59:03 +0000758 case CXCursor_FieldDecl: return "FieldDecl";
759 case CXCursor_VarDecl: return "VarDecl";
760 case CXCursor_ParmDecl: return "ParmDecl";
761 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
762 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
763 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
764 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
765 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000766 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
767 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
768 case CXCursor_FunctionDefn: return "FunctionDefn";
769 case CXCursor_ObjCInstanceMethodDefn: return "ObjCInstanceMethodDefn";
770 case CXCursor_ObjCClassMethodDefn: return "ObjCClassMethodDefn";
771 case CXCursor_ObjCClassDefn: return "ObjCClassDefn";
772 case CXCursor_ObjCCategoryDefn: return "ObjCCategoryDefn";
Steve Narofff334b4e2009-09-02 18:26:48 +0000773 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
Steve Naroff9efa7672009-09-04 15:44:05 +0000774 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000775 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Steve Narofffb570422009-09-22 19:25:29 +0000776 case CXCursor_ObjCSelectorRef: return "ObjCSelectorRef";
777
778 case CXCursor_VarRef: return "VarRef";
779 case CXCursor_FunctionRef: return "FunctionRef";
780 case CXCursor_EnumConstantRef: return "EnumConstantRef";
781 case CXCursor_MemberRef: return "MemberRef";
782
Steve Naroff77128dd2009-09-15 20:25:34 +0000783 case CXCursor_InvalidFile: return "InvalidFile";
784 case CXCursor_NoDeclFound: return "NoDeclFound";
785 case CXCursor_NotImplemented: return "NotImplemented";
Steve Naroff89922f82009-08-31 00:59:03 +0000786 default: return "<not implemented>";
787 }
Steve Naroff600866c2009-08-27 19:51:58 +0000788}
Steve Naroff89922f82009-08-31 00:59:03 +0000789
Steve Naroff9efa7672009-09-04 15:44:05 +0000790static enum CXCursorKind TranslateKind(Decl *D) {
791 switch (D->getKind()) {
792 case Decl::Function: return CXCursor_FunctionDecl;
793 case Decl::Typedef: return CXCursor_TypedefDecl;
794 case Decl::Enum: return CXCursor_EnumDecl;
795 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
796 case Decl::Record: return CXCursor_StructDecl; // FIXME: union/class
797 case Decl::Field: return CXCursor_FieldDecl;
798 case Decl::Var: return CXCursor_VarDecl;
799 case Decl::ParmVar: return CXCursor_ParmDecl;
800 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Steve Narofffb570422009-09-22 19:25:29 +0000801 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
802 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Steve Naroff9efa7672009-09-04 15:44:05 +0000803 case Decl::ObjCMethod: {
804 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D);
805 if (MD->isInstanceMethod())
806 return CXCursor_ObjCInstanceMethodDecl;
807 return CXCursor_ObjCClassMethodDecl;
808 }
809 default: break;
810 }
Steve Naroff77128dd2009-09-15 20:25:34 +0000811 return CXCursor_NotImplemented;
Steve Naroff9efa7672009-09-04 15:44:05 +0000812}
Steve Naroff600866c2009-08-27 19:51:58 +0000813//
814// CXCursor Operations.
815//
Steve Naroff9efa7672009-09-04 15:44:05 +0000816CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Steve Narofff96b5242009-10-28 20:44:47 +0000817 unsigned line, unsigned column)
Steve Naroff600866c2009-08-27 19:51:58 +0000818{
Steve Naroff9efa7672009-09-04 15:44:05 +0000819 assert(CTUnit && "Passed null CXTranslationUnit");
820 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
821
822 FileManager &FMgr = CXXUnit->getFileManager();
823 const FileEntry *File = FMgr.getFile(source_name,
Steve Naroff77128dd2009-09-15 20:25:34 +0000824 source_name+strlen(source_name));
825 if (!File) {
Steve Narofffb570422009-09-22 19:25:29 +0000826 CXCursor C = { CXCursor_InvalidFile, 0, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000827 return C;
828 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000829 SourceLocation SLoc =
830 CXXUnit->getSourceManager().getLocation(File, line, column);
831
Steve Narofff96b5242009-10-28 20:44:47 +0000832 ASTLocation LastLoc = CXXUnit->getLastASTLocation();
833
834 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc,
835 &LastLoc);
836 if (ALoc.isValid())
837 CXXUnit->setLastASTLocation(ALoc);
838
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000839 Decl *Dcl = ALoc.getParentDecl();
Argyrios Kyrtzidis05a76512009-09-29 19:45:58 +0000840 if (ALoc.isNamedRef())
841 Dcl = ALoc.AsNamedRef().ND;
Argyrios Kyrtzidisf4526e32009-09-29 19:44:27 +0000842 Stmt *Stm = ALoc.dyn_AsStmt();
Steve Naroff4ade6d62009-09-23 17:52:52 +0000843 if (Dcl) {
844 if (Stm) {
845 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Stm)) {
846 CXCursor C = { TranslateDeclRefExpr(DRE), Dcl, Stm };
847 return C;
848 } else if (ObjCMessageExpr *MExp = dyn_cast<ObjCMessageExpr>(Stm)) {
849 CXCursor C = { CXCursor_ObjCSelectorRef, Dcl, MExp };
850 return C;
Steve Naroff85e2db72009-10-01 00:31:07 +0000851 }
Steve Naroff4ade6d62009-09-23 17:52:52 +0000852 // Fall through...treat as a decl, not a ref.
853 }
Steve Naroff85e2db72009-10-01 00:31:07 +0000854 if (ALoc.isNamedRef()) {
855 if (isa<ObjCInterfaceDecl>(Dcl)) {
856 CXCursor C = { CXCursor_ObjCClassRef, Dcl, ALoc.getParentDecl() };
857 return C;
858 }
859 if (isa<ObjCProtocolDecl>(Dcl)) {
860 CXCursor C = { CXCursor_ObjCProtocolRef, Dcl, ALoc.getParentDecl() };
861 return C;
862 }
863 }
864 CXCursor C = { TranslateKind(Dcl), Dcl, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000865 return C;
866 }
Steve Narofffb570422009-09-22 19:25:29 +0000867 CXCursor C = { CXCursor_NoDeclFound, 0, 0 };
Steve Naroff9efa7672009-09-04 15:44:05 +0000868 return C;
Steve Naroff600866c2009-08-27 19:51:58 +0000869}
870
Steve Naroff77128dd2009-09-15 20:25:34 +0000871CXCursor clang_getCursorFromDecl(CXDecl AnonDecl)
872{
873 assert(AnonDecl && "Passed null CXDecl");
874 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
875
Steve Narofffb570422009-09-22 19:25:29 +0000876 CXCursor C = { TranslateKind(ND), ND, 0 };
Steve Naroff77128dd2009-09-15 20:25:34 +0000877 return C;
878}
879
880unsigned clang_isInvalid(enum CXCursorKind K)
881{
882 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
883}
884
Steve Naroff89922f82009-08-31 00:59:03 +0000885unsigned clang_isDeclaration(enum CXCursorKind K)
886{
887 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
888}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000889
Steve Narofff334b4e2009-09-02 18:26:48 +0000890unsigned clang_isReference(enum CXCursorKind K)
891{
892 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
893}
894
895unsigned clang_isDefinition(enum CXCursorKind K)
896{
897 return K >= CXCursor_FirstDefn && K <= CXCursor_LastDefn;
898}
899
Steve Naroff9efa7672009-09-04 15:44:05 +0000900CXCursorKind clang_getCursorKind(CXCursor C)
901{
902 return C.kind;
903}
904
Steve Naroff699a07d2009-09-25 21:32:34 +0000905static Decl *getDeclFromExpr(Stmt *E) {
906 if (DeclRefExpr *RefExpr = dyn_cast<DeclRefExpr>(E))
907 return RefExpr->getDecl();
908 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
909 return ME->getMemberDecl();
910 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(E))
911 return RE->getDecl();
912
913 if (CallExpr *CE = dyn_cast<CallExpr>(E))
914 return getDeclFromExpr(CE->getCallee());
915 if (CastExpr *CE = dyn_cast<CastExpr>(E))
916 return getDeclFromExpr(CE->getSubExpr());
917 if (ObjCMessageExpr *OME = dyn_cast<ObjCMessageExpr>(E))
918 return OME->getMethodDecl();
919
920 return 0;
921}
922
Steve Naroff9efa7672009-09-04 15:44:05 +0000923CXDecl clang_getCursorDecl(CXCursor C)
924{
Steve Naroff699a07d2009-09-25 21:32:34 +0000925 if (clang_isDeclaration(C.kind))
926 return C.decl;
927
928 if (clang_isReference(C.kind)) {
Steve Naroff85e2db72009-10-01 00:31:07 +0000929 if (C.stmt) {
Steve Narofff9adf8f2009-10-05 17:58:19 +0000930 if (C.kind == CXCursor_ObjCClassRef ||
931 C.kind == CXCursor_ObjCProtocolRef)
Steve Naroff85e2db72009-10-01 00:31:07 +0000932 return static_cast<Stmt *>(C.stmt);
933 else
934 return getDeclFromExpr(static_cast<Stmt *>(C.stmt));
935 } else
Steve Naroff699a07d2009-09-25 21:32:34 +0000936 return C.decl;
937 }
938 return 0;
Steve Naroff9efa7672009-09-04 15:44:05 +0000939}
940
Steve Naroff2d4d6292009-08-31 14:26:51 +0000941unsigned clang_getCursorLine(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000942{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000943 assert(C.decl && "CXCursor has null decl");
944 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000945 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000946
947 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000948 return SourceMgr.getSpellingLineNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000949}
Steve Narofff334b4e2009-09-02 18:26:48 +0000950
Steve Naroffef0cef62009-11-09 17:45:52 +0000951// Access string.
952const char *clang_getCString(CXString string) {
953 return string.Spelling;
954}
955
956// Free CXString.
957void clang_disposeString(CXString string) {
Benjamin Kramer858e5de2009-11-09 18:24:53 +0000958 if (string.MustFreeString)
959 free((void*)string.Spelling);
Steve Naroffef0cef62009-11-09 17:45:52 +0000960}
961
Steve Naroff2d4d6292009-08-31 14:26:51 +0000962unsigned clang_getCursorColumn(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000963{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000964 assert(C.decl && "CXCursor has null decl");
965 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000966 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000967
968 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000969 return SourceMgr.getSpellingColumnNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000970}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000971const char *clang_getCursorSource(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000972{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000973 assert(C.decl && "CXCursor has null decl");
974 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000975 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000976
977 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Douglas Gregor02465752009-10-16 21:24:31 +0000978 if (SLoc.isFileID())
979 return SourceMgr.getBufferName(SLoc);
980
981 // Retrieve the file in which the macro was instantiated, then provide that
982 // buffer name.
983 // FIXME: Do we want to give specific macro-instantiation information?
984 const llvm::MemoryBuffer *Buffer
985 = SourceMgr.getBuffer(SourceMgr.getDecomposedSpellingLoc(SLoc).first);
986 if (!Buffer)
987 return 0;
988
989 return Buffer->getBufferIdentifier();
Steve Naroff600866c2009-08-27 19:51:58 +0000990}
991
Steve Naroff88145032009-10-27 14:35:18 +0000992CXFile clang_getCursorSourceFile(CXCursor C)
993{
994 assert(C.decl && "CXCursor has null decl");
995 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
996 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
997
998 return (void *)getFileEntryFromSourceLocation(SourceMgr,
999 getLocationFromCursor(C,SourceMgr, ND));
1000}
1001
Steve Naroff4ade6d62009-09-23 17:52:52 +00001002void clang_getDefinitionSpellingAndExtent(CXCursor C,
1003 const char **startBuf,
1004 const char **endBuf,
1005 unsigned *startLine,
1006 unsigned *startColumn,
1007 unsigned *endLine,
1008 unsigned *endColumn)
1009{
1010 assert(C.decl && "CXCursor has null decl");
1011 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
1012 FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
1013 CompoundStmt *Body = dyn_cast<CompoundStmt>(FD->getBody());
1014
1015 SourceManager &SM = FD->getASTContext().getSourceManager();
1016 *startBuf = SM.getCharacterData(Body->getLBracLoc());
1017 *endBuf = SM.getCharacterData(Body->getRBracLoc());
1018 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
1019 *startColumn = SM.getSpellingColumnNumber(Body->getLBracLoc());
1020 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc());
1021 *endColumn = SM.getSpellingColumnNumber(Body->getRBracLoc());
1022}
1023
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001024enum CXCompletionChunkKind
1025clang_getCompletionChunkKind(CXCompletionString completion_string,
1026 unsigned chunk_number) {
1027 CodeCompletionString *CCStr = (CodeCompletionString *)completion_string;
1028 if (!CCStr || chunk_number >= CCStr->size())
1029 return CXCompletionChunk_Text;
1030
1031 switch ((*CCStr)[chunk_number].Kind) {
1032 case CodeCompletionString::CK_TypedText:
1033 return CXCompletionChunk_TypedText;
1034 case CodeCompletionString::CK_Text:
1035 return CXCompletionChunk_Text;
1036 case CodeCompletionString::CK_Optional:
1037 return CXCompletionChunk_Optional;
1038 case CodeCompletionString::CK_Placeholder:
1039 return CXCompletionChunk_Placeholder;
1040 case CodeCompletionString::CK_Informative:
1041 return CXCompletionChunk_Informative;
1042 case CodeCompletionString::CK_CurrentParameter:
1043 return CXCompletionChunk_CurrentParameter;
1044 case CodeCompletionString::CK_LeftParen:
1045 return CXCompletionChunk_LeftParen;
1046 case CodeCompletionString::CK_RightParen:
1047 return CXCompletionChunk_RightParen;
1048 case CodeCompletionString::CK_LeftBracket:
1049 return CXCompletionChunk_LeftBracket;
1050 case CodeCompletionString::CK_RightBracket:
1051 return CXCompletionChunk_RightBracket;
1052 case CodeCompletionString::CK_LeftBrace:
1053 return CXCompletionChunk_LeftBrace;
1054 case CodeCompletionString::CK_RightBrace:
1055 return CXCompletionChunk_RightBrace;
1056 case CodeCompletionString::CK_LeftAngle:
1057 return CXCompletionChunk_LeftAngle;
1058 case CodeCompletionString::CK_RightAngle:
1059 return CXCompletionChunk_RightAngle;
1060 case CodeCompletionString::CK_Comma:
1061 return CXCompletionChunk_Comma;
1062 }
1063
1064 // Should be unreachable, but let's be careful.
1065 return CXCompletionChunk_Text;
1066}
1067
1068const char *clang_getCompletionChunkText(CXCompletionString completion_string,
1069 unsigned chunk_number) {
1070 CodeCompletionString *CCStr = (CodeCompletionString *)completion_string;
1071 if (!CCStr || chunk_number >= CCStr->size())
1072 return 0;
1073
1074 switch ((*CCStr)[chunk_number].Kind) {
1075 case CodeCompletionString::CK_TypedText:
1076 case CodeCompletionString::CK_Text:
1077 case CodeCompletionString::CK_Placeholder:
1078 case CodeCompletionString::CK_CurrentParameter:
1079 case CodeCompletionString::CK_Informative:
1080 case CodeCompletionString::CK_LeftParen:
1081 case CodeCompletionString::CK_RightParen:
1082 case CodeCompletionString::CK_LeftBracket:
1083 case CodeCompletionString::CK_RightBracket:
1084 case CodeCompletionString::CK_LeftBrace:
1085 case CodeCompletionString::CK_RightBrace:
1086 case CodeCompletionString::CK_LeftAngle:
1087 case CodeCompletionString::CK_RightAngle:
1088 case CodeCompletionString::CK_Comma:
1089 return (*CCStr)[chunk_number].Text;
1090
1091 case CodeCompletionString::CK_Optional:
1092 // Note: treated as an empty text block.
1093 return 0;
1094 }
1095
1096 // Should be unreachable, but let's be careful.
1097 return 0;
1098}
1099
1100CXCompletionString
1101clang_getCompletionChunkCompletionString(CXCompletionString completion_string,
1102 unsigned chunk_number) {
1103 CodeCompletionString *CCStr = (CodeCompletionString *)completion_string;
1104 if (!CCStr || chunk_number >= CCStr->size())
1105 return 0;
1106
1107 switch ((*CCStr)[chunk_number].Kind) {
1108 case CodeCompletionString::CK_TypedText:
1109 case CodeCompletionString::CK_Text:
1110 case CodeCompletionString::CK_Placeholder:
1111 case CodeCompletionString::CK_CurrentParameter:
1112 case CodeCompletionString::CK_Informative:
1113 case CodeCompletionString::CK_LeftParen:
1114 case CodeCompletionString::CK_RightParen:
1115 case CodeCompletionString::CK_LeftBracket:
1116 case CodeCompletionString::CK_RightBracket:
1117 case CodeCompletionString::CK_LeftBrace:
1118 case CodeCompletionString::CK_RightBrace:
1119 case CodeCompletionString::CK_LeftAngle:
1120 case CodeCompletionString::CK_RightAngle:
1121 case CodeCompletionString::CK_Comma:
1122 return 0;
1123
1124 case CodeCompletionString::CK_Optional:
1125 // Note: treated as an empty text block.
1126 return (*CCStr)[chunk_number].Optional;
1127 }
1128
1129 // Should be unreachable, but let's be careful.
1130 return 0;
1131}
1132
1133unsigned clang_getNumCompletionChunks(CXCompletionString completion_string) {
1134 CodeCompletionString *CCStr = (CodeCompletionString *)completion_string;
1135 return CCStr? CCStr->size() : 0;
1136}
Steve Naroff4ade6d62009-09-23 17:52:52 +00001137
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001138static CXCursorKind parseResultKind(llvm::StringRef Str) {
1139 return llvm::StringSwitch<CXCursorKind>(Str)
1140 .Case("Typedef", CXCursor_TypedefDecl)
1141 .Case("Struct", CXCursor_StructDecl)
1142 .Case("Union", CXCursor_UnionDecl)
1143 .Case("Class", CXCursor_ClassDecl)
Douglas Gregorff4393c2009-11-09 21:35:27 +00001144 .Case("Enum", CXCursor_EnumDecl)
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001145 .Case("Field", CXCursor_FieldDecl)
1146 .Case("EnumConstant", CXCursor_EnumConstantDecl)
1147 .Case("Function", CXCursor_FunctionDecl)
1148 // FIXME: Hacks here to make C++ member functions look like C functions
1149 .Case("CXXMethod", CXCursor_FunctionDecl)
1150 .Case("CXXConstructor", CXCursor_FunctionDecl)
1151 .Case("CXXDestructor", CXCursor_FunctionDecl)
1152 .Case("CXXConversion", CXCursor_FunctionDecl)
1153 .Case("Var", CXCursor_VarDecl)
1154 .Case("ParmVar", CXCursor_ParmDecl)
1155 .Case("ObjCInterface", CXCursor_ObjCInterfaceDecl)
1156 .Case("ObjCCategory", CXCursor_ObjCCategoryDecl)
1157 .Case("ObjCProtocol", CXCursor_ObjCProtocolDecl)
1158 .Case("ObjCProperty", CXCursor_ObjCPropertyDecl)
1159 .Case("ObjCIvar", CXCursor_ObjCIvarDecl)
1160 .Case("ObjCInstanceMethod", CXCursor_ObjCInstanceMethodDecl)
1161 .Case("ObjCClassMethod", CXCursor_ObjCClassMethodDecl)
1162 .Default(CXCursor_NotImplemented);
1163}
1164
1165void clang_codeComplete(CXIndex CIdx,
1166 const char *source_filename,
1167 int num_command_line_args,
1168 const char **command_line_args,
1169 const char *complete_filename,
1170 unsigned complete_line,
1171 unsigned complete_column,
1172 CXCompletionIterator completion_iterator,
1173 CXClientData client_data) {
1174 // The indexer, which is mainly used to determine where diagnostics go.
1175 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
1176
1177 // Build up the arguments for invoking 'clang'.
1178 std::vector<const char *> argv;
1179
1180 // First add the complete path to the 'clang' executable.
1181 llvm::sys::Path ClangPath = CXXIdx->getClangPath();
1182 argv.push_back(ClangPath.c_str());
1183
1184 // Add the '-fsyntax-only' argument so that we only perform a basic
1185 // syntax check of the code.
1186 argv.push_back("-fsyntax-only");
1187
1188 // Add the appropriate '-code-completion-at=file:line:column' argument
1189 // to perform code completion, with an "-Xclang" preceding it.
1190 std::string code_complete_at;
1191 code_complete_at += "-code-completion-at=";
1192 code_complete_at += complete_filename;
1193 code_complete_at += ":";
1194 code_complete_at += llvm::utostr(complete_line);
1195 code_complete_at += ":";
1196 code_complete_at += llvm::utostr(complete_column);
1197 argv.push_back("-Xclang");
1198 argv.push_back(code_complete_at.c_str());
1199 argv.push_back("-Xclang");
1200 argv.push_back("-code-completion-printer=cindex");
1201
1202 // Add the source file name (FIXME: later, we'll want to build temporary
1203 // file from the buffer, or just feed the source text via standard input).
1204 argv.push_back(source_filename);
1205
1206 // Process the compiler options, stripping off '-o', '-c', '-fsyntax-only'.
1207 for (int i = 0; i < num_command_line_args; ++i)
1208 if (const char *arg = command_line_args[i]) {
1209 if (strcmp(arg, "-o") == 0) {
1210 ++i; // Also skip the matching argument.
1211 continue;
1212 }
1213 if (strcmp(arg, "-emit-ast") == 0 ||
1214 strcmp(arg, "-c") == 0 ||
1215 strcmp(arg, "-fsyntax-only") == 0) {
1216 continue;
1217 }
1218
1219 // Keep the argument.
1220 argv.push_back(arg);
1221 }
1222
1223 // Add the null terminator.
1224 argv.push_back(NULL);
1225
1226 // Generate a temporary name for the AST file.
1227 char tmpFile[L_tmpnam];
1228 char *tmpFileName = tmpnam(tmpFile);
1229 llvm::sys::Path ResultsFile(tmpFileName);
1230
1231 // Invoke 'clang'.
1232 llvm::sys::Path DevNull; // leave empty, causes redirection to /dev/null
1233 // on Unix or NUL (Windows).
1234 std::string ErrMsg;
1235 const llvm::sys::Path *Redirects[] = { &DevNull, &ResultsFile, &DevNull, 0 };
1236 llvm::sys::Program::ExecuteAndWait(ClangPath, &argv[0], /* env */ NULL,
1237 /* redirects */ &Redirects[0],
1238 /* secondsToWait */ 0,
1239 /* memoryLimits */ 0, &ErrMsg);
1240
Ted Kremenek0854d702009-11-10 19:18:52 +00001241 if (CXXIdx->getDisplayDiagnostics() && !ErrMsg.empty()) {
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001242 llvm::errs() << "clang_codeComplete: " << ErrMsg
1243 << '\n' << "Arguments: \n";
1244 for (std::vector<const char*>::iterator I = argv.begin(), E = argv.end();
1245 I!=E; ++I) {
1246 if (*I)
1247 llvm::errs() << ' ' << *I << '\n';
1248 }
1249 llvm::errs() << '\n';
1250 }
1251
1252 // Parse the resulting source file to find code-completion results.
1253 using llvm::MemoryBuffer;
1254 using llvm::StringRef;
1255 if (MemoryBuffer *F = MemoryBuffer::getFile(ResultsFile.c_str())) {
1256 StringRef Buffer = F->getBuffer();
1257 do {
1258 StringRef::size_type CompletionIdx = Buffer.find("COMPLETION:");
1259 StringRef::size_type OverloadIdx = Buffer.find("OVERLOAD:");
1260 if (CompletionIdx == StringRef::npos && OverloadIdx == StringRef::npos)
1261 break;
1262
1263 if (OverloadIdx < CompletionIdx) {
1264 // Parse an overload result.
1265 Buffer = Buffer.substr(OverloadIdx);
1266
1267 // Skip past the OVERLOAD:
1268 Buffer = Buffer.substr(Buffer.find(':') + 1);
1269
1270 // Find the entire completion string.
1271 StringRef::size_type EOL = Buffer.find_first_of("\n\r");
1272 if (EOL == StringRef::npos)
1273 continue;
1274
1275 StringRef Line = Buffer.substr(0, EOL);
1276 Buffer = Buffer.substr(EOL + 1);
1277 CodeCompletionString *CCStr = CodeCompletionString::Deserialize(Line);
1278 if (!CCStr || CCStr->empty())
1279 continue;
1280
1281 // Vend the code-completion result to the caller.
1282 CXCompletionResult Result;
1283 Result.CursorKind = CXCursor_NotImplemented;
1284 Result.CompletionString = CCStr;
1285 if (completion_iterator)
1286 completion_iterator(&Result, client_data);
1287 delete CCStr;
1288
1289 continue;
1290 }
1291
1292 // Parse a completion result.
1293 Buffer = Buffer.substr(CompletionIdx);
1294
1295 // Skip past the COMPLETION:
1296 Buffer = Buffer.substr(Buffer.find(':') + 1);
1297
1298 // Get the rank
1299 unsigned Rank = 0;
1300 StringRef::size_type AfterRank = Buffer.find(':');
1301 Buffer.substr(0, AfterRank).getAsInteger(10, Rank);
1302 Buffer = Buffer.substr(AfterRank + 1);
1303
1304 // Get the kind of result.
1305 StringRef::size_type AfterKind = Buffer.find(':');
1306 StringRef Kind = Buffer.substr(0, AfterKind);
1307 Buffer = Buffer.substr(AfterKind + 1);
1308
1309 // Skip over any whitespace.
1310 Buffer = Buffer.substr(Buffer.find_first_not_of(" \t"));
1311
1312 // Find the entire completion string.
1313 StringRef::size_type EOL = Buffer.find_first_of("\n\r");
1314 if (EOL == StringRef::npos)
1315 continue;
1316
1317 StringRef Line = Buffer.substr(0, EOL);
1318 Buffer = Buffer.substr(EOL + 1);
1319 CodeCompletionString *CCStr = CodeCompletionString::Deserialize(Line);
1320 if (!CCStr || CCStr->empty())
1321 continue;
1322
1323 // Vend the code-completion result to the caller.
1324 CXCompletionResult Result;
1325 Result.CursorKind = parseResultKind(Kind);
1326 Result.CompletionString = CCStr;
1327 if (completion_iterator)
1328 completion_iterator(&Result, client_data);
1329 delete CCStr;
1330 } while (true);
1331 delete F;
1332 }
1333
1334 ResultsFile.eraseFromDisk();
1335}
1336
Steve Naroff600866c2009-08-27 19:51:58 +00001337} // end extern "C"