blob: 55bcd9330adabc13387e626dab395bda89b2aa1f [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"
Steve Naroff50398192009-08-28 15:28:48 +000019#include "clang/AST/DeclVisitor.h"
Steve Naroffc857ea42009-09-02 13:28:54 +000020#include "clang/AST/Decl.h"
Benjamin Kramerd01a0bc2009-08-29 12:56:35 +000021#include "clang/Basic/FileManager.h"
Steve Naroff2d4d6292009-08-31 14:26:51 +000022#include "clang/Basic/SourceManager.h"
Benjamin Kramerd01a0bc2009-08-29 12:56:35 +000023#include "clang/Frontend/ASTUnit.h"
24#include <cstdio>
Steve Naroff50398192009-08-28 15:28:48 +000025using namespace clang;
26using namespace idx;
27
Steve Naroff89922f82009-08-31 00:59:03 +000028namespace {
29
30// Translation Unit Visitor.
31class TUVisitor : public DeclVisitor<TUVisitor> {
32 CXTranslationUnit TUnit;
33 CXTranslationUnitIterator Callback;
Steve Naroff2b8ee6c2009-09-01 15:55:40 +000034 CXClientData CData;
35
36 void Call(enum CXCursorKind CK, NamedDecl *ND) {
37 CXCursor C = { CK, ND };
38 Callback(TUnit, C, CData);
39 }
Steve Naroff89922f82009-08-31 00:59:03 +000040public:
Steve Naroff2b8ee6c2009-09-01 15:55:40 +000041 TUVisitor(CXTranslationUnit CTU,
42 CXTranslationUnitIterator cback, CXClientData D) :
43 TUnit(CTU), Callback(cback), CData(D) {}
Steve Naroff89922f82009-08-31 00:59:03 +000044
45 void VisitTranslationUnitDecl(TranslationUnitDecl *D) {
46 VisitDeclContext(dyn_cast<DeclContext>(D));
47 }
48 void VisitDeclContext(DeclContext *DC) {
49 for (DeclContext::decl_iterator
50 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
51 Visit(*I);
52 }
Steve Naroff2b8ee6c2009-09-01 15:55:40 +000053 void VisitTypedefDecl(TypedefDecl *ND) {
54 Call(CXCursor_TypedefDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +000055 }
56 void VisitTagDecl(TagDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +000057 switch (ND->getTagKind()) {
58 case TagDecl::TK_struct:
59 Call(CXCursor_StructDecl, ND);
60 break;
61 case TagDecl::TK_class:
62 Call(CXCursor_ClassDecl, ND);
63 break;
64 case TagDecl::TK_union:
65 Call(CXCursor_UnionDecl, ND);
66 break;
67 case TagDecl::TK_enum:
68 Call(CXCursor_EnumDecl, ND);
69 break;
70 }
Steve Naroff89922f82009-08-31 00:59:03 +000071 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +000072 void VisitVarDecl(VarDecl *ND) {
73 Call(CXCursor_VarDecl, ND);
74 }
Steve Naroff89922f82009-08-31 00:59:03 +000075 void VisitFunctionDecl(FunctionDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +000076 Call(ND->isThisDeclarationADefinition() ? CXCursor_FunctionDefn
77 : CXCursor_FunctionDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +000078 }
79 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +000080 Call(CXCursor_ObjCInterfaceDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +000081 }
82 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +000083 Call(CXCursor_ObjCCategoryDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +000084 }
85 void VisitObjCProtocolDecl(ObjCProtocolDecl *ND) {
Steve Naroff2b8ee6c2009-09-01 15:55:40 +000086 Call(CXCursor_ObjCProtocolDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +000087 }
Steve Naroffc857ea42009-09-02 13:28:54 +000088 void VisitObjCImplementationDecl(ObjCImplementationDecl *ND) {
89 Call(CXCursor_ObjCClassDefn, ND);
90 }
91 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *ND) {
92 Call(CXCursor_ObjCCategoryDefn, ND);
93 }
Steve Naroff89922f82009-08-31 00:59:03 +000094};
95
Steve Naroffc857ea42009-09-02 13:28:54 +000096// Declaration visitor.
97class CDeclVisitor : public DeclVisitor<CDeclVisitor> {
98 CXDecl CDecl;
99 CXDeclIterator Callback;
100 CXClientData CData;
101
102 void Call(enum CXCursorKind CK, NamedDecl *ND) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000103 // Disable the callback when the context is equal to the visiting decl.
104 if (CDecl == ND && !clang_isReference(CK))
105 return;
Steve Naroffc857ea42009-09-02 13:28:54 +0000106 CXCursor C = { CK, ND };
107 Callback(CDecl, C, CData);
108 }
Steve Naroff89922f82009-08-31 00:59:03 +0000109public:
Steve Naroffc857ea42009-09-02 13:28:54 +0000110 CDeclVisitor(CXDecl C, CXDeclIterator cback, CXClientData D) :
111 CDecl(C), Callback(cback), CData(D) {}
112
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000113 void VisitObjCCategoryDecl(ObjCCategoryDecl *ND) {
114 // Issue callbacks for the containing class.
115 Call(CXCursor_ObjCClassRef, ND);
116 // FIXME: Issue callbacks for protocol refs.
117 VisitDeclContext(dyn_cast<DeclContext>(ND));
118 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000119 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000120 // Issue callbacks for super class.
Steve Narofff334b4e2009-09-02 18:26:48 +0000121 if (D->getSuperClass())
122 Call(CXCursor_ObjCSuperClassRef, D);
123
Steve Naroff9efa7672009-09-04 15:44:05 +0000124 for (ObjCProtocolDecl::protocol_iterator I = D->protocol_begin(),
125 E = D->protocol_end(); I != E; ++I)
126 Call(CXCursor_ObjCProtocolRef, *I);
Steve Naroffc857ea42009-09-02 13:28:54 +0000127 VisitDeclContext(dyn_cast<DeclContext>(D));
128 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000129 void VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
130 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
131 E = PID->protocol_end(); I != E; ++I)
132 Call(CXCursor_ObjCProtocolRef, *I);
133
134 VisitDeclContext(dyn_cast<DeclContext>(PID));
135 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000136 void VisitTagDecl(TagDecl *D) {
137 VisitDeclContext(dyn_cast<DeclContext>(D));
138 }
139 void VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
140 VisitDeclContext(dyn_cast<DeclContext>(D));
141 }
142 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
143 VisitDeclContext(dyn_cast<DeclContext>(D));
144 }
Steve Naroff89922f82009-08-31 00:59:03 +0000145 void VisitDeclContext(DeclContext *DC) {
146 for (DeclContext::decl_iterator
147 I = DC->decls_begin(), E = DC->decls_end(); I != E; ++I)
148 Visit(*I);
149 }
150 void VisitEnumConstantDecl(EnumConstantDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000151 Call(CXCursor_EnumConstantDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000152 }
153 void VisitFieldDecl(FieldDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000154 Call(CXCursor_FieldDecl, ND);
155 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000156 void VisitVarDecl(VarDecl *ND) {
157 Call(CXCursor_VarDecl, ND);
158 }
159 void VisitParmVarDecl(ParmVarDecl *ND) {
160 Call(CXCursor_ParmDecl, ND);
161 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000162 void VisitObjCPropertyDecl(ObjCPropertyDecl *ND) {
163 Call(CXCursor_ObjCPropertyDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000164 }
165 void VisitObjCIvarDecl(ObjCIvarDecl *ND) {
Steve Naroffc857ea42009-09-02 13:28:54 +0000166 Call(CXCursor_ObjCIvarDecl, ND);
167 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000168 void VisitFunctionDecl(FunctionDecl *ND) {
169 if (ND->isThisDeclarationADefinition()) {
170 VisitDeclContext(dyn_cast<DeclContext>(ND));
171 }
172 }
Steve Naroffc857ea42009-09-02 13:28:54 +0000173 void VisitObjCMethodDecl(ObjCMethodDecl *ND) {
174 if (ND->getBody()) {
175 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDefn
176 : CXCursor_ObjCClassMethodDefn, ND);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000177 VisitDeclContext(dyn_cast<DeclContext>(ND));
Steve Naroffc857ea42009-09-02 13:28:54 +0000178 } else
179 Call(ND->isInstanceMethod() ? CXCursor_ObjCInstanceMethodDecl
180 : CXCursor_ObjCClassMethodDecl, ND);
Steve Naroff89922f82009-08-31 00:59:03 +0000181 }
182};
183
184}
185
Steve Naroff600866c2009-08-27 19:51:58 +0000186extern "C" {
Ted Kremenekd2fa5662009-08-26 22:36:44 +0000187
Steve Naroff600866c2009-08-27 19:51:58 +0000188CXIndex clang_createIndex()
Steve Naroff50398192009-08-28 15:28:48 +0000189{
Daniel Dunbara3907592009-09-21 03:03:22 +0000190 // FIXME: Program is leaked.
191 return new Indexer(*new Program());
Steve Naroff600866c2009-08-27 19:51:58 +0000192}
193
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000194void clang_disposeIndex(CXIndex CIdx)
195{
196 assert(CIdx && "Passed null CXIndex");
197 delete static_cast<Indexer *>(CIdx);
198}
199
Steve Naroff50398192009-08-28 15:28:48 +0000200// FIXME: need to pass back error info.
201CXTranslationUnit clang_createTranslationUnit(
202 CXIndex CIdx, const char *ast_filename)
Steve Naroff600866c2009-08-27 19:51:58 +0000203{
Steve Naroff50398192009-08-28 15:28:48 +0000204 assert(CIdx && "Passed null CXIndex");
205 Indexer *CXXIdx = static_cast<Indexer *>(CIdx);
206 std::string astName(ast_filename);
207 std::string ErrMsg;
208
209 return ASTUnit::LoadFromPCHFile(astName, CXXIdx->getFileManager(), &ErrMsg);
Steve Naroff600866c2009-08-27 19:51:58 +0000210}
211
Steve Naroff2bd6b9f2009-09-17 18:33:27 +0000212void clang_disposeTranslationUnit(
213 CXTranslationUnit CTUnit)
214{
215 assert(CTUnit && "Passed null CXTranslationUnit");
216 delete static_cast<ASTUnit *>(CTUnit);
217}
218
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000219const char *clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit)
220{
221 assert(CTUnit && "Passed null CXTranslationUnit");
Steve Naroff77accc12009-09-03 18:19:54 +0000222 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
223 return CXXUnit->getOriginalSourceFileName().c_str();
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000224}
Daniel Dunbar1eb79b52009-08-28 16:30:07 +0000225
Steve Naroffc857ea42009-09-02 13:28:54 +0000226void clang_loadTranslationUnit(CXTranslationUnit CTUnit,
227 CXTranslationUnitIterator callback,
228 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000229{
Steve Naroff50398192009-08-28 15:28:48 +0000230 assert(CTUnit && "Passed null CXTranslationUnit");
231 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
232 ASTContext &Ctx = CXXUnit->getASTContext();
233
Steve Naroff2b8ee6c2009-09-01 15:55:40 +0000234 TUVisitor DVisit(CTUnit, callback, CData);
Steve Naroff50398192009-08-28 15:28:48 +0000235 DVisit.Visit(Ctx.getTranslationUnitDecl());
Steve Naroff600866c2009-08-27 19:51:58 +0000236}
237
Steve Naroffc857ea42009-09-02 13:28:54 +0000238void clang_loadDeclaration(CXDecl Dcl,
239 CXDeclIterator callback,
240 CXClientData CData)
Steve Naroff600866c2009-08-27 19:51:58 +0000241{
Steve Naroffc857ea42009-09-02 13:28:54 +0000242 assert(Dcl && "Passed null CXDecl");
243
244 CDeclVisitor DVisit(Dcl, callback, CData);
245 DVisit.Visit(static_cast<Decl *>(Dcl));
Steve Naroff600866c2009-08-27 19:51:58 +0000246}
247
Steve Naroff7e8f8182009-08-28 12:07:44 +0000248// Some notes on CXEntity:
249//
250// - Since the 'ordinary' namespace includes functions, data, typedefs,
251// ObjC interfaces, thecurrent algorithm is a bit naive (resulting in one
252// entity for 2 different types). For example:
253//
254// module1.m: @interface Foo @end Foo *x;
255// module2.m: void Foo(int);
256//
257// - Since the unique name spans translation units, static data/functions
258// within a CXTranslationUnit are *not* currently represented by entities.
259// As a result, there will be no entity for the following:
260//
261// module.m: static void Foo() { }
262//
263
264
Steve Naroff600866c2009-08-27 19:51:58 +0000265const char *clang_getDeclarationName(CXEntity)
266{
267 return "";
268}
269const char *clang_getURI(CXEntity)
270{
271 return "";
272}
273
274CXEntity clang_getEntity(const char *URI)
275{
276 return 0;
277}
278
279//
280// CXDecl Operations.
281//
Steve Naroff600866c2009-08-27 19:51:58 +0000282CXEntity clang_getEntityFromDecl(CXDecl)
283{
284 return 0;
285}
Steve Naroff89922f82009-08-31 00:59:03 +0000286const char *clang_getDeclSpelling(CXDecl AnonDecl)
Steve Naroff600866c2009-08-27 19:51:58 +0000287{
Steve Naroff89922f82009-08-31 00:59:03 +0000288 assert(AnonDecl && "Passed null CXDecl");
289 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
Steve Naroffc857ea42009-09-02 13:28:54 +0000290
291 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND)) {
292 return OMD->getSelector().getAsString().c_str();
293 }
Steve Naroff89922f82009-08-31 00:59:03 +0000294 if (ND->getIdentifier())
295 return ND->getIdentifier()->getName();
Steve Naroffc857ea42009-09-02 13:28:54 +0000296 else
Steve Naroff89922f82009-08-31 00:59:03 +0000297 return "";
Steve Naroff600866c2009-08-27 19:51:58 +0000298}
Steve Narofff334b4e2009-09-02 18:26:48 +0000299
300const char *clang_getCursorSpelling(CXCursor C)
301{
302 assert(C.decl && "CXCursor has null decl");
303 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
304
305 if (clang_isReference(C.kind)) {
306 switch (C.kind) {
Steve Naroff1164d852009-09-02 18:58:52 +0000307 case CXCursor_ObjCSuperClassRef:
308 {
Steve Narofff334b4e2009-09-02 18:26:48 +0000309 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
310 assert(OID && "clang_getCursorLine(): Missing interface decl");
311 return OID->getSuperClass()->getIdentifier()->getName();
Steve Naroff1164d852009-09-02 18:58:52 +0000312 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000313 case CXCursor_ObjCClassRef:
314 {
315 ObjCCategoryDecl *OID = dyn_cast<ObjCCategoryDecl>(ND);
316 assert(OID && "clang_getCursorLine(): Missing category decl");
317 return OID->getClassInterface()->getIdentifier()->getName();
318 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000319 case CXCursor_ObjCProtocolRef:
320 {
321 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
322 assert(OID && "clang_getCursorLine(): Missing protocol decl");
323 return OID->getIdentifier()->getName();
324 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000325 default:
326 return "<not implemented>";
327 }
328 }
329 return clang_getDeclSpelling(C.decl);
330}
331
332const char *clang_getCursorKindSpelling(enum CXCursorKind Kind)
Steve Naroff600866c2009-08-27 19:51:58 +0000333{
Steve Naroff89922f82009-08-31 00:59:03 +0000334 switch (Kind) {
335 case CXCursor_FunctionDecl: return "FunctionDecl";
336 case CXCursor_TypedefDecl: return "TypedefDecl";
337 case CXCursor_EnumDecl: return "EnumDecl";
338 case CXCursor_EnumConstantDecl: return "EnumConstantDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000339 case CXCursor_StructDecl: return "StructDecl";
340 case CXCursor_UnionDecl: return "UnionDecl";
341 case CXCursor_ClassDecl: return "ClassDecl";
Steve Naroff89922f82009-08-31 00:59:03 +0000342 case CXCursor_FieldDecl: return "FieldDecl";
343 case CXCursor_VarDecl: return "VarDecl";
344 case CXCursor_ParmDecl: return "ParmDecl";
345 case CXCursor_ObjCInterfaceDecl: return "ObjCInterfaceDecl";
346 case CXCursor_ObjCCategoryDecl: return "ObjCCategoryDecl";
347 case CXCursor_ObjCProtocolDecl: return "ObjCProtocolDecl";
348 case CXCursor_ObjCPropertyDecl: return "ObjCPropertyDecl";
349 case CXCursor_ObjCIvarDecl: return "ObjCIvarDecl";
Steve Naroffc857ea42009-09-02 13:28:54 +0000350 case CXCursor_ObjCInstanceMethodDecl: return "ObjCInstanceMethodDecl";
351 case CXCursor_ObjCClassMethodDecl: return "ObjCClassMethodDecl";
352 case CXCursor_FunctionDefn: return "FunctionDefn";
353 case CXCursor_ObjCInstanceMethodDefn: return "ObjCInstanceMethodDefn";
354 case CXCursor_ObjCClassMethodDefn: return "ObjCClassMethodDefn";
355 case CXCursor_ObjCClassDefn: return "ObjCClassDefn";
356 case CXCursor_ObjCCategoryDefn: return "ObjCCategoryDefn";
Steve Narofff334b4e2009-09-02 18:26:48 +0000357 case CXCursor_ObjCSuperClassRef: return "ObjCSuperClassRef";
Steve Naroff9efa7672009-09-04 15:44:05 +0000358 case CXCursor_ObjCProtocolRef: return "ObjCProtocolRef";
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000359 case CXCursor_ObjCClassRef: return "ObjCClassRef";
Steve Naroff77128dd2009-09-15 20:25:34 +0000360 case CXCursor_InvalidFile: return "InvalidFile";
361 case CXCursor_NoDeclFound: return "NoDeclFound";
362 case CXCursor_NotImplemented: return "NotImplemented";
Steve Naroff89922f82009-08-31 00:59:03 +0000363 default: return "<not implemented>";
364 }
Steve Naroff600866c2009-08-27 19:51:58 +0000365}
Steve Naroff89922f82009-08-31 00:59:03 +0000366
Steve Naroff9efa7672009-09-04 15:44:05 +0000367static enum CXCursorKind TranslateKind(Decl *D) {
368 switch (D->getKind()) {
369 case Decl::Function: return CXCursor_FunctionDecl;
370 case Decl::Typedef: return CXCursor_TypedefDecl;
371 case Decl::Enum: return CXCursor_EnumDecl;
372 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
373 case Decl::Record: return CXCursor_StructDecl; // FIXME: union/class
374 case Decl::Field: return CXCursor_FieldDecl;
375 case Decl::Var: return CXCursor_VarDecl;
376 case Decl::ParmVar: return CXCursor_ParmDecl;
377 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
378 case Decl::ObjCMethod: {
379 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D);
380 if (MD->isInstanceMethod())
381 return CXCursor_ObjCInstanceMethodDecl;
382 return CXCursor_ObjCClassMethodDecl;
383 }
384 default: break;
385 }
Steve Naroff77128dd2009-09-15 20:25:34 +0000386 return CXCursor_NotImplemented;
Steve Naroff9efa7672009-09-04 15:44:05 +0000387}
Steve Naroff600866c2009-08-27 19:51:58 +0000388//
389// CXCursor Operations.
390//
Steve Naroff9efa7672009-09-04 15:44:05 +0000391CXCursor clang_getCursor(CXTranslationUnit CTUnit, const char *source_name,
Steve Naroff600866c2009-08-27 19:51:58 +0000392 unsigned line, unsigned column)
393{
Steve Naroff9efa7672009-09-04 15:44:05 +0000394 assert(CTUnit && "Passed null CXTranslationUnit");
395 ASTUnit *CXXUnit = static_cast<ASTUnit *>(CTUnit);
396
397 FileManager &FMgr = CXXUnit->getFileManager();
398 const FileEntry *File = FMgr.getFile(source_name,
Steve Naroff77128dd2009-09-15 20:25:34 +0000399 source_name+strlen(source_name));
400 if (!File) {
401 CXCursor C = { CXCursor_InvalidFile, 0 };
402 return C;
403 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000404 SourceLocation SLoc =
405 CXXUnit->getSourceManager().getLocation(File, line, column);
406
407 ASTLocation ALoc = ResolveLocationInAST(CXXUnit->getASTContext(), SLoc);
408
409 Decl *Dcl = ALoc.getDecl();
Steve Naroff77128dd2009-09-15 20:25:34 +0000410 if (Dcl) {
411 CXCursor C = { TranslateKind(Dcl), Dcl };
412 return C;
413 }
414 CXCursor C = { CXCursor_NoDeclFound, 0 };
Steve Naroff9efa7672009-09-04 15:44:05 +0000415 return C;
Steve Naroff600866c2009-08-27 19:51:58 +0000416}
417
Steve Naroff77128dd2009-09-15 20:25:34 +0000418CXCursor clang_getCursorFromDecl(CXDecl AnonDecl)
419{
420 assert(AnonDecl && "Passed null CXDecl");
421 NamedDecl *ND = static_cast<NamedDecl *>(AnonDecl);
422
423 CXCursor C = { TranslateKind(ND), ND };
424 return C;
425}
426
427unsigned clang_isInvalid(enum CXCursorKind K)
428{
429 return K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid;
430}
431
Steve Naroff89922f82009-08-31 00:59:03 +0000432unsigned clang_isDeclaration(enum CXCursorKind K)
433{
434 return K >= CXCursor_FirstDecl && K <= CXCursor_LastDecl;
435}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000436
Steve Narofff334b4e2009-09-02 18:26:48 +0000437unsigned clang_isReference(enum CXCursorKind K)
438{
439 return K >= CXCursor_FirstRef && K <= CXCursor_LastRef;
440}
441
442unsigned clang_isDefinition(enum CXCursorKind K)
443{
444 return K >= CXCursor_FirstDefn && K <= CXCursor_LastDefn;
445}
446
Steve Naroff9efa7672009-09-04 15:44:05 +0000447CXCursorKind clang_getCursorKind(CXCursor C)
448{
449 return C.kind;
450}
451
452CXDecl clang_getCursorDecl(CXCursor C)
453{
454 return C.decl;
455}
456
Steve Narofff334b4e2009-09-02 18:26:48 +0000457static SourceLocation getLocationFromCursor(CXCursor C,
458 SourceManager &SourceMgr,
459 NamedDecl *ND) {
Steve Narofff334b4e2009-09-02 18:26:48 +0000460 if (clang_isReference(C.kind)) {
461 switch (C.kind) {
Steve Naroff9efa7672009-09-04 15:44:05 +0000462 case CXCursor_ObjCSuperClassRef:
Steve Naroff1164d852009-09-02 18:58:52 +0000463 {
Steve Narofff334b4e2009-09-02 18:26:48 +0000464 ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ND);
465 assert(OID && "clang_getCursorLine(): Missing interface decl");
Steve Naroff1164d852009-09-02 18:58:52 +0000466 return OID->getSuperClassLoc();
467 }
Steve Naroff9efa7672009-09-04 15:44:05 +0000468 case CXCursor_ObjCProtocolRef:
469 {
470 ObjCProtocolDecl *OID = dyn_cast<ObjCProtocolDecl>(ND);
471 assert(OID && "clang_getCursorLine(): Missing protocol decl");
472 return OID->getLocation();
473 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000474 default:
Steve Naroff1164d852009-09-02 18:58:52 +0000475 return SourceLocation();
Steve Narofff334b4e2009-09-02 18:26:48 +0000476 }
477 } else { // We have a declaration or a definition.
Steve Naroff9efa7672009-09-04 15:44:05 +0000478 SourceLocation SLoc;
479 switch (ND->getKind()) {
480 case Decl::ObjCInterface:
481 {
482 SLoc = dyn_cast<ObjCInterfaceDecl>(ND)->getClassLoc();
483 break;
484 }
485 case Decl::ObjCProtocol:
486 {
487 SLoc = ND->getLocation(); /* FIXME: need to get the name location. */
488 break;
489 }
490 default:
491 {
492 SLoc = ND->getLocation();
493 break;
494 }
495 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000496 if (SLoc.isInvalid())
497 return SourceLocation();
Steve Naroff1164d852009-09-02 18:58:52 +0000498 return SourceMgr.getSpellingLoc(SLoc); // handles macro instantiations.
Steve Narofff334b4e2009-09-02 18:26:48 +0000499 }
Steve Narofff334b4e2009-09-02 18:26:48 +0000500}
501
Steve Naroff2d4d6292009-08-31 14:26:51 +0000502unsigned clang_getCursorLine(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000503{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000504 assert(C.decl && "CXCursor has null decl");
505 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000506 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000507
508 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000509 return SourceMgr.getSpellingLineNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000510}
Steve Narofff334b4e2009-09-02 18:26:48 +0000511
Steve Naroff2d4d6292009-08-31 14:26:51 +0000512unsigned clang_getCursorColumn(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000513{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000514 assert(C.decl && "CXCursor has null decl");
515 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000516 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000517
518 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000519 return SourceMgr.getSpellingColumnNumber(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000520}
Steve Naroff2d4d6292009-08-31 14:26:51 +0000521const char *clang_getCursorSource(CXCursor C)
Steve Naroff600866c2009-08-27 19:51:58 +0000522{
Steve Naroff2d4d6292009-08-31 14:26:51 +0000523 assert(C.decl && "CXCursor has null decl");
524 NamedDecl *ND = static_cast<NamedDecl *>(C.decl);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000525 SourceManager &SourceMgr = ND->getASTContext().getSourceManager();
Steve Narofff334b4e2009-09-02 18:26:48 +0000526
527 SourceLocation SLoc = getLocationFromCursor(C, SourceMgr, ND);
Steve Naroff2d4d6292009-08-31 14:26:51 +0000528 return SourceMgr.getBufferName(SLoc);
Steve Naroff600866c2009-08-27 19:51:58 +0000529}
530
Steve Naroff600866c2009-08-27 19:51:58 +0000531} // end extern "C"