blob: a824a9f041a315ac75dc4172bc169d3f0dd4a69f [file] [log] [blame]
Steve Naroff2b8ee6c2009-09-01 15:55:40 +00001/* c-index-test.c */
Steve Naroff50398192009-08-28 15:28:48 +00002
3#include "clang-c/Index.h"
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00004#include "clang-c/CXCompilationDatabase.h"
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00005#include "llvm/Config/config.h"
Douglas Gregor1e5e6682010-08-26 13:48:20 +00006#include <ctype.h>
Douglas Gregor0c8296d2009-11-07 00:00:49 +00007#include <stdlib.h>
Steve Naroff89922f82009-08-31 00:59:03 +00008#include <stdio.h>
Steve Naroffaf08ddc2009-09-03 15:49:00 +00009#include <string.h>
Douglas Gregorf2c87bd2010-01-15 19:40:17 +000010#include <assert.h>
Steve Naroffaf08ddc2009-09-03 15:49:00 +000011
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +000012#ifdef CLANG_HAVE_LIBXML
13#include <libxml/parser.h>
14#include <libxml/relaxng.h>
15#include <libxml/xmlerror.h>
16#endif
17
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +000018#ifdef _WIN32
19# include <direct.h>
20#else
21# include <unistd.h>
22#endif
23
Ted Kremenek0d435192009-11-17 18:13:31 +000024/******************************************************************************/
25/* Utility functions. */
26/******************************************************************************/
27
John Thompson2e06fc82009-10-27 13:42:56 +000028#ifdef _MSC_VER
29char *basename(const char* path)
30{
31 char* base1 = (char*)strrchr(path, '/');
32 char* base2 = (char*)strrchr(path, '\\');
33 if (base1 && base2)
34 return((base1 > base2) ? base1 + 1 : base2 + 1);
35 else if (base1)
36 return(base1 + 1);
37 else if (base2)
38 return(base2 + 1);
39
40 return((char*)path);
41}
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +000042char *dirname(char* path)
43{
44 char* base1 = (char*)strrchr(path, '/');
45 char* base2 = (char*)strrchr(path, '\\');
46 if (base1 && base2)
47 if (base1 > base2)
48 *base1 = 0;
49 else
50 *base2 = 0;
51 else if (base1)
NAKAMURA Takumi0fb474a2012-06-30 11:47:18 +000052 *base1 = 0;
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +000053 else if (base2)
NAKAMURA Takumi0fb474a2012-06-30 11:47:18 +000054 *base2 = 0;
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +000055
56 return path;
57}
John Thompson2e06fc82009-10-27 13:42:56 +000058#else
Steve Naroffff9e18c2009-09-24 20:03:06 +000059extern char *basename(const char *);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +000060extern char *dirname(char *);
John Thompson2e06fc82009-10-27 13:42:56 +000061#endif
Steve Naroffff9e18c2009-09-24 20:03:06 +000062
Douglas Gregor45ba9a12010-07-25 17:39:21 +000063/** \brief Return the default parsing options. */
Douglas Gregor44c181a2010-07-23 00:33:23 +000064static unsigned getDefaultParsingOptions() {
65 unsigned options = CXTranslationUnit_DetailedPreprocessingRecord;
66
67 if (getenv("CINDEXTEST_EDITING"))
Douglas Gregorb1c031b2010-08-09 22:28:58 +000068 options |= clang_defaultEditingTranslationUnitOptions();
Douglas Gregor87c08a52010-08-13 22:48:40 +000069 if (getenv("CINDEXTEST_COMPLETION_CACHING"))
70 options |= CXTranslationUnit_CacheCompletionResults;
Argyrios Kyrtzidisdcaca012011-11-03 02:20:25 +000071 if (getenv("CINDEXTEST_COMPLETION_NO_CACHING"))
72 options &= ~CXTranslationUnit_CacheCompletionResults;
Erik Verbruggen6a91d382012-04-12 10:11:59 +000073 if (getenv("CINDEXTEST_SKIP_FUNCTION_BODIES"))
74 options |= CXTranslationUnit_SkipFunctionBodies;
Dmitri Gribenkod99ef532012-07-02 17:35:10 +000075 if (getenv("CINDEXTEST_COMPLETION_BRIEF_COMMENTS"))
76 options |= CXTranslationUnit_IncludeBriefCommentsInCodeCompletion;
Douglas Gregor44c181a2010-07-23 00:33:23 +000077
78 return options;
79}
80
Argyrios Kyrtzidisbda536d2011-11-13 22:08:33 +000081static int checkForErrors(CXTranslationUnit TU);
82
Daniel Dunbar51b058c2010-02-14 08:32:24 +000083static void PrintExtent(FILE *out, unsigned begin_line, unsigned begin_column,
84 unsigned end_line, unsigned end_column) {
85 fprintf(out, "[%d:%d - %d:%d]", begin_line, begin_column,
Daniel Dunbard52864b2010-02-14 10:02:57 +000086 end_line, end_column);
Daniel Dunbar51b058c2010-02-14 08:32:24 +000087}
88
Ted Kremenek1c6da172009-11-17 19:37:36 +000089static unsigned CreateTranslationUnit(CXIndex Idx, const char *file,
90 CXTranslationUnit *TU) {
Ted Kremeneke68fff62010-02-17 00:41:32 +000091
Douglas Gregora88084b2010-02-18 18:08:43 +000092 *TU = clang_createTranslationUnit(Idx, file);
Dan Gohman6be2a222010-07-26 21:44:15 +000093 if (!*TU) {
Ted Kremenek1c6da172009-11-17 19:37:36 +000094 fprintf(stderr, "Unable to load translation unit from '%s'!\n", file);
95 return 0;
Ted Kremeneke68fff62010-02-17 00:41:32 +000096 }
Ted Kremenek1c6da172009-11-17 19:37:36 +000097 return 1;
98}
99
Douglas Gregor4db64a42010-01-23 00:14:00 +0000100void free_remapped_files(struct CXUnsavedFile *unsaved_files,
101 int num_unsaved_files) {
102 int i;
103 for (i = 0; i != num_unsaved_files; ++i) {
104 free((char *)unsaved_files[i].Filename);
105 free((char *)unsaved_files[i].Contents);
106 }
Douglas Gregor653a55f2010-08-19 20:50:29 +0000107 free(unsaved_files);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000108}
109
110int parse_remapped_files(int argc, const char **argv, int start_arg,
111 struct CXUnsavedFile **unsaved_files,
112 int *num_unsaved_files) {
113 int i;
114 int arg;
115 int prefix_len = strlen("-remap-file=");
116 *unsaved_files = 0;
117 *num_unsaved_files = 0;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000118
Douglas Gregor4db64a42010-01-23 00:14:00 +0000119 /* Count the number of remapped files. */
120 for (arg = start_arg; arg < argc; ++arg) {
121 if (strncmp(argv[arg], "-remap-file=", prefix_len))
122 break;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000123
Douglas Gregor4db64a42010-01-23 00:14:00 +0000124 ++*num_unsaved_files;
125 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000126
Douglas Gregor4db64a42010-01-23 00:14:00 +0000127 if (*num_unsaved_files == 0)
128 return 0;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000129
Douglas Gregor4db64a42010-01-23 00:14:00 +0000130 *unsaved_files
Douglas Gregor653a55f2010-08-19 20:50:29 +0000131 = (struct CXUnsavedFile *)malloc(sizeof(struct CXUnsavedFile) *
132 *num_unsaved_files);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000133 for (arg = start_arg, i = 0; i != *num_unsaved_files; ++i, ++arg) {
134 struct CXUnsavedFile *unsaved = *unsaved_files + i;
135 const char *arg_string = argv[arg] + prefix_len;
136 int filename_len;
137 char *filename;
138 char *contents;
139 FILE *to_file;
140 const char *semi = strchr(arg_string, ';');
141 if (!semi) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000142 fprintf(stderr,
Douglas Gregor4db64a42010-01-23 00:14:00 +0000143 "error: -remap-file=from;to argument is missing semicolon\n");
144 free_remapped_files(*unsaved_files, i);
145 *unsaved_files = 0;
146 *num_unsaved_files = 0;
147 return -1;
148 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000149
Douglas Gregor4db64a42010-01-23 00:14:00 +0000150 /* Open the file that we're remapping to. */
Francois Pichetc44fe4b2010-10-12 01:01:43 +0000151 to_file = fopen(semi + 1, "rb");
Douglas Gregor4db64a42010-01-23 00:14:00 +0000152 if (!to_file) {
153 fprintf(stderr, "error: cannot open file %s that we are remapping to\n",
154 semi + 1);
155 free_remapped_files(*unsaved_files, i);
156 *unsaved_files = 0;
157 *num_unsaved_files = 0;
158 return -1;
159 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000160
Douglas Gregor4db64a42010-01-23 00:14:00 +0000161 /* Determine the length of the file we're remapping to. */
162 fseek(to_file, 0, SEEK_END);
163 unsaved->Length = ftell(to_file);
164 fseek(to_file, 0, SEEK_SET);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000165
Douglas Gregor4db64a42010-01-23 00:14:00 +0000166 /* Read the contents of the file we're remapping to. */
167 contents = (char *)malloc(unsaved->Length + 1);
168 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) {
169 fprintf(stderr, "error: unexpected %s reading 'to' file %s\n",
170 (feof(to_file) ? "EOF" : "error"), semi + 1);
171 fclose(to_file);
172 free_remapped_files(*unsaved_files, i);
Richard Smithe07c5f82012-07-05 08:20:49 +0000173 free(contents);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000174 *unsaved_files = 0;
175 *num_unsaved_files = 0;
176 return -1;
177 }
178 contents[unsaved->Length] = 0;
179 unsaved->Contents = contents;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000180
Douglas Gregor4db64a42010-01-23 00:14:00 +0000181 /* Close the file. */
182 fclose(to_file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000183
Douglas Gregor4db64a42010-01-23 00:14:00 +0000184 /* Copy the file name that we're remapping from. */
185 filename_len = semi - arg_string;
186 filename = (char *)malloc(filename_len + 1);
187 memcpy(filename, arg_string, filename_len);
188 filename[filename_len] = 0;
189 unsaved->Filename = filename;
190 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000191
Douglas Gregor4db64a42010-01-23 00:14:00 +0000192 return 0;
193}
194
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000195static const char *parse_comments_schema(int argc, const char **argv) {
196 const char *CommentsSchemaArg = "-comments-xml-schema=";
197 const char *CommentSchemaFile = NULL;
198
199 if (argc == 0)
200 return CommentSchemaFile;
201
202 if (!strncmp(argv[0], CommentsSchemaArg, strlen(CommentsSchemaArg)))
203 CommentSchemaFile = argv[0] + strlen(CommentsSchemaArg);
204
205 return CommentSchemaFile;
206}
207
Ted Kremenek0d435192009-11-17 18:13:31 +0000208/******************************************************************************/
209/* Pretty-printing. */
210/******************************************************************************/
211
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000212static const char *FileCheckPrefix = "CHECK";
213
214static void PrintCString(const char *CStr) {
Dmitri Gribenko2d44d772012-06-26 20:39:18 +0000215 if (CStr != NULL && CStr[0] != '\0') {
216 for ( ; *CStr; ++CStr) {
217 const char C = *CStr;
218 switch (C) {
219 case '\n': printf("\\n"); break;
220 case '\r': printf("\\r"); break;
221 case '\t': printf("\\t"); break;
222 case '\v': printf("\\v"); break;
223 case '\f': printf("\\f"); break;
224 default: putchar(C); break;
225 }
226 }
227 }
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000228}
229
230static void PrintCStringWithPrefix(const char *Prefix, const char *CStr) {
231 printf(" %s=[", Prefix);
232 PrintCString(CStr);
Dmitri Gribenko2d44d772012-06-26 20:39:18 +0000233 printf("]");
234}
235
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000236static void PrintCXStringAndDispose(CXString Str) {
237 PrintCString(clang_getCString(Str));
238 clang_disposeString(Str);
239}
240
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000241static void PrintCXStringWithPrefix(const char *Prefix, CXString Str) {
242 PrintCStringWithPrefix(Prefix, clang_getCString(Str));
243}
244
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000245static void PrintCXStringWithPrefixAndDispose(const char *Prefix,
246 CXString Str) {
247 PrintCStringWithPrefix(Prefix, clang_getCString(Str));
248 clang_disposeString(Str);
249}
250
Douglas Gregor430d7a12011-07-25 17:48:11 +0000251static void PrintRange(CXSourceRange R, const char *str) {
252 CXFile begin_file, end_file;
253 unsigned begin_line, begin_column, end_line, end_column;
254
255 clang_getSpellingLocation(clang_getRangeStart(R),
256 &begin_file, &begin_line, &begin_column, 0);
257 clang_getSpellingLocation(clang_getRangeEnd(R),
258 &end_file, &end_line, &end_column, 0);
259 if (!begin_file || !end_file)
260 return;
261
Argyrios Kyrtzidisba1da142012-03-30 20:58:35 +0000262 if (str)
263 printf(" %s=", str);
Douglas Gregor430d7a12011-07-25 17:48:11 +0000264 PrintExtent(stdout, begin_line, begin_column, end_line, end_column);
265}
266
Douglas Gregor358559d2010-10-02 22:49:11 +0000267int want_display_name = 0;
268
Douglas Gregorcc889662012-05-08 00:14:45 +0000269static void printVersion(const char *Prefix, CXVersion Version) {
270 if (Version.Major < 0)
271 return;
272 printf("%s%d", Prefix, Version.Major);
273
274 if (Version.Minor < 0)
275 return;
276 printf(".%d", Version.Minor);
277
278 if (Version.Subminor < 0)
279 return;
280 printf(".%d", Version.Subminor);
281}
282
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000283struct CommentASTDumpingContext {
284 int IndentLevel;
285};
286
287static void DumpCXCommentInternal(struct CommentASTDumpingContext *Ctx,
288 CXComment Comment) {
Dmitri Gribenko5ef6ea52012-07-20 22:00:35 +0000289 unsigned i;
290 unsigned e;
291 enum CXCommentKind Kind = clang_Comment_getKind(Comment);
292
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000293 Ctx->IndentLevel++;
Dmitri Gribenko5ef6ea52012-07-20 22:00:35 +0000294 for (i = 0, e = Ctx->IndentLevel; i != e; ++i)
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000295 printf(" ");
296
297 printf("(");
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000298 switch (Kind) {
299 case CXComment_Null:
300 printf("CXComment_Null");
301 break;
302 case CXComment_Text:
303 printf("CXComment_Text");
304 PrintCXStringWithPrefixAndDispose("Text",
305 clang_TextComment_getText(Comment));
306 if (clang_Comment_isWhitespace(Comment))
307 printf(" IsWhitespace");
308 if (clang_InlineContentComment_hasTrailingNewline(Comment))
309 printf(" HasTrailingNewline");
310 break;
311 case CXComment_InlineCommand:
312 printf("CXComment_InlineCommand");
313 PrintCXStringWithPrefixAndDispose(
314 "CommandName",
315 clang_InlineCommandComment_getCommandName(Comment));
Dmitri Gribenko2d66a502012-07-23 16:43:01 +0000316 switch (clang_InlineCommandComment_getRenderKind(Comment)) {
317 case CXCommentInlineCommandRenderKind_Normal:
318 printf(" RenderNormal");
319 break;
320 case CXCommentInlineCommandRenderKind_Bold:
321 printf(" RenderBold");
322 break;
323 case CXCommentInlineCommandRenderKind_Monospaced:
324 printf(" RenderMonospaced");
325 break;
326 case CXCommentInlineCommandRenderKind_Emphasized:
327 printf(" RenderEmphasized");
328 break;
329 }
Dmitri Gribenko5ef6ea52012-07-20 22:00:35 +0000330 for (i = 0, e = clang_InlineCommandComment_getNumArgs(Comment);
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000331 i != e; ++i) {
332 printf(" Arg[%u]=", i);
333 PrintCXStringAndDispose(
334 clang_InlineCommandComment_getArgText(Comment, i));
335 }
336 if (clang_InlineContentComment_hasTrailingNewline(Comment))
337 printf(" HasTrailingNewline");
338 break;
Dmitri Gribenko5ef6ea52012-07-20 22:00:35 +0000339 case CXComment_HTMLStartTag: {
340 unsigned NumAttrs;
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000341 printf("CXComment_HTMLStartTag");
342 PrintCXStringWithPrefixAndDispose(
343 "Name",
344 clang_HTMLTagComment_getTagName(Comment));
Dmitri Gribenko5ef6ea52012-07-20 22:00:35 +0000345 NumAttrs = clang_HTMLStartTag_getNumAttrs(Comment);
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000346 if (NumAttrs != 0) {
347 printf(" Attrs:");
Dmitri Gribenko5ef6ea52012-07-20 22:00:35 +0000348 for (i = 0; i != NumAttrs; ++i) {
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000349 printf(" ");
350 PrintCXStringAndDispose(clang_HTMLStartTag_getAttrName(Comment, i));
351 printf("=");
352 PrintCXStringAndDispose(clang_HTMLStartTag_getAttrValue(Comment, i));
353 }
354 }
355 if (clang_HTMLStartTagComment_isSelfClosing(Comment))
356 printf(" SelfClosing");
357 if (clang_InlineContentComment_hasTrailingNewline(Comment))
358 printf(" HasTrailingNewline");
359 break;
Dmitri Gribenko5ef6ea52012-07-20 22:00:35 +0000360 }
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000361 case CXComment_HTMLEndTag:
362 printf("CXComment_HTMLEndTag");
363 PrintCXStringWithPrefixAndDispose(
364 "Name",
365 clang_HTMLTagComment_getTagName(Comment));
366 if (clang_InlineContentComment_hasTrailingNewline(Comment))
367 printf(" HasTrailingNewline");
368 break;
369 case CXComment_Paragraph:
370 printf("CXComment_Paragraph");
371 if (clang_Comment_isWhitespace(Comment))
372 printf(" IsWhitespace");
373 break;
374 case CXComment_BlockCommand:
375 printf("CXComment_BlockCommand");
376 PrintCXStringWithPrefixAndDispose(
377 "CommandName",
378 clang_BlockCommandComment_getCommandName(Comment));
Dmitri Gribenko5ef6ea52012-07-20 22:00:35 +0000379 for (i = 0, e = clang_BlockCommandComment_getNumArgs(Comment);
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000380 i != e; ++i) {
381 printf(" Arg[%u]=", i);
382 PrintCXStringAndDispose(
383 clang_BlockCommandComment_getArgText(Comment, i));
384 }
385 break;
386 case CXComment_ParamCommand:
387 printf("CXComment_ParamCommand");
388 switch (clang_ParamCommandComment_getDirection(Comment)) {
389 case CXCommentParamPassDirection_In:
390 printf(" in");
391 break;
392 case CXCommentParamPassDirection_Out:
393 printf(" out");
394 break;
395 case CXCommentParamPassDirection_InOut:
396 printf(" in,out");
397 break;
398 }
399 if (clang_ParamCommandComment_isDirectionExplicit(Comment))
400 printf(" explicitly");
401 else
402 printf(" implicitly");
403 PrintCXStringWithPrefixAndDispose(
404 "ParamName",
405 clang_ParamCommandComment_getParamName(Comment));
406 if (clang_ParamCommandComment_isParamIndexValid(Comment))
407 printf(" ParamIndex=%u", clang_ParamCommandComment_getParamIndex(Comment));
408 else
409 printf(" ParamIndex=Invalid");
410 break;
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000411 case CXComment_TParamCommand:
412 printf("CXComment_TParamCommand");
413 PrintCXStringWithPrefixAndDispose(
414 "ParamName",
415 clang_TParamCommandComment_getParamName(Comment));
416 if (clang_TParamCommandComment_isParamPositionValid(Comment)) {
417 printf(" ParamPosition={");
418 for (i = 0, e = clang_TParamCommandComment_getDepth(Comment);
419 i != e; ++i) {
420 printf("%u", clang_TParamCommandComment_getIndex(Comment, i));
421 if (i != e - 1)
422 printf(", ");
423 }
424 printf("}");
425 } else
426 printf(" ParamPosition=Invalid");
427 break;
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000428 case CXComment_VerbatimBlockCommand:
429 printf("CXComment_VerbatimBlockCommand");
430 PrintCXStringWithPrefixAndDispose(
431 "CommandName",
432 clang_BlockCommandComment_getCommandName(Comment));
433 break;
434 case CXComment_VerbatimBlockLine:
435 printf("CXComment_VerbatimBlockLine");
436 PrintCXStringWithPrefixAndDispose(
437 "Text",
438 clang_VerbatimBlockLineComment_getText(Comment));
439 break;
440 case CXComment_VerbatimLine:
441 printf("CXComment_VerbatimLine");
442 PrintCXStringWithPrefixAndDispose(
443 "Text",
444 clang_VerbatimLineComment_getText(Comment));
445 break;
446 case CXComment_FullComment:
447 printf("CXComment_FullComment");
448 break;
449 }
450 if (Kind != CXComment_Null) {
451 const unsigned NumChildren = clang_Comment_getNumChildren(Comment);
Dmitri Gribenko5ef6ea52012-07-20 22:00:35 +0000452 unsigned i;
453 for (i = 0; i != NumChildren; ++i) {
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000454 printf("\n// %s: ", FileCheckPrefix);
455 DumpCXCommentInternal(Ctx, clang_Comment_getChild(Comment, i));
456 }
457 }
458 printf(")");
459 Ctx->IndentLevel--;
460}
461
462static void DumpCXComment(CXComment Comment) {
463 struct CommentASTDumpingContext Ctx;
464 Ctx.IndentLevel = 1;
465 printf("\n// %s: CommentAST=[\n// %s:", FileCheckPrefix, FileCheckPrefix);
466 DumpCXCommentInternal(&Ctx, Comment);
467 printf("]");
468}
469
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000470typedef struct {
471 const char *CommentSchemaFile;
472#ifdef CLANG_HAVE_LIBXML
473 xmlRelaxNGParserCtxtPtr RNGParser;
474 xmlRelaxNGPtr Schema;
475#endif
476} CommentXMLValidationData;
477
478static void ValidateCommentXML(const char *Str,
479 CommentXMLValidationData *ValidationData) {
480#ifdef CLANG_HAVE_LIBXML
481 xmlDocPtr Doc;
482 xmlRelaxNGValidCtxtPtr ValidationCtxt;
483 int status;
484
485 if (!ValidationData || !ValidationData->CommentSchemaFile)
486 return;
487
488 if (!ValidationData->RNGParser) {
489 ValidationData->RNGParser =
490 xmlRelaxNGNewParserCtxt(ValidationData->CommentSchemaFile);
491 ValidationData->Schema = xmlRelaxNGParse(ValidationData->RNGParser);
492 }
493 if (!ValidationData->RNGParser) {
494 printf(" libXMLError");
495 return;
496 }
497
498 Doc = xmlParseDoc((const xmlChar *) Str);
499
500 if (!Doc) {
501 xmlErrorPtr Error = xmlGetLastError();
502 printf(" CommentXMLInvalid [not well-formed XML: %s]", Error->message);
503 return;
504 }
505
506 ValidationCtxt = xmlRelaxNGNewValidCtxt(ValidationData->Schema);
507 status = xmlRelaxNGValidateDoc(ValidationCtxt, Doc);
508 if (!status)
509 printf(" CommentXMLValid");
510 else if (status > 0) {
511 xmlErrorPtr Error = xmlGetLastError();
512 printf(" CommentXMLInvalid [not vaild XML: %s]", Error->message);
513 } else
514 printf(" libXMLError");
515
516 xmlRelaxNGFreeValidCtxt(ValidationCtxt);
517 xmlFreeDoc(Doc);
518#endif
519}
520
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +0000521static void PrintCursorComments(CXCursor Cursor,
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000522 CommentXMLValidationData *ValidationData) {
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000523 {
524 CXString RawComment;
525 const char *RawCommentCString;
526 CXString BriefComment;
527 const char *BriefCommentCString;
528
529 RawComment = clang_Cursor_getRawCommentText(Cursor);
530 RawCommentCString = clang_getCString(RawComment);
531 if (RawCommentCString != NULL && RawCommentCString[0] != '\0') {
532 PrintCStringWithPrefix("RawComment", RawCommentCString);
533 PrintRange(clang_Cursor_getCommentRange(Cursor), "RawCommentRange");
534
535 BriefComment = clang_Cursor_getBriefCommentText(Cursor);
536 BriefCommentCString = clang_getCString(BriefComment);
537 if (BriefCommentCString != NULL && BriefCommentCString[0] != '\0')
538 PrintCStringWithPrefix("BriefComment", BriefCommentCString);
539 clang_disposeString(BriefComment);
540 }
541 clang_disposeString(RawComment);
542 }
543
544 {
545 CXComment Comment = clang_Cursor_getParsedComment(Cursor);
546 if (clang_Comment_getKind(Comment) != CXComment_Null) {
547 PrintCXStringWithPrefixAndDispose("FullCommentAsHTML",
548 clang_FullComment_getAsHTML(Comment));
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000549 {
550 CXString XML;
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +0000551 XML = clang_FullComment_getAsXML(Comment);
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000552 PrintCXStringWithPrefix("FullCommentAsXML", XML);
553 ValidateCommentXML(clang_getCString(XML), ValidationData);
554 clang_disposeString(XML);
555 }
556
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000557 DumpCXComment(Comment);
558 }
559 }
560}
561
Argyrios Kyrtzidisb3dd9882012-08-22 23:15:52 +0000562typedef struct {
563 unsigned line;
564 unsigned col;
565} LineCol;
566
567static int lineCol_cmp(const void *p1, const void *p2) {
568 const LineCol *lhs = p1;
569 const LineCol *rhs = p2;
570 if (lhs->line != rhs->line)
571 return (int)lhs->line - (int)rhs->line;
572 return (int)lhs->col - (int)rhs->col;
573}
574
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000575static void PrintCursor(CXCursor Cursor,
576 CommentXMLValidationData *ValidationData) {
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +0000577 CXTranslationUnit TU = clang_Cursor_getTranslationUnit(Cursor);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000578 if (clang_isInvalid(Cursor.kind)) {
579 CXString ks = clang_getCursorKindSpelling(Cursor.kind);
580 printf("Invalid Cursor => %s", clang_getCString(ks));
581 clang_disposeString(ks);
582 }
Steve Naroff699a07d2009-09-25 21:32:34 +0000583 else {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000584 CXString string, ks;
Douglas Gregorc5d1e932010-01-19 01:20:04 +0000585 CXCursor Referenced;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000586 unsigned line, column;
Douglas Gregore0329ac2010-09-02 00:07:54 +0000587 CXCursor SpecializationOf;
Douglas Gregor9f592342010-10-01 20:25:15 +0000588 CXCursor *overridden;
589 unsigned num_overridden;
Douglas Gregor430d7a12011-07-25 17:48:11 +0000590 unsigned RefNameRangeNr;
591 CXSourceRange CursorExtent;
592 CXSourceRange RefNameRange;
Douglas Gregorcc889662012-05-08 00:14:45 +0000593 int AlwaysUnavailable;
594 int AlwaysDeprecated;
595 CXString UnavailableMessage;
596 CXString DeprecatedMessage;
597 CXPlatformAvailability PlatformAvailability[2];
598 int NumPlatformAvailability;
599 int I;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000600
Ted Kremeneke68fff62010-02-17 00:41:32 +0000601 ks = clang_getCursorKindSpelling(Cursor.kind);
Douglas Gregor358559d2010-10-02 22:49:11 +0000602 string = want_display_name? clang_getCursorDisplayName(Cursor)
603 : clang_getCursorSpelling(Cursor);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000604 printf("%s=%s", clang_getCString(ks),
605 clang_getCString(string));
606 clang_disposeString(ks);
Steve Naroffef0cef62009-11-09 17:45:52 +0000607 clang_disposeString(string);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000608
Douglas Gregorc5d1e932010-01-19 01:20:04 +0000609 Referenced = clang_getCursorReferenced(Cursor);
610 if (!clang_equalCursors(Referenced, clang_getNullCursor())) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000611 if (clang_getCursorKind(Referenced) == CXCursor_OverloadedDeclRef) {
612 unsigned I, N = clang_getNumOverloadedDecls(Referenced);
613 printf("[");
614 for (I = 0; I != N; ++I) {
615 CXCursor Ovl = clang_getOverloadedDecl(Referenced, I);
Douglas Gregor1f6206e2010-09-14 00:20:32 +0000616 CXSourceLocation Loc;
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000617 if (I)
618 printf(", ");
619
Douglas Gregor1f6206e2010-09-14 00:20:32 +0000620 Loc = clang_getCursorLocation(Ovl);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000621 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000622 printf("%d:%d", line, column);
623 }
624 printf("]");
625 } else {
626 CXSourceLocation Loc = clang_getCursorLocation(Referenced);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000627 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000628 printf(":%d:%d", line, column);
629 }
Douglas Gregorc5d1e932010-01-19 01:20:04 +0000630 }
Douglas Gregorb6998662010-01-19 19:34:47 +0000631
632 if (clang_isCursorDefinition(Cursor))
633 printf(" (Definition)");
Douglas Gregor58ddb602010-08-23 23:00:57 +0000634
635 switch (clang_getCursorAvailability(Cursor)) {
636 case CXAvailability_Available:
637 break;
638
639 case CXAvailability_Deprecated:
640 printf(" (deprecated)");
641 break;
642
643 case CXAvailability_NotAvailable:
644 printf(" (unavailable)");
645 break;
Erik Verbruggend1205962011-10-06 07:27:49 +0000646
647 case CXAvailability_NotAccessible:
648 printf(" (inaccessible)");
649 break;
Douglas Gregor58ddb602010-08-23 23:00:57 +0000650 }
Ted Kremenek95f33552010-08-26 01:42:22 +0000651
Douglas Gregorcc889662012-05-08 00:14:45 +0000652 NumPlatformAvailability
653 = clang_getCursorPlatformAvailability(Cursor,
654 &AlwaysDeprecated,
655 &DeprecatedMessage,
656 &AlwaysUnavailable,
657 &UnavailableMessage,
658 PlatformAvailability, 2);
659 if (AlwaysUnavailable) {
660 printf(" (always unavailable: \"%s\")",
661 clang_getCString(UnavailableMessage));
662 } else if (AlwaysDeprecated) {
663 printf(" (always deprecated: \"%s\")",
664 clang_getCString(DeprecatedMessage));
665 } else {
666 for (I = 0; I != NumPlatformAvailability; ++I) {
667 if (I >= 2)
668 break;
669
670 printf(" (%s", clang_getCString(PlatformAvailability[I].Platform));
671 if (PlatformAvailability[I].Unavailable)
672 printf(", unavailable");
673 else {
674 printVersion(", introduced=", PlatformAvailability[I].Introduced);
675 printVersion(", deprecated=", PlatformAvailability[I].Deprecated);
676 printVersion(", obsoleted=", PlatformAvailability[I].Obsoleted);
677 }
678 if (clang_getCString(PlatformAvailability[I].Message)[0])
679 printf(", message=\"%s\"",
680 clang_getCString(PlatformAvailability[I].Message));
681 printf(")");
682 }
683 }
684 for (I = 0; I != NumPlatformAvailability; ++I) {
685 if (I >= 2)
686 break;
687 clang_disposeCXPlatformAvailability(PlatformAvailability + I);
688 }
689
690 clang_disposeString(DeprecatedMessage);
691 clang_disposeString(UnavailableMessage);
692
Douglas Gregorb83d4d72011-05-13 15:54:42 +0000693 if (clang_CXXMethod_isStatic(Cursor))
694 printf(" (static)");
695 if (clang_CXXMethod_isVirtual(Cursor))
696 printf(" (virtual)");
Dmitri Gribenkoc965f762013-05-17 18:38:35 +0000697 if (clang_CXXMethod_isPureVirtual(Cursor))
698 printf(" (pure)");
Argyrios Kyrtzidis80e1aca2013-04-18 23:53:05 +0000699 if (clang_Cursor_isVariadic(Cursor))
700 printf(" (variadic)");
Douglas Gregorb83d4d72011-05-13 15:54:42 +0000701
Ted Kremenek95f33552010-08-26 01:42:22 +0000702 if (Cursor.kind == CXCursor_IBOutletCollectionAttr) {
703 CXType T =
704 clang_getCanonicalType(clang_getIBOutletCollectionType(Cursor));
705 CXString S = clang_getTypeKindSpelling(T.kind);
706 printf(" [IBOutletCollection=%s]", clang_getCString(S));
707 clang_disposeString(S);
708 }
Ted Kremenek3064ef92010-08-27 21:34:58 +0000709
710 if (Cursor.kind == CXCursor_CXXBaseSpecifier) {
711 enum CX_CXXAccessSpecifier access = clang_getCXXAccessSpecifier(Cursor);
712 unsigned isVirtual = clang_isVirtualBase(Cursor);
713 const char *accessStr = 0;
714
715 switch (access) {
716 case CX_CXXInvalidAccessSpecifier:
717 accessStr = "invalid"; break;
718 case CX_CXXPublic:
719 accessStr = "public"; break;
720 case CX_CXXProtected:
721 accessStr = "protected"; break;
722 case CX_CXXPrivate:
723 accessStr = "private"; break;
724 }
725
726 printf(" [access=%s isVirtual=%s]", accessStr,
727 isVirtual ? "true" : "false");
728 }
Douglas Gregore0329ac2010-09-02 00:07:54 +0000729
730 SpecializationOf = clang_getSpecializedCursorTemplate(Cursor);
731 if (!clang_equalCursors(SpecializationOf, clang_getNullCursor())) {
732 CXSourceLocation Loc = clang_getCursorLocation(SpecializationOf);
733 CXString Name = clang_getCursorSpelling(SpecializationOf);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000734 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Douglas Gregore0329ac2010-09-02 00:07:54 +0000735 printf(" [Specialization of %s:%d:%d]",
736 clang_getCString(Name), line, column);
737 clang_disposeString(Name);
738 }
Douglas Gregor9f592342010-10-01 20:25:15 +0000739
740 clang_getOverriddenCursors(Cursor, &overridden, &num_overridden);
741 if (num_overridden) {
742 unsigned I;
Argyrios Kyrtzidisb3dd9882012-08-22 23:15:52 +0000743 LineCol lineCols[50];
744 assert(num_overridden <= 50);
Douglas Gregor9f592342010-10-01 20:25:15 +0000745 printf(" [Overrides ");
746 for (I = 0; I != num_overridden; ++I) {
747 CXSourceLocation Loc = clang_getCursorLocation(overridden[I]);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000748 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Argyrios Kyrtzidisb3dd9882012-08-22 23:15:52 +0000749 lineCols[I].line = line;
750 lineCols[I].col = column;
751 }
Michael Liao64221492012-08-30 00:45:32 +0000752 /* Make the order of the override list deterministic. */
Argyrios Kyrtzidisb3dd9882012-08-22 23:15:52 +0000753 qsort(lineCols, num_overridden, sizeof(LineCol), lineCol_cmp);
754 for (I = 0; I != num_overridden; ++I) {
Douglas Gregor9f592342010-10-01 20:25:15 +0000755 if (I)
756 printf(", ");
Argyrios Kyrtzidisb3dd9882012-08-22 23:15:52 +0000757 printf("@%d:%d", lineCols[I].line, lineCols[I].col);
Douglas Gregor9f592342010-10-01 20:25:15 +0000758 }
759 printf("]");
760 clang_disposeOverriddenCursors(overridden);
761 }
Douglas Gregorecdcb882010-10-20 22:00:55 +0000762
763 if (Cursor.kind == CXCursor_InclusionDirective) {
764 CXFile File = clang_getIncludedFile(Cursor);
765 CXString Included = clang_getFileName(File);
766 printf(" (%s)", clang_getCString(Included));
767 clang_disposeString(Included);
Douglas Gregordd3e5542011-05-04 00:14:37 +0000768
769 if (clang_isFileMultipleIncludeGuarded(TU, File))
770 printf(" [multi-include guarded]");
Douglas Gregorecdcb882010-10-20 22:00:55 +0000771 }
Douglas Gregor430d7a12011-07-25 17:48:11 +0000772
773 CursorExtent = clang_getCursorExtent(Cursor);
774 RefNameRange = clang_getCursorReferenceNameRange(Cursor,
775 CXNameRange_WantQualifier
776 | CXNameRange_WantSinglePiece
777 | CXNameRange_WantTemplateArgs,
778 0);
779 if (!clang_equalRanges(CursorExtent, RefNameRange))
780 PrintRange(RefNameRange, "SingleRefName");
781
782 for (RefNameRangeNr = 0; 1; RefNameRangeNr++) {
783 RefNameRange = clang_getCursorReferenceNameRange(Cursor,
784 CXNameRange_WantQualifier
785 | CXNameRange_WantTemplateArgs,
786 RefNameRangeNr);
787 if (clang_equalRanges(clang_getNullRange(), RefNameRange))
788 break;
789 if (!clang_equalRanges(CursorExtent, RefNameRange))
790 PrintRange(RefNameRange, "RefName");
791 }
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000792
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +0000793 PrintCursorComments(Cursor, ValidationData);
Argyrios Kyrtzidis9ee6a662013-04-18 22:15:49 +0000794
795 {
796 unsigned PropAttrs = clang_Cursor_getObjCPropertyAttributes(Cursor, 0);
797 if (PropAttrs != CXObjCPropertyAttr_noattr) {
798 printf(" [");
799 #define PRINT_PROP_ATTR(A) \
800 if (PropAttrs & CXObjCPropertyAttr_##A) printf(#A ",")
801 PRINT_PROP_ATTR(readonly);
802 PRINT_PROP_ATTR(getter);
803 PRINT_PROP_ATTR(assign);
804 PRINT_PROP_ATTR(readwrite);
805 PRINT_PROP_ATTR(retain);
806 PRINT_PROP_ATTR(copy);
807 PRINT_PROP_ATTR(nonatomic);
808 PRINT_PROP_ATTR(setter);
809 PRINT_PROP_ATTR(atomic);
810 PRINT_PROP_ATTR(weak);
811 PRINT_PROP_ATTR(strong);
812 PRINT_PROP_ATTR(unsafe_unretained);
813 printf("]");
814 }
815 }
Argyrios Kyrtzidis38dbad22013-04-18 23:29:12 +0000816
817 {
818 unsigned QT = clang_Cursor_getObjCDeclQualifiers(Cursor);
819 if (QT != CXObjCDeclQualifier_None) {
820 printf(" [");
821 #define PRINT_OBJC_QUAL(A) \
822 if (QT & CXObjCDeclQualifier_##A) printf(#A ",")
823 PRINT_OBJC_QUAL(In);
824 PRINT_OBJC_QUAL(Inout);
825 PRINT_OBJC_QUAL(Out);
826 PRINT_OBJC_QUAL(Bycopy);
827 PRINT_OBJC_QUAL(Byref);
828 PRINT_OBJC_QUAL(Oneway);
829 printf("]");
830 }
831 }
Steve Naroff699a07d2009-09-25 21:32:34 +0000832 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000833}
Steve Naroff89922f82009-08-31 00:59:03 +0000834
Ted Kremeneke68fff62010-02-17 00:41:32 +0000835static const char* GetCursorSource(CXCursor Cursor) {
Douglas Gregor1db19de2010-01-19 21:36:55 +0000836 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
Ted Kremenek74844072010-02-17 00:41:20 +0000837 CXString source;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000838 CXFile file;
Argyrios Kyrtzidisb4efaa02011-11-03 02:20:36 +0000839 clang_getExpansionLocation(Loc, &file, 0, 0, 0);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000840 source = clang_getFileName(file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000841 if (!clang_getCString(source)) {
Ted Kremenek74844072010-02-17 00:41:20 +0000842 clang_disposeString(source);
843 return "<invalid loc>";
844 }
845 else {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000846 const char *b = basename(clang_getCString(source));
Ted Kremenek74844072010-02-17 00:41:20 +0000847 clang_disposeString(source);
848 return b;
849 }
Ted Kremenek9298cfc2009-11-17 05:31:58 +0000850}
851
Ted Kremenek0d435192009-11-17 18:13:31 +0000852/******************************************************************************/
Ted Kremenekce2ae882010-01-26 17:59:48 +0000853/* Callbacks. */
854/******************************************************************************/
855
856typedef void (*PostVisitTU)(CXTranslationUnit);
857
Douglas Gregora88084b2010-02-18 18:08:43 +0000858void PrintDiagnostic(CXDiagnostic Diagnostic) {
859 FILE *out = stderr;
Douglas Gregor5352ac02010-01-28 00:27:43 +0000860 CXFile file;
Douglas Gregor274f1902010-02-22 23:17:23 +0000861 CXString Msg;
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000862 unsigned display_opts = CXDiagnostic_DisplaySourceLocation
Douglas Gregoraa5f1352010-11-19 16:18:16 +0000863 | CXDiagnostic_DisplayColumn | CXDiagnostic_DisplaySourceRanges
864 | CXDiagnostic_DisplayOption;
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000865 unsigned i, num_fixits;
Ted Kremenekf7b714d2010-03-25 02:00:39 +0000866
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000867 if (clang_getDiagnosticSeverity(Diagnostic) == CXDiagnostic_Ignored)
Douglas Gregor5352ac02010-01-28 00:27:43 +0000868 return;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000869
Douglas Gregor274f1902010-02-22 23:17:23 +0000870 Msg = clang_formatDiagnostic(Diagnostic, display_opts);
871 fprintf(stderr, "%s\n", clang_getCString(Msg));
872 clang_disposeString(Msg);
Ted Kremenekf7b714d2010-03-25 02:00:39 +0000873
Douglas Gregora9b06d42010-11-09 06:24:54 +0000874 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
875 &file, 0, 0, 0);
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000876 if (!file)
877 return;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000878
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000879 num_fixits = clang_getDiagnosticNumFixIts(Diagnostic);
Ted Kremenek3739b322012-03-20 20:49:45 +0000880 fprintf(stderr, "Number FIX-ITs = %d\n", num_fixits);
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000881 for (i = 0; i != num_fixits; ++i) {
Douglas Gregor473d7012010-02-19 18:16:06 +0000882 CXSourceRange range;
883 CXString insertion_text = clang_getDiagnosticFixIt(Diagnostic, i, &range);
884 CXSourceLocation start = clang_getRangeStart(range);
885 CXSourceLocation end = clang_getRangeEnd(range);
886 unsigned start_line, start_column, end_line, end_column;
887 CXFile start_file, end_file;
Douglas Gregora9b06d42010-11-09 06:24:54 +0000888 clang_getSpellingLocation(start, &start_file, &start_line,
889 &start_column, 0);
890 clang_getSpellingLocation(end, &end_file, &end_line, &end_column, 0);
Douglas Gregor473d7012010-02-19 18:16:06 +0000891 if (clang_equalLocations(start, end)) {
892 /* Insertion. */
893 if (start_file == file)
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000894 fprintf(out, "FIX-IT: Insert \"%s\" at %d:%d\n",
Douglas Gregor473d7012010-02-19 18:16:06 +0000895 clang_getCString(insertion_text), start_line, start_column);
896 } else if (strcmp(clang_getCString(insertion_text), "") == 0) {
897 /* Removal. */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000898 if (start_file == file && end_file == file) {
899 fprintf(out, "FIX-IT: Remove ");
900 PrintExtent(out, start_line, start_column, end_line, end_column);
901 fprintf(out, "\n");
Douglas Gregor51c6d382010-01-29 00:41:11 +0000902 }
Douglas Gregor473d7012010-02-19 18:16:06 +0000903 } else {
904 /* Replacement. */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000905 if (start_file == end_file) {
906 fprintf(out, "FIX-IT: Replace ");
907 PrintExtent(out, start_line, start_column, end_line, end_column);
Douglas Gregor473d7012010-02-19 18:16:06 +0000908 fprintf(out, " with \"%s\"\n", clang_getCString(insertion_text));
Douglas Gregor436f3f02010-02-18 22:27:07 +0000909 }
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000910 break;
911 }
Douglas Gregor473d7012010-02-19 18:16:06 +0000912 clang_disposeString(insertion_text);
Douglas Gregor51c6d382010-01-29 00:41:11 +0000913 }
Douglas Gregor5352ac02010-01-28 00:27:43 +0000914}
915
Ted Kremenek7473b1c2012-02-14 02:46:03 +0000916void PrintDiagnosticSet(CXDiagnosticSet Set) {
917 int i = 0, n = clang_getNumDiagnosticsInSet(Set);
918 for ( ; i != n ; ++i) {
919 CXDiagnostic Diag = clang_getDiagnosticInSet(Set, i);
920 CXDiagnosticSet ChildDiags = clang_getChildDiagnostics(Diag);
Douglas Gregora88084b2010-02-18 18:08:43 +0000921 PrintDiagnostic(Diag);
Ted Kremenek7473b1c2012-02-14 02:46:03 +0000922 if (ChildDiags)
923 PrintDiagnosticSet(ChildDiags);
924 }
925}
926
927void PrintDiagnostics(CXTranslationUnit TU) {
928 CXDiagnosticSet TUSet = clang_getDiagnosticSetFromTU(TU);
929 PrintDiagnosticSet(TUSet);
930 clang_disposeDiagnosticSet(TUSet);
Douglas Gregora88084b2010-02-18 18:08:43 +0000931}
932
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000933void PrintMemoryUsage(CXTranslationUnit TU) {
Matt Beaumont-Gayb2273232011-08-29 16:37:29 +0000934 unsigned long total = 0;
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000935 unsigned i = 0;
Ted Kremenekf7870022011-04-20 16:41:07 +0000936 CXTUResourceUsage usage = clang_getCXTUResourceUsage(TU);
Francois Pichet3c683362011-04-18 23:33:22 +0000937 fprintf(stderr, "Memory usage:\n");
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000938 for (i = 0 ; i != usage.numEntries; ++i) {
Ted Kremenekf7870022011-04-20 16:41:07 +0000939 const char *name = clang_getTUResourceUsageName(usage.entries[i].kind);
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000940 unsigned long amount = usage.entries[i].amount;
941 total += amount;
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000942 fprintf(stderr, " %s : %ld bytes (%f MBytes)\n", name, amount,
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000943 ((double) amount)/(1024*1024));
944 }
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000945 fprintf(stderr, " TOTAL = %ld bytes (%f MBytes)\n", total,
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000946 ((double) total)/(1024*1024));
Ted Kremenekf7870022011-04-20 16:41:07 +0000947 clang_disposeCXTUResourceUsage(usage);
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000948}
949
Ted Kremenekce2ae882010-01-26 17:59:48 +0000950/******************************************************************************/
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000951/* Logic for testing traversal. */
Ted Kremenek0d435192009-11-17 18:13:31 +0000952/******************************************************************************/
953
Douglas Gregora7bde202010-01-19 00:34:46 +0000954static void PrintCursorExtent(CXCursor C) {
955 CXSourceRange extent = clang_getCursorExtent(C);
Douglas Gregor430d7a12011-07-25 17:48:11 +0000956 PrintRange(extent, "Extent");
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000957}
958
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000959/* Data used by the visitors. */
960typedef struct {
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000961 CXTranslationUnit TU;
962 enum CXCursorKind *Filter;
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000963 CommentXMLValidationData ValidationData;
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000964} VisitorData;
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000965
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000966
Ted Kremeneke68fff62010-02-17 00:41:32 +0000967enum CXChildVisitResult FilteredPrintingVisitor(CXCursor Cursor,
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000968 CXCursor Parent,
969 CXClientData ClientData) {
970 VisitorData *Data = (VisitorData *)ClientData;
971 if (!Data->Filter || (Cursor.kind == *(enum CXCursorKind *)Data->Filter)) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000972 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000973 unsigned line, column;
Douglas Gregora9b06d42010-11-09 06:24:54 +0000974 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000975 printf("// %s: %s:%d:%d: ", FileCheckPrefix,
Douglas Gregor1db19de2010-01-19 21:36:55 +0000976 GetCursorSource(Cursor), line, column);
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000977 PrintCursor(Cursor, &Data->ValidationData);
Douglas Gregora7bde202010-01-19 00:34:46 +0000978 PrintCursorExtent(Cursor);
Argyrios Kyrtzidis04b67482013-04-11 17:02:10 +0000979 if (clang_isDeclaration(Cursor.kind)) {
980 enum CX_CXXAccessSpecifier access = clang_getCXXAccessSpecifier(Cursor);
981 const char *accessStr = 0;
982
983 switch (access) {
984 case CX_CXXInvalidAccessSpecifier: break;
985 case CX_CXXPublic:
986 accessStr = "public"; break;
987 case CX_CXXProtected:
988 accessStr = "protected"; break;
989 case CX_CXXPrivate:
990 accessStr = "private"; break;
991 }
992
993 if (accessStr)
994 printf(" [access=%s]", accessStr);
995 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000996 printf("\n");
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000997 return CXChildVisit_Recurse;
Steve Naroff2d4d6292009-08-31 14:26:51 +0000998 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000999
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001000 return CXChildVisit_Continue;
Steve Naroff89922f82009-08-31 00:59:03 +00001001}
Steve Naroff50398192009-08-28 15:28:48 +00001002
Ted Kremeneke68fff62010-02-17 00:41:32 +00001003static enum CXChildVisitResult FunctionScanVisitor(CXCursor Cursor,
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001004 CXCursor Parent,
1005 CXClientData ClientData) {
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001006 const char *startBuf, *endBuf;
1007 unsigned startLine, startColumn, endLine, endColumn, curLine, curColumn;
1008 CXCursor Ref;
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001009 VisitorData *Data = (VisitorData *)ClientData;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001010
Douglas Gregorb6998662010-01-19 19:34:47 +00001011 if (Cursor.kind != CXCursor_FunctionDecl ||
1012 !clang_isCursorDefinition(Cursor))
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001013 return CXChildVisit_Continue;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001014
1015 clang_getDefinitionSpellingAndExtent(Cursor, &startBuf, &endBuf,
1016 &startLine, &startColumn,
1017 &endLine, &endColumn);
1018 /* Probe the entire body, looking for both decls and refs. */
1019 curLine = startLine;
1020 curColumn = startColumn;
1021
1022 while (startBuf < endBuf) {
Douglas Gregor98258af2010-01-18 22:46:11 +00001023 CXSourceLocation Loc;
Douglas Gregor1db19de2010-01-19 21:36:55 +00001024 CXFile file;
Ted Kremenek74844072010-02-17 00:41:20 +00001025 CXString source;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001026
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001027 if (*startBuf == '\n') {
1028 startBuf++;
1029 curLine++;
1030 curColumn = 1;
1031 } else if (*startBuf != '\t')
1032 curColumn++;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001033
Douglas Gregor98258af2010-01-18 22:46:11 +00001034 Loc = clang_getCursorLocation(Cursor);
Douglas Gregora9b06d42010-11-09 06:24:54 +00001035 clang_getSpellingLocation(Loc, &file, 0, 0, 0);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001036
Douglas Gregor1db19de2010-01-19 21:36:55 +00001037 source = clang_getFileName(file);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001038 if (clang_getCString(source)) {
Douglas Gregorb9790342010-01-22 21:44:22 +00001039 CXSourceLocation RefLoc
1040 = clang_getLocation(Data->TU, file, curLine, curColumn);
1041 Ref = clang_getCursor(Data->TU, RefLoc);
Douglas Gregor98258af2010-01-18 22:46:11 +00001042 if (Ref.kind == CXCursor_NoDeclFound) {
1043 /* Nothing found here; that's fine. */
1044 } else if (Ref.kind != CXCursor_FunctionDecl) {
1045 printf("// %s: %s:%d:%d: ", FileCheckPrefix, GetCursorSource(Ref),
1046 curLine, curColumn);
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001047 PrintCursor(Ref, &Data->ValidationData);
Douglas Gregor98258af2010-01-18 22:46:11 +00001048 printf("\n");
1049 }
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001050 }
Ted Kremenek74844072010-02-17 00:41:20 +00001051 clang_disposeString(source);
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001052 startBuf++;
1053 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001054
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001055 return CXChildVisit_Continue;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001056}
1057
Ted Kremenek7d405622010-01-12 23:34:26 +00001058/******************************************************************************/
1059/* USR testing. */
1060/******************************************************************************/
1061
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001062enum CXChildVisitResult USRVisitor(CXCursor C, CXCursor parent,
1063 CXClientData ClientData) {
1064 VisitorData *Data = (VisitorData *)ClientData;
1065 if (!Data->Filter || (C.kind == *(enum CXCursorKind *)Data->Filter)) {
Ted Kremenekcf84aa42010-01-18 20:23:29 +00001066 CXString USR = clang_getCursorUSR(C);
Ted Kremeneke542f772010-04-20 23:15:40 +00001067 const char *cstr = clang_getCString(USR);
1068 if (!cstr || cstr[0] == '\0') {
Ted Kremenek7d405622010-01-12 23:34:26 +00001069 clang_disposeString(USR);
Ted Kremeneke74ef122010-04-16 21:31:52 +00001070 return CXChildVisit_Recurse;
Ted Kremenek7d405622010-01-12 23:34:26 +00001071 }
Ted Kremeneke542f772010-04-20 23:15:40 +00001072 printf("// %s: %s %s", FileCheckPrefix, GetCursorSource(C), cstr);
1073
Douglas Gregora7bde202010-01-19 00:34:46 +00001074 PrintCursorExtent(C);
Ted Kremenek7d405622010-01-12 23:34:26 +00001075 printf("\n");
1076 clang_disposeString(USR);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001077
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001078 return CXChildVisit_Recurse;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001079 }
1080
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001081 return CXChildVisit_Continue;
Ted Kremenek7d405622010-01-12 23:34:26 +00001082}
1083
1084/******************************************************************************/
Ted Kremenek16b55a72010-01-26 19:31:51 +00001085/* Inclusion stack testing. */
1086/******************************************************************************/
1087
1088void InclusionVisitor(CXFile includedFile, CXSourceLocation *includeStack,
1089 unsigned includeStackLen, CXClientData data) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001090
Ted Kremenek16b55a72010-01-26 19:31:51 +00001091 unsigned i;
Ted Kremenek74844072010-02-17 00:41:20 +00001092 CXString fname;
1093
1094 fname = clang_getFileName(includedFile);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001095 printf("file: %s\nincluded by:\n", clang_getCString(fname));
Ted Kremenek74844072010-02-17 00:41:20 +00001096 clang_disposeString(fname);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001097
Ted Kremenek16b55a72010-01-26 19:31:51 +00001098 for (i = 0; i < includeStackLen; ++i) {
1099 CXFile includingFile;
1100 unsigned line, column;
Douglas Gregora9b06d42010-11-09 06:24:54 +00001101 clang_getSpellingLocation(includeStack[i], &includingFile, &line,
1102 &column, 0);
Ted Kremenek74844072010-02-17 00:41:20 +00001103 fname = clang_getFileName(includingFile);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001104 printf(" %s:%d:%d\n", clang_getCString(fname), line, column);
Ted Kremenek74844072010-02-17 00:41:20 +00001105 clang_disposeString(fname);
Ted Kremenek16b55a72010-01-26 19:31:51 +00001106 }
1107 printf("\n");
1108}
1109
1110void PrintInclusionStack(CXTranslationUnit TU) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001111 clang_getInclusions(TU, InclusionVisitor, NULL);
Ted Kremenek16b55a72010-01-26 19:31:51 +00001112}
1113
1114/******************************************************************************/
Ted Kremenek3bed5272010-03-03 06:37:58 +00001115/* Linkage testing. */
1116/******************************************************************************/
1117
1118static enum CXChildVisitResult PrintLinkage(CXCursor cursor, CXCursor p,
1119 CXClientData d) {
1120 const char *linkage = 0;
1121
1122 if (clang_isInvalid(clang_getCursorKind(cursor)))
1123 return CXChildVisit_Recurse;
1124
1125 switch (clang_getCursorLinkage(cursor)) {
1126 case CXLinkage_Invalid: break;
Douglas Gregorc2a2b3c2010-03-04 19:36:27 +00001127 case CXLinkage_NoLinkage: linkage = "NoLinkage"; break;
1128 case CXLinkage_Internal: linkage = "Internal"; break;
1129 case CXLinkage_UniqueExternal: linkage = "UniqueExternal"; break;
1130 case CXLinkage_External: linkage = "External"; break;
Ted Kremenek3bed5272010-03-03 06:37:58 +00001131 }
1132
1133 if (linkage) {
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001134 PrintCursor(cursor, NULL);
Ted Kremenek3bed5272010-03-03 06:37:58 +00001135 printf("linkage=%s\n", linkage);
1136 }
1137
1138 return CXChildVisit_Recurse;
1139}
1140
1141/******************************************************************************/
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001142/* Typekind testing. */
1143/******************************************************************************/
1144
Dmitri Gribenkoae03d8e2013-02-15 21:15:49 +00001145static void PrintTypeAndTypeKind(CXType T, const char *Format) {
1146 CXString TypeSpelling, TypeKindSpelling;
1147
1148 TypeSpelling = clang_getTypeSpelling(T);
1149 TypeKindSpelling = clang_getTypeKindSpelling(T.kind);
1150 printf(Format,
1151 clang_getCString(TypeSpelling),
1152 clang_getCString(TypeKindSpelling));
1153 clang_disposeString(TypeSpelling);
1154 clang_disposeString(TypeKindSpelling);
1155}
1156
1157static enum CXChildVisitResult PrintType(CXCursor cursor, CXCursor p,
1158 CXClientData d) {
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001159 if (!clang_isInvalid(clang_getCursorKind(cursor))) {
1160 CXType T = clang_getCursorType(cursor);
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001161 PrintCursor(cursor, NULL);
Dmitri Gribenkoae03d8e2013-02-15 21:15:49 +00001162 PrintTypeAndTypeKind(T, " [type=%s] [typekind=%s]");
Douglas Gregore72fb6f2011-01-27 16:27:11 +00001163 if (clang_isConstQualifiedType(T))
1164 printf(" const");
1165 if (clang_isVolatileQualifiedType(T))
1166 printf(" volatile");
1167 if (clang_isRestrictQualifiedType(T))
1168 printf(" restrict");
Benjamin Kramere1403d22010-06-22 09:29:44 +00001169 /* Print the canonical type if it is different. */
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001170 {
1171 CXType CT = clang_getCanonicalType(T);
1172 if (!clang_equalTypes(T, CT)) {
Dmitri Gribenkoae03d8e2013-02-15 21:15:49 +00001173 PrintTypeAndTypeKind(CT, " [canonicaltype=%s] [canonicaltypekind=%s]");
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001174 }
1175 }
Benjamin Kramere1403d22010-06-22 09:29:44 +00001176 /* Print the return type if it exists. */
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001177 {
Ted Kremenek9a140842010-06-21 20:48:56 +00001178 CXType RT = clang_getCursorResultType(cursor);
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001179 if (RT.kind != CXType_Invalid) {
Dmitri Gribenkoae03d8e2013-02-15 21:15:49 +00001180 PrintTypeAndTypeKind(RT, " [resulttype=%s] [resulttypekind=%s]");
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001181 }
1182 }
Argyrios Kyrtzidisd98ef9a2012-04-11 19:32:19 +00001183 /* Print the argument types if they exist. */
1184 {
1185 int numArgs = clang_Cursor_getNumArguments(cursor);
1186 if (numArgs != -1 && numArgs != 0) {
Argyrios Kyrtzidis47f11652012-04-11 19:54:09 +00001187 int i;
Argyrios Kyrtzidisd98ef9a2012-04-11 19:32:19 +00001188 printf(" [args=");
Argyrios Kyrtzidis47f11652012-04-11 19:54:09 +00001189 for (i = 0; i < numArgs; ++i) {
Argyrios Kyrtzidisd98ef9a2012-04-11 19:32:19 +00001190 CXType T = clang_getCursorType(clang_Cursor_getArgument(cursor, i));
1191 if (T.kind != CXType_Invalid) {
Dmitri Gribenkoae03d8e2013-02-15 21:15:49 +00001192 PrintTypeAndTypeKind(T, " [%s] [%s]");
Argyrios Kyrtzidisd98ef9a2012-04-11 19:32:19 +00001193 }
1194 }
1195 printf("]");
1196 }
1197 }
Ted Kremenek3ce9e7d2010-07-30 00:14:11 +00001198 /* Print if this is a non-POD type. */
1199 printf(" [isPOD=%d]", clang_isPODType(T));
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001200
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001201 printf("\n");
1202 }
1203 return CXChildVisit_Recurse;
1204}
1205
Argyrios Kyrtzidis411d33a2013-04-11 01:20:11 +00001206static enum CXChildVisitResult PrintTypeSize(CXCursor cursor, CXCursor p,
1207 CXClientData d) {
1208 CXType T;
1209 enum CXCursorKind K = clang_getCursorKind(cursor);
1210 if (clang_isInvalid(K))
1211 return CXChildVisit_Recurse;
1212 T = clang_getCursorType(cursor);
1213 PrintCursor(cursor, NULL);
1214 PrintTypeAndTypeKind(T, " [type=%s] [typekind=%s]");
1215 /* Print the type sizeof if applicable. */
1216 {
1217 long long Size = clang_Type_getSizeOf(T);
1218 if (Size >= 0 || Size < -1 ) {
1219 printf(" [sizeof=%lld]", Size);
1220 }
1221 }
1222 /* Print the type alignof if applicable. */
1223 {
1224 long long Align = clang_Type_getAlignOf(T);
1225 if (Align >= 0 || Align < -1) {
1226 printf(" [alignof=%lld]", Align);
1227 }
1228 }
1229 /* Print the record field offset if applicable. */
1230 {
1231 const char *FieldName = clang_getCString(clang_getCursorSpelling(cursor));
1232 /* recurse to get the root anonymous record parent */
1233 CXCursor Parent, Root;
1234 if (clang_getCursorKind(cursor) == CXCursor_FieldDecl ) {
1235 const char *RootParentName;
1236 Root = Parent = p;
1237 do {
1238 Root = Parent;
1239 RootParentName = clang_getCString(clang_getCursorSpelling(Root));
1240 Parent = clang_getCursorSemanticParent(Root);
1241 } while ( clang_getCursorType(Parent).kind == CXType_Record &&
1242 !strcmp(RootParentName, "") );
1243 /* if RootParentName is "", record is anonymous. */
1244 {
1245 long long Offset = clang_Type_getOffsetOf(clang_getCursorType(Root),
1246 FieldName);
1247 printf(" [offsetof=%lld]", Offset);
1248 }
1249 }
1250 }
1251 /* Print if its a bitfield */
1252 {
1253 int IsBitfield = clang_Cursor_isBitField(cursor);
1254 if (IsBitfield)
1255 printf(" [BitFieldSize=%d]", clang_getFieldDeclBitWidth(cursor));
1256 }
1257 printf("\n");
1258 return CXChildVisit_Recurse;
1259}
1260
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00001261/******************************************************************************/
1262/* Bitwidth testing. */
1263/******************************************************************************/
1264
1265static enum CXChildVisitResult PrintBitWidth(CXCursor cursor, CXCursor p,
1266 CXClientData d) {
NAKAMURA Takumi02c1b862012-12-04 15:32:03 +00001267 int Bitwidth;
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00001268 if (clang_getCursorKind(cursor) != CXCursor_FieldDecl)
1269 return CXChildVisit_Recurse;
1270
NAKAMURA Takumi02c1b862012-12-04 15:32:03 +00001271 Bitwidth = clang_getFieldDeclBitWidth(cursor);
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00001272 if (Bitwidth >= 0) {
1273 PrintCursor(cursor, NULL);
1274 printf(" bitwidth=%d\n", Bitwidth);
1275 }
1276
1277 return CXChildVisit_Recurse;
1278}
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001279
1280/******************************************************************************/
Ted Kremenek7d405622010-01-12 23:34:26 +00001281/* Loading ASTs/source. */
1282/******************************************************************************/
1283
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001284static int perform_test_load(CXIndex Idx, CXTranslationUnit TU,
Ted Kremenek98271562010-01-12 18:53:15 +00001285 const char *filter, const char *prefix,
Ted Kremenekce2ae882010-01-26 17:59:48 +00001286 CXCursorVisitor Visitor,
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001287 PostVisitTU PV,
1288 const char *CommentSchemaFile) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001289
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +00001290 if (prefix)
Ted Kremeneke68fff62010-02-17 00:41:32 +00001291 FileCheckPrefix = prefix;
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001292
1293 if (Visitor) {
1294 enum CXCursorKind K = CXCursor_NotImplemented;
1295 enum CXCursorKind *ck = &K;
1296 VisitorData Data;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001297
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001298 /* Perform some simple filtering. */
1299 if (!strcmp(filter, "all") || !strcmp(filter, "local")) ck = NULL;
Douglas Gregor358559d2010-10-02 22:49:11 +00001300 else if (!strcmp(filter, "all-display") ||
1301 !strcmp(filter, "local-display")) {
1302 ck = NULL;
1303 want_display_name = 1;
1304 }
Daniel Dunbarb1ffee62010-02-10 20:42:40 +00001305 else if (!strcmp(filter, "none")) K = (enum CXCursorKind) ~0;
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001306 else if (!strcmp(filter, "category")) K = CXCursor_ObjCCategoryDecl;
1307 else if (!strcmp(filter, "interface")) K = CXCursor_ObjCInterfaceDecl;
1308 else if (!strcmp(filter, "protocol")) K = CXCursor_ObjCProtocolDecl;
1309 else if (!strcmp(filter, "function")) K = CXCursor_FunctionDecl;
1310 else if (!strcmp(filter, "typedef")) K = CXCursor_TypedefDecl;
1311 else if (!strcmp(filter, "scan-function")) Visitor = FunctionScanVisitor;
1312 else {
1313 fprintf(stderr, "Unknown filter for -test-load-tu: %s\n", filter);
1314 return 1;
1315 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001316
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001317 Data.TU = TU;
1318 Data.Filter = ck;
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001319 Data.ValidationData.CommentSchemaFile = CommentSchemaFile;
1320#ifdef CLANG_HAVE_LIBXML
1321 Data.ValidationData.RNGParser = NULL;
1322 Data.ValidationData.Schema = NULL;
1323#endif
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001324 clang_visitChildren(clang_getTranslationUnitCursor(TU), Visitor, &Data);
Ted Kremenek0d435192009-11-17 18:13:31 +00001325 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001326
Ted Kremenekce2ae882010-01-26 17:59:48 +00001327 if (PV)
1328 PV(TU);
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001329
Douglas Gregora88084b2010-02-18 18:08:43 +00001330 PrintDiagnostics(TU);
Argyrios Kyrtzidis16ac8be2011-11-13 23:39:14 +00001331 if (checkForErrors(TU) != 0) {
1332 clang_disposeTranslationUnit(TU);
1333 return -1;
1334 }
1335
Ted Kremenek0d435192009-11-17 18:13:31 +00001336 clang_disposeTranslationUnit(TU);
1337 return 0;
1338}
1339
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +00001340int perform_test_load_tu(const char *file, const char *filter,
Ted Kremenekce2ae882010-01-26 17:59:48 +00001341 const char *prefix, CXCursorVisitor Visitor,
1342 PostVisitTU PV) {
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001343 CXIndex Idx;
1344 CXTranslationUnit TU;
Ted Kremenek020a0952010-02-11 07:41:25 +00001345 int result;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001346 Idx = clang_createIndex(/* excludeDeclsFromPCH */
Douglas Gregor0a812cf2010-02-18 23:07:20 +00001347 !strcmp(filter, "local") ? 1 : 0,
Stefanus Du Toitfc093362013-03-01 21:41:22 +00001348 /* displayDiagnostics=*/1);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001349
Ted Kremenek020a0952010-02-11 07:41:25 +00001350 if (!CreateTranslationUnit(Idx, file, &TU)) {
1351 clang_disposeIndex(Idx);
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001352 return 1;
Ted Kremenek020a0952010-02-11 07:41:25 +00001353 }
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001354
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001355 result = perform_test_load(Idx, TU, filter, prefix, Visitor, PV, NULL);
Ted Kremenek020a0952010-02-11 07:41:25 +00001356 clang_disposeIndex(Idx);
1357 return result;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001358}
1359
Ted Kremenekce2ae882010-01-26 17:59:48 +00001360int perform_test_load_source(int argc, const char **argv,
1361 const char *filter, CXCursorVisitor Visitor,
1362 PostVisitTU PV) {
Daniel Dunbarada487d2009-12-01 02:03:10 +00001363 CXIndex Idx;
1364 CXTranslationUnit TU;
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001365 const char *CommentSchemaFile;
Douglas Gregor4db64a42010-01-23 00:14:00 +00001366 struct CXUnsavedFile *unsaved_files = 0;
1367 int num_unsaved_files = 0;
1368 int result;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001369
Daniel Dunbarada487d2009-12-01 02:03:10 +00001370 Idx = clang_createIndex(/* excludeDeclsFromPCH */
Douglas Gregor358559d2010-10-02 22:49:11 +00001371 (!strcmp(filter, "local") ||
1372 !strcmp(filter, "local-display"))? 1 : 0,
Argyrios Kyrtzidiscd6dcb32013-04-09 20:29:24 +00001373 /* displayDiagnostics=*/1);
Daniel Dunbarada487d2009-12-01 02:03:10 +00001374
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001375 if ((CommentSchemaFile = parse_comments_schema(argc, argv))) {
1376 argc--;
1377 argv++;
1378 }
1379
Ted Kremenek020a0952010-02-11 07:41:25 +00001380 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
1381 clang_disposeIndex(Idx);
Douglas Gregor4db64a42010-01-23 00:14:00 +00001382 return -1;
Ted Kremenek020a0952010-02-11 07:41:25 +00001383 }
Douglas Gregor4db64a42010-01-23 00:14:00 +00001384
Douglas Gregordca8ee82011-05-06 16:33:08 +00001385 TU = clang_parseTranslationUnit(Idx, 0,
1386 argv + num_unsaved_files,
1387 argc - num_unsaved_files,
1388 unsaved_files, num_unsaved_files,
1389 getDefaultParsingOptions());
Daniel Dunbarada487d2009-12-01 02:03:10 +00001390 if (!TU) {
1391 fprintf(stderr, "Unable to load translation unit!\n");
Douglas Gregorabc563f2010-07-19 21:46:24 +00001392 free_remapped_files(unsaved_files, num_unsaved_files);
Ted Kremenek020a0952010-02-11 07:41:25 +00001393 clang_disposeIndex(Idx);
Daniel Dunbarada487d2009-12-01 02:03:10 +00001394 return 1;
1395 }
1396
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001397 result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV,
1398 CommentSchemaFile);
Douglas Gregor4db64a42010-01-23 00:14:00 +00001399 free_remapped_files(unsaved_files, num_unsaved_files);
Ted Kremenek020a0952010-02-11 07:41:25 +00001400 clang_disposeIndex(Idx);
Douglas Gregor4db64a42010-01-23 00:14:00 +00001401 return result;
Daniel Dunbarada487d2009-12-01 02:03:10 +00001402}
1403
Douglas Gregorabc563f2010-07-19 21:46:24 +00001404int perform_test_reparse_source(int argc, const char **argv, int trials,
1405 const char *filter, CXCursorVisitor Visitor,
1406 PostVisitTU PV) {
Douglas Gregorabc563f2010-07-19 21:46:24 +00001407 CXIndex Idx;
1408 CXTranslationUnit TU;
1409 struct CXUnsavedFile *unsaved_files = 0;
1410 int num_unsaved_files = 0;
1411 int result;
1412 int trial;
Argyrios Kyrtzidis40098e82011-09-12 18:09:31 +00001413 int remap_after_trial = 0;
1414 char *endptr = 0;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001415
1416 Idx = clang_createIndex(/* excludeDeclsFromPCH */
1417 !strcmp(filter, "local") ? 1 : 0,
Argyrios Kyrtzidiscd6dcb32013-04-09 20:29:24 +00001418 /* displayDiagnostics=*/1);
Douglas Gregorabc563f2010-07-19 21:46:24 +00001419
Douglas Gregorabc563f2010-07-19 21:46:24 +00001420 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
1421 clang_disposeIndex(Idx);
1422 return -1;
1423 }
1424
Daniel Dunbarc8a61802010-08-18 23:09:16 +00001425 /* Load the initial translation unit -- we do this without honoring remapped
1426 * files, so that we have a way to test results after changing the source. */
Douglas Gregor44c181a2010-07-23 00:33:23 +00001427 TU = clang_parseTranslationUnit(Idx, 0,
1428 argv + num_unsaved_files,
1429 argc - num_unsaved_files,
Daniel Dunbarc8a61802010-08-18 23:09:16 +00001430 0, 0, getDefaultParsingOptions());
Douglas Gregorabc563f2010-07-19 21:46:24 +00001431 if (!TU) {
1432 fprintf(stderr, "Unable to load translation unit!\n");
1433 free_remapped_files(unsaved_files, num_unsaved_files);
1434 clang_disposeIndex(Idx);
1435 return 1;
1436 }
1437
Argyrios Kyrtzidisbda536d2011-11-13 22:08:33 +00001438 if (checkForErrors(TU) != 0)
1439 return -1;
1440
Argyrios Kyrtzidis40098e82011-09-12 18:09:31 +00001441 if (getenv("CINDEXTEST_REMAP_AFTER_TRIAL")) {
1442 remap_after_trial =
1443 strtol(getenv("CINDEXTEST_REMAP_AFTER_TRIAL"), &endptr, 10);
1444 }
1445
Douglas Gregorabc563f2010-07-19 21:46:24 +00001446 for (trial = 0; trial < trials; ++trial) {
Argyrios Kyrtzidis40098e82011-09-12 18:09:31 +00001447 if (clang_reparseTranslationUnit(TU,
1448 trial >= remap_after_trial ? num_unsaved_files : 0,
1449 trial >= remap_after_trial ? unsaved_files : 0,
Douglas Gregore1e13bf2010-08-11 15:58:42 +00001450 clang_defaultReparseOptions(TU))) {
Daniel Dunbarc8a61802010-08-18 23:09:16 +00001451 fprintf(stderr, "Unable to reparse translation unit!\n");
Douglas Gregorabc563f2010-07-19 21:46:24 +00001452 clang_disposeTranslationUnit(TU);
1453 free_remapped_files(unsaved_files, num_unsaved_files);
1454 clang_disposeIndex(Idx);
1455 return -1;
1456 }
Argyrios Kyrtzidisbda536d2011-11-13 22:08:33 +00001457
1458 if (checkForErrors(TU) != 0)
1459 return -1;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001460 }
1461
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001462 result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV, NULL);
Argyrios Kyrtzidisbda536d2011-11-13 22:08:33 +00001463
Douglas Gregorabc563f2010-07-19 21:46:24 +00001464 free_remapped_files(unsaved_files, num_unsaved_files);
1465 clang_disposeIndex(Idx);
1466 return result;
1467}
1468
Ted Kremenek0d435192009-11-17 18:13:31 +00001469/******************************************************************************/
Ted Kremenek1c6da172009-11-17 19:37:36 +00001470/* Logic for testing clang_getCursor(). */
1471/******************************************************************************/
1472
Douglas Gregordd3e5542011-05-04 00:14:37 +00001473static void print_cursor_file_scan(CXTranslationUnit TU, CXCursor cursor,
Ted Kremenek1c6da172009-11-17 19:37:36 +00001474 unsigned start_line, unsigned start_col,
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001475 unsigned end_line, unsigned end_col,
1476 const char *prefix) {
Ted Kremenek9096a202010-01-07 01:17:12 +00001477 printf("// %s: ", FileCheckPrefix);
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001478 if (prefix)
1479 printf("-%s", prefix);
Daniel Dunbar51b058c2010-02-14 08:32:24 +00001480 PrintExtent(stdout, start_line, start_col, end_line, end_col);
1481 printf(" ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001482 PrintCursor(cursor, NULL);
Ted Kremenek1c6da172009-11-17 19:37:36 +00001483 printf("\n");
1484}
1485
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001486static int perform_file_scan(const char *ast_file, const char *source_file,
1487 const char *prefix) {
Ted Kremenek1c6da172009-11-17 19:37:36 +00001488 CXIndex Idx;
1489 CXTranslationUnit TU;
1490 FILE *fp;
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001491 CXCursor prevCursor = clang_getNullCursor();
Douglas Gregorb9790342010-01-22 21:44:22 +00001492 CXFile file;
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001493 unsigned line = 1, col = 1;
Daniel Dunbar8f0bf812010-02-14 08:32:51 +00001494 unsigned start_line = 1, start_col = 1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001495
Douglas Gregor0a812cf2010-02-18 23:07:20 +00001496 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
Stefanus Du Toitfc093362013-03-01 21:41:22 +00001497 /* displayDiagnostics=*/1))) {
Ted Kremenek1c6da172009-11-17 19:37:36 +00001498 fprintf(stderr, "Could not create Index\n");
1499 return 1;
1500 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001501
Ted Kremenek1c6da172009-11-17 19:37:36 +00001502 if (!CreateTranslationUnit(Idx, ast_file, &TU))
1503 return 1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001504
Ted Kremenek1c6da172009-11-17 19:37:36 +00001505 if ((fp = fopen(source_file, "r")) == NULL) {
1506 fprintf(stderr, "Could not open '%s'\n", source_file);
1507 return 1;
1508 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001509
Douglas Gregorb9790342010-01-22 21:44:22 +00001510 file = clang_getFile(TU, source_file);
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001511 for (;;) {
1512 CXCursor cursor;
1513 int c = fgetc(fp);
Benjamin Kramera9933b92009-11-17 20:51:40 +00001514
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001515 if (c == '\n') {
1516 ++line;
1517 col = 1;
1518 } else
1519 ++col;
1520
1521 /* Check the cursor at this position, and dump the previous one if we have
1522 * found something new.
1523 */
1524 cursor = clang_getCursor(TU, clang_getLocation(TU, file, line, col));
1525 if ((c == EOF || !clang_equalCursors(cursor, prevCursor)) &&
1526 prevCursor.kind != CXCursor_InvalidFile) {
Douglas Gregordd3e5542011-05-04 00:14:37 +00001527 print_cursor_file_scan(TU, prevCursor, start_line, start_col,
Daniel Dunbard52864b2010-02-14 10:02:57 +00001528 line, col, prefix);
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001529 start_line = line;
1530 start_col = col;
Benjamin Kramera9933b92009-11-17 20:51:40 +00001531 }
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001532 if (c == EOF)
1533 break;
Benjamin Kramera9933b92009-11-17 20:51:40 +00001534
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001535 prevCursor = cursor;
Ted Kremenek1c6da172009-11-17 19:37:36 +00001536 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001537
Ted Kremenek1c6da172009-11-17 19:37:36 +00001538 fclose(fp);
Douglas Gregor4f5e21e2011-01-31 22:04:05 +00001539 clang_disposeTranslationUnit(TU);
1540 clang_disposeIndex(Idx);
Ted Kremenek1c6da172009-11-17 19:37:36 +00001541 return 0;
1542}
1543
1544/******************************************************************************/
Douglas Gregor32be4a52010-10-11 21:37:58 +00001545/* Logic for testing clang code completion. */
Ted Kremenek0d435192009-11-17 18:13:31 +00001546/******************************************************************************/
1547
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001548/* Parse file:line:column from the input string. Returns 0 on success, non-zero
1549 on failure. If successful, the pointer *filename will contain newly-allocated
1550 memory (that will be owned by the caller) to store the file name. */
Ted Kremeneke68fff62010-02-17 00:41:32 +00001551int parse_file_line_column(const char *input, char **filename, unsigned *line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001552 unsigned *column, unsigned *second_line,
1553 unsigned *second_column) {
Douglas Gregor88d23952009-11-09 18:19:57 +00001554 /* Find the second colon. */
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001555 const char *last_colon = strrchr(input, ':');
1556 unsigned values[4], i;
1557 unsigned num_values = (second_line && second_column)? 4 : 2;
1558
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001559 char *endptr = 0;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001560 if (!last_colon || last_colon == input) {
1561 if (num_values == 4)
1562 fprintf(stderr, "could not parse filename:line:column:line:column in "
1563 "'%s'\n", input);
1564 else
1565 fprintf(stderr, "could not parse filename:line:column in '%s'\n", input);
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001566 return 1;
1567 }
1568
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001569 for (i = 0; i != num_values; ++i) {
1570 const char *prev_colon;
1571
1572 /* Parse the next line or column. */
1573 values[num_values - i - 1] = strtol(last_colon + 1, &endptr, 10);
1574 if (*endptr != 0 && *endptr != ':') {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001575 fprintf(stderr, "could not parse %s in '%s'\n",
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001576 (i % 2 ? "column" : "line"), input);
1577 return 1;
1578 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001579
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001580 if (i + 1 == num_values)
1581 break;
1582
1583 /* Find the previous colon. */
1584 prev_colon = last_colon - 1;
1585 while (prev_colon != input && *prev_colon != ':')
1586 --prev_colon;
1587 if (prev_colon == input) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001588 fprintf(stderr, "could not parse %s in '%s'\n",
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001589 (i % 2 == 0? "column" : "line"), input);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001590 return 1;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001591 }
1592
1593 last_colon = prev_colon;
Douglas Gregor88d23952009-11-09 18:19:57 +00001594 }
1595
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001596 *line = values[0];
1597 *column = values[1];
Ted Kremeneke68fff62010-02-17 00:41:32 +00001598
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001599 if (second_line && second_column) {
1600 *second_line = values[2];
1601 *second_column = values[3];
1602 }
1603
Douglas Gregor88d23952009-11-09 18:19:57 +00001604 /* Copy the file name. */
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001605 *filename = (char*)malloc(last_colon - input + 1);
1606 memcpy(*filename, input, last_colon - input);
1607 (*filename)[last_colon - input] = 0;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001608 return 0;
1609}
1610
1611const char *
1612clang_getCompletionChunkKindSpelling(enum CXCompletionChunkKind Kind) {
1613 switch (Kind) {
1614 case CXCompletionChunk_Optional: return "Optional";
1615 case CXCompletionChunk_TypedText: return "TypedText";
1616 case CXCompletionChunk_Text: return "Text";
1617 case CXCompletionChunk_Placeholder: return "Placeholder";
1618 case CXCompletionChunk_Informative: return "Informative";
1619 case CXCompletionChunk_CurrentParameter: return "CurrentParameter";
1620 case CXCompletionChunk_LeftParen: return "LeftParen";
1621 case CXCompletionChunk_RightParen: return "RightParen";
1622 case CXCompletionChunk_LeftBracket: return "LeftBracket";
1623 case CXCompletionChunk_RightBracket: return "RightBracket";
1624 case CXCompletionChunk_LeftBrace: return "LeftBrace";
1625 case CXCompletionChunk_RightBrace: return "RightBrace";
1626 case CXCompletionChunk_LeftAngle: return "LeftAngle";
1627 case CXCompletionChunk_RightAngle: return "RightAngle";
1628 case CXCompletionChunk_Comma: return "Comma";
Douglas Gregorff5ce6e2009-12-18 18:53:37 +00001629 case CXCompletionChunk_ResultType: return "ResultType";
Douglas Gregor01dfea02010-01-10 23:08:15 +00001630 case CXCompletionChunk_Colon: return "Colon";
1631 case CXCompletionChunk_SemiColon: return "SemiColon";
1632 case CXCompletionChunk_Equal: return "Equal";
1633 case CXCompletionChunk_HorizontalSpace: return "HorizontalSpace";
1634 case CXCompletionChunk_VerticalSpace: return "VerticalSpace";
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001635 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001636
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001637 return "Unknown";
1638}
1639
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00001640static int checkForErrors(CXTranslationUnit TU) {
1641 unsigned Num, i;
1642 CXDiagnostic Diag;
1643 CXString DiagStr;
1644
1645 if (!getenv("CINDEXTEST_FAILONERROR"))
1646 return 0;
1647
1648 Num = clang_getNumDiagnostics(TU);
1649 for (i = 0; i != Num; ++i) {
1650 Diag = clang_getDiagnostic(TU, i);
1651 if (clang_getDiagnosticSeverity(Diag) >= CXDiagnostic_Error) {
1652 DiagStr = clang_formatDiagnostic(Diag,
1653 clang_defaultDiagnosticDisplayOptions());
1654 fprintf(stderr, "%s\n", clang_getCString(DiagStr));
1655 clang_disposeString(DiagStr);
1656 clang_disposeDiagnostic(Diag);
1657 return -1;
1658 }
1659 clang_disposeDiagnostic(Diag);
1660 }
1661
1662 return 0;
1663}
1664
Douglas Gregor3ac73852009-11-09 16:04:45 +00001665void print_completion_string(CXCompletionString completion_string, FILE *file) {
Daniel Dunbarf8297f12009-11-07 18:34:24 +00001666 int I, N;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001667
Douglas Gregor3ac73852009-11-09 16:04:45 +00001668 N = clang_getNumCompletionChunks(completion_string);
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001669 for (I = 0; I != N; ++I) {
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +00001670 CXString text;
1671 const char *cstr;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001672 enum CXCompletionChunkKind Kind
Douglas Gregor3ac73852009-11-09 16:04:45 +00001673 = clang_getCompletionChunkKind(completion_string, I);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001674
Douglas Gregor3ac73852009-11-09 16:04:45 +00001675 if (Kind == CXCompletionChunk_Optional) {
1676 fprintf(file, "{Optional ");
1677 print_completion_string(
Ted Kremeneke68fff62010-02-17 00:41:32 +00001678 clang_getCompletionChunkCompletionString(completion_string, I),
Douglas Gregor3ac73852009-11-09 16:04:45 +00001679 file);
1680 fprintf(file, "}");
1681 continue;
Douglas Gregor5a9c0bc2010-10-08 20:39:29 +00001682 }
1683
1684 if (Kind == CXCompletionChunk_VerticalSpace) {
1685 fprintf(file, "{VerticalSpace }");
1686 continue;
Douglas Gregor3ac73852009-11-09 16:04:45 +00001687 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001688
Douglas Gregord5a20892009-11-09 17:05:28 +00001689 text = clang_getCompletionChunkText(completion_string, I);
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +00001690 cstr = clang_getCString(text);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001691 fprintf(file, "{%s %s}",
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001692 clang_getCompletionChunkKindSpelling(Kind),
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +00001693 cstr ? cstr : "");
1694 clang_disposeString(text);
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001695 }
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +00001696
Douglas Gregor3ac73852009-11-09 16:04:45 +00001697}
1698
1699void print_completion_result(CXCompletionResult *completion_result,
1700 CXClientData client_data) {
1701 FILE *file = (FILE *)client_data;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001702 CXString ks = clang_getCursorKindSpelling(completion_result->CursorKind);
Erik Verbruggen6164ea12011-10-14 15:31:08 +00001703 unsigned annotationCount;
Douglas Gregorba103062012-03-27 23:34:16 +00001704 enum CXCursorKind ParentKind;
1705 CXString ParentName;
Dmitri Gribenkod99ef532012-07-02 17:35:10 +00001706 CXString BriefComment;
1707 const char *BriefCommentCString;
Douglas Gregorba103062012-03-27 23:34:16 +00001708
Ted Kremeneke68fff62010-02-17 00:41:32 +00001709 fprintf(file, "%s:", clang_getCString(ks));
1710 clang_disposeString(ks);
1711
Douglas Gregor3ac73852009-11-09 16:04:45 +00001712 print_completion_string(completion_result->CompletionString, file);
Douglas Gregor58ddb602010-08-23 23:00:57 +00001713 fprintf(file, " (%u)",
Douglas Gregor12e13132010-05-26 22:00:08 +00001714 clang_getCompletionPriority(completion_result->CompletionString));
Douglas Gregor58ddb602010-08-23 23:00:57 +00001715 switch (clang_getCompletionAvailability(completion_result->CompletionString)){
1716 case CXAvailability_Available:
1717 break;
1718
1719 case CXAvailability_Deprecated:
1720 fprintf(file, " (deprecated)");
1721 break;
1722
1723 case CXAvailability_NotAvailable:
1724 fprintf(file, " (unavailable)");
1725 break;
Erik Verbruggend1205962011-10-06 07:27:49 +00001726
1727 case CXAvailability_NotAccessible:
1728 fprintf(file, " (inaccessible)");
1729 break;
Douglas Gregor58ddb602010-08-23 23:00:57 +00001730 }
Erik Verbruggen6164ea12011-10-14 15:31:08 +00001731
1732 annotationCount = clang_getCompletionNumAnnotations(
1733 completion_result->CompletionString);
1734 if (annotationCount) {
1735 unsigned i;
1736 fprintf(file, " (");
1737 for (i = 0; i < annotationCount; ++i) {
1738 if (i != 0)
1739 fprintf(file, ", ");
1740 fprintf(file, "\"%s\"",
1741 clang_getCString(clang_getCompletionAnnotation(
1742 completion_result->CompletionString, i)));
1743 }
1744 fprintf(file, ")");
1745 }
1746
Douglas Gregorba103062012-03-27 23:34:16 +00001747 if (!getenv("CINDEXTEST_NO_COMPLETION_PARENTS")) {
1748 ParentName = clang_getCompletionParent(completion_result->CompletionString,
1749 &ParentKind);
1750 if (ParentKind != CXCursor_NotImplemented) {
1751 CXString KindSpelling = clang_getCursorKindSpelling(ParentKind);
1752 fprintf(file, " (parent: %s '%s')",
1753 clang_getCString(KindSpelling),
1754 clang_getCString(ParentName));
1755 clang_disposeString(KindSpelling);
1756 }
1757 clang_disposeString(ParentName);
1758 }
Dmitri Gribenkod99ef532012-07-02 17:35:10 +00001759
1760 BriefComment = clang_getCompletionBriefComment(
1761 completion_result->CompletionString);
1762 BriefCommentCString = clang_getCString(BriefComment);
1763 if (BriefCommentCString && *BriefCommentCString != '\0') {
1764 fprintf(file, "(brief comment: %s)", BriefCommentCString);
1765 }
1766 clang_disposeString(BriefComment);
Douglas Gregorba103062012-03-27 23:34:16 +00001767
Douglas Gregor58ddb602010-08-23 23:00:57 +00001768 fprintf(file, "\n");
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001769}
1770
Douglas Gregor3da626b2011-07-07 16:03:39 +00001771void print_completion_contexts(unsigned long long contexts, FILE *file) {
1772 fprintf(file, "Completion contexts:\n");
1773 if (contexts == CXCompletionContext_Unknown) {
1774 fprintf(file, "Unknown\n");
1775 }
1776 if (contexts & CXCompletionContext_AnyType) {
1777 fprintf(file, "Any type\n");
1778 }
1779 if (contexts & CXCompletionContext_AnyValue) {
1780 fprintf(file, "Any value\n");
1781 }
1782 if (contexts & CXCompletionContext_ObjCObjectValue) {
1783 fprintf(file, "Objective-C object value\n");
1784 }
1785 if (contexts & CXCompletionContext_ObjCSelectorValue) {
1786 fprintf(file, "Objective-C selector value\n");
1787 }
1788 if (contexts & CXCompletionContext_CXXClassTypeValue) {
1789 fprintf(file, "C++ class type value\n");
1790 }
1791 if (contexts & CXCompletionContext_DotMemberAccess) {
1792 fprintf(file, "Dot member access\n");
1793 }
1794 if (contexts & CXCompletionContext_ArrowMemberAccess) {
1795 fprintf(file, "Arrow member access\n");
1796 }
1797 if (contexts & CXCompletionContext_ObjCPropertyAccess) {
1798 fprintf(file, "Objective-C property access\n");
1799 }
1800 if (contexts & CXCompletionContext_EnumTag) {
1801 fprintf(file, "Enum tag\n");
1802 }
1803 if (contexts & CXCompletionContext_UnionTag) {
1804 fprintf(file, "Union tag\n");
1805 }
1806 if (contexts & CXCompletionContext_StructTag) {
1807 fprintf(file, "Struct tag\n");
1808 }
1809 if (contexts & CXCompletionContext_ClassTag) {
1810 fprintf(file, "Class name\n");
1811 }
1812 if (contexts & CXCompletionContext_Namespace) {
1813 fprintf(file, "Namespace or namespace alias\n");
1814 }
1815 if (contexts & CXCompletionContext_NestedNameSpecifier) {
1816 fprintf(file, "Nested name specifier\n");
1817 }
1818 if (contexts & CXCompletionContext_ObjCInterface) {
1819 fprintf(file, "Objective-C interface\n");
1820 }
1821 if (contexts & CXCompletionContext_ObjCProtocol) {
1822 fprintf(file, "Objective-C protocol\n");
1823 }
1824 if (contexts & CXCompletionContext_ObjCCategory) {
1825 fprintf(file, "Objective-C category\n");
1826 }
1827 if (contexts & CXCompletionContext_ObjCInstanceMessage) {
1828 fprintf(file, "Objective-C instance method\n");
1829 }
1830 if (contexts & CXCompletionContext_ObjCClassMessage) {
1831 fprintf(file, "Objective-C class method\n");
1832 }
1833 if (contexts & CXCompletionContext_ObjCSelectorName) {
1834 fprintf(file, "Objective-C selector name\n");
1835 }
1836 if (contexts & CXCompletionContext_MacroName) {
1837 fprintf(file, "Macro name\n");
1838 }
1839 if (contexts & CXCompletionContext_NaturalLanguage) {
1840 fprintf(file, "Natural language\n");
1841 }
1842}
1843
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001844int my_stricmp(const char *s1, const char *s2) {
1845 while (*s1 && *s2) {
NAKAMURA Takumi6d555212011-03-09 03:02:28 +00001846 int c1 = tolower((unsigned char)*s1), c2 = tolower((unsigned char)*s2);
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001847 if (c1 < c2)
1848 return -1;
1849 else if (c1 > c2)
1850 return 1;
1851
1852 ++s1;
1853 ++s2;
1854 }
1855
1856 if (*s1)
1857 return 1;
1858 else if (*s2)
1859 return -1;
1860 return 0;
1861}
1862
Douglas Gregor1982c182010-07-12 18:38:41 +00001863int perform_code_completion(int argc, const char **argv, int timing_only) {
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001864 const char *input = argv[1];
1865 char *filename = 0;
1866 unsigned line;
1867 unsigned column;
Daniel Dunbarf8297f12009-11-07 18:34:24 +00001868 CXIndex CIdx;
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001869 int errorCode;
Douglas Gregor735df882009-12-02 09:21:34 +00001870 struct CXUnsavedFile *unsaved_files = 0;
1871 int num_unsaved_files = 0;
Douglas Gregorec6762c2009-12-18 16:20:58 +00001872 CXCodeCompleteResults *results = 0;
Dawn Perchik25d9b002010-09-30 22:26:05 +00001873 CXTranslationUnit TU = 0;
Douglas Gregor32be4a52010-10-11 21:37:58 +00001874 unsigned I, Repeats = 1;
1875 unsigned completionOptions = clang_defaultCodeCompleteOptions();
1876
1877 if (getenv("CINDEXTEST_CODE_COMPLETE_PATTERNS"))
1878 completionOptions |= CXCodeComplete_IncludeCodePatterns;
Dmitri Gribenkod99ef532012-07-02 17:35:10 +00001879 if (getenv("CINDEXTEST_COMPLETION_BRIEF_COMMENTS"))
1880 completionOptions |= CXCodeComplete_IncludeBriefComments;
Douglas Gregordf95a132010-08-09 20:45:32 +00001881
Douglas Gregor1982c182010-07-12 18:38:41 +00001882 if (timing_only)
1883 input += strlen("-code-completion-timing=");
1884 else
1885 input += strlen("-code-completion-at=");
1886
Ted Kremeneke68fff62010-02-17 00:41:32 +00001887 if ((errorCode = parse_file_line_column(input, &filename, &line, &column,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001888 0, 0)))
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001889 return errorCode;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001890
Douglas Gregor735df882009-12-02 09:21:34 +00001891 if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files))
1892 return -1;
1893
Douglas Gregor32be4a52010-10-11 21:37:58 +00001894 CIdx = clang_createIndex(0, 0);
1895
1896 if (getenv("CINDEXTEST_EDITING"))
1897 Repeats = 5;
1898
1899 TU = clang_parseTranslationUnit(CIdx, 0,
1900 argv + num_unsaved_files + 2,
1901 argc - num_unsaved_files - 2,
1902 0, 0, getDefaultParsingOptions());
1903 if (!TU) {
1904 fprintf(stderr, "Unable to load translation unit!\n");
1905 return 1;
1906 }
Douglas Gregor08bb4c62010-11-15 23:00:34 +00001907
1908 if (clang_reparseTranslationUnit(TU, 0, 0, clang_defaultReparseOptions(TU))) {
1909 fprintf(stderr, "Unable to reparse translation init!\n");
1910 return 1;
1911 }
Douglas Gregor32be4a52010-10-11 21:37:58 +00001912
1913 for (I = 0; I != Repeats; ++I) {
1914 results = clang_codeCompleteAt(TU, filename, line, column,
1915 unsaved_files, num_unsaved_files,
1916 completionOptions);
1917 if (!results) {
1918 fprintf(stderr, "Unable to perform code completion!\n");
Daniel Dunbar2de41c92010-08-19 23:44:06 +00001919 return 1;
1920 }
Douglas Gregor32be4a52010-10-11 21:37:58 +00001921 if (I != Repeats-1)
1922 clang_disposeCodeCompleteResults(results);
1923 }
Douglas Gregor936ea3b2010-01-28 00:56:43 +00001924
Douglas Gregorec6762c2009-12-18 16:20:58 +00001925 if (results) {
Douglas Gregore081a612011-07-21 01:05:26 +00001926 unsigned i, n = results->NumResults, containerIsIncomplete = 0;
Douglas Gregor3da626b2011-07-07 16:03:39 +00001927 unsigned long long contexts;
Douglas Gregore081a612011-07-21 01:05:26 +00001928 enum CXCursorKind containerKind;
Douglas Gregor0a47d692011-07-26 15:24:30 +00001929 CXString objCSelector;
1930 const char *selectorString;
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001931 if (!timing_only) {
1932 /* Sort the code-completion results based on the typed text. */
1933 clang_sortCodeCompletionResults(results->Results, results->NumResults);
1934
Douglas Gregor1982c182010-07-12 18:38:41 +00001935 for (i = 0; i != n; ++i)
1936 print_completion_result(results->Results + i, stdout);
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001937 }
Douglas Gregora88084b2010-02-18 18:08:43 +00001938 n = clang_codeCompleteGetNumDiagnostics(results);
1939 for (i = 0; i != n; ++i) {
1940 CXDiagnostic diag = clang_codeCompleteGetDiagnostic(results, i);
1941 PrintDiagnostic(diag);
1942 clang_disposeDiagnostic(diag);
1943 }
Douglas Gregor3da626b2011-07-07 16:03:39 +00001944
1945 contexts = clang_codeCompleteGetContexts(results);
1946 print_completion_contexts(contexts, stdout);
1947
Douglas Gregor0a47d692011-07-26 15:24:30 +00001948 containerKind = clang_codeCompleteGetContainerKind(results,
1949 &containerIsIncomplete);
Douglas Gregore081a612011-07-21 01:05:26 +00001950
1951 if (containerKind != CXCursor_InvalidCode) {
1952 /* We have found a container */
1953 CXString containerUSR, containerKindSpelling;
1954 containerKindSpelling = clang_getCursorKindSpelling(containerKind);
1955 printf("Container Kind: %s\n", clang_getCString(containerKindSpelling));
1956 clang_disposeString(containerKindSpelling);
1957
1958 if (containerIsIncomplete) {
1959 printf("Container is incomplete\n");
1960 }
1961 else {
1962 printf("Container is complete\n");
1963 }
1964
1965 containerUSR = clang_codeCompleteGetContainerUSR(results);
1966 printf("Container USR: %s\n", clang_getCString(containerUSR));
1967 clang_disposeString(containerUSR);
1968 }
1969
Douglas Gregor0a47d692011-07-26 15:24:30 +00001970 objCSelector = clang_codeCompleteGetObjCSelector(results);
1971 selectorString = clang_getCString(objCSelector);
1972 if (selectorString && strlen(selectorString) > 0) {
1973 printf("Objective-C selector: %s\n", selectorString);
1974 }
1975 clang_disposeString(objCSelector);
1976
Douglas Gregorec6762c2009-12-18 16:20:58 +00001977 clang_disposeCodeCompleteResults(results);
1978 }
Douglas Gregordf95a132010-08-09 20:45:32 +00001979 clang_disposeTranslationUnit(TU);
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001980 clang_disposeIndex(CIdx);
1981 free(filename);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001982
Douglas Gregor735df882009-12-02 09:21:34 +00001983 free_remapped_files(unsaved_files, num_unsaved_files);
1984
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001985 return 0;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001986}
1987
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001988typedef struct {
1989 char *filename;
1990 unsigned line;
1991 unsigned column;
1992} CursorSourceLocation;
1993
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001994static int inspect_cursor_at(int argc, const char **argv) {
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001995 CXIndex CIdx;
1996 int errorCode;
1997 struct CXUnsavedFile *unsaved_files = 0;
1998 int num_unsaved_files = 0;
1999 CXTranslationUnit TU;
2000 CXCursor Cursor;
2001 CursorSourceLocation *Locations = 0;
2002 unsigned NumLocations = 0, Loc;
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002003 unsigned Repeats = 1;
Douglas Gregorbdc4b362010-11-30 06:04:54 +00002004 unsigned I;
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002005
Ted Kremeneke68fff62010-02-17 00:41:32 +00002006 /* Count the number of locations. */
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002007 while (strstr(argv[NumLocations+1], "-cursor-at=") == argv[NumLocations+1])
2008 ++NumLocations;
Ted Kremeneke68fff62010-02-17 00:41:32 +00002009
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002010 /* Parse the locations. */
2011 assert(NumLocations > 0 && "Unable to count locations?");
2012 Locations = (CursorSourceLocation *)malloc(
2013 NumLocations * sizeof(CursorSourceLocation));
2014 for (Loc = 0; Loc < NumLocations; ++Loc) {
2015 const char *input = argv[Loc + 1] + strlen("-cursor-at=");
Ted Kremeneke68fff62010-02-17 00:41:32 +00002016 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
2017 &Locations[Loc].line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002018 &Locations[Loc].column, 0, 0)))
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002019 return errorCode;
2020 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00002021
2022 if (parse_remapped_files(argc, argv, NumLocations + 1, &unsaved_files,
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002023 &num_unsaved_files))
2024 return -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00002025
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002026 if (getenv("CINDEXTEST_EDITING"))
2027 Repeats = 5;
2028
2029 /* Parse the translation unit. When we're testing clang_getCursor() after
2030 reparsing, don't remap unsaved files until the second parse. */
2031 CIdx = clang_createIndex(1, 1);
2032 TU = clang_parseTranslationUnit(CIdx, argv[argc - 1],
2033 argv + num_unsaved_files + 1 + NumLocations,
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002034 argc - num_unsaved_files - 2 - NumLocations,
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002035 unsaved_files,
2036 Repeats > 1? 0 : num_unsaved_files,
2037 getDefaultParsingOptions());
2038
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002039 if (!TU) {
2040 fprintf(stderr, "unable to parse input\n");
2041 return -1;
2042 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00002043
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002044 if (checkForErrors(TU) != 0)
2045 return -1;
2046
Douglas Gregorbdc4b362010-11-30 06:04:54 +00002047 for (I = 0; I != Repeats; ++I) {
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002048 if (Repeats > 1 &&
2049 clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
2050 clang_defaultReparseOptions(TU))) {
2051 clang_disposeTranslationUnit(TU);
2052 return 1;
2053 }
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002054
2055 if (checkForErrors(TU) != 0)
2056 return -1;
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002057
2058 for (Loc = 0; Loc < NumLocations; ++Loc) {
2059 CXFile file = clang_getFile(TU, Locations[Loc].filename);
2060 if (!file)
2061 continue;
Ted Kremeneke68fff62010-02-17 00:41:32 +00002062
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002063 Cursor = clang_getCursor(TU,
2064 clang_getLocation(TU, file, Locations[Loc].line,
2065 Locations[Loc].column));
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002066
2067 if (checkForErrors(TU) != 0)
2068 return -1;
2069
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002070 if (I + 1 == Repeats) {
Douglas Gregor8fa0a802011-08-04 20:04:59 +00002071 CXCompletionString completionString = clang_getCursorCompletionString(
2072 Cursor);
Argyrios Kyrtzidis66373dd2012-03-30 00:19:05 +00002073 CXSourceLocation CursorLoc = clang_getCursorLocation(Cursor);
2074 CXString Spelling;
2075 const char *cspell;
2076 unsigned line, column;
2077 clang_getSpellingLocation(CursorLoc, 0, &line, &column, 0);
2078 printf("%d:%d ", line, column);
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002079 PrintCursor(Cursor, NULL);
Argyrios Kyrtzidis66373dd2012-03-30 00:19:05 +00002080 PrintCursorExtent(Cursor);
2081 Spelling = clang_getCursorSpelling(Cursor);
2082 cspell = clang_getCString(Spelling);
Argyrios Kyrtzidisba1da142012-03-30 20:58:35 +00002083 if (cspell && strlen(cspell) != 0) {
2084 unsigned pieceIndex;
Argyrios Kyrtzidisba1da142012-03-30 20:58:35 +00002085 printf(" Spelling=%s (", cspell);
2086 for (pieceIndex = 0; ; ++pieceIndex) {
Benjamin Kramer6c235bc2012-03-31 10:23:28 +00002087 CXSourceRange range =
2088 clang_Cursor_getSpellingNameRange(Cursor, pieceIndex, 0);
Argyrios Kyrtzidisba1da142012-03-30 20:58:35 +00002089 if (clang_Range_isNull(range))
2090 break;
2091 PrintRange(range, 0);
2092 }
2093 printf(")");
2094 }
Argyrios Kyrtzidis66373dd2012-03-30 00:19:05 +00002095 clang_disposeString(Spelling);
Argyrios Kyrtzidis34ebe1e2012-03-30 22:15:48 +00002096 if (clang_Cursor_getObjCSelectorIndex(Cursor) != -1)
2097 printf(" Selector index=%d",clang_Cursor_getObjCSelectorIndex(Cursor));
Argyrios Kyrtzidisf39a7ae2012-07-02 23:54:36 +00002098 if (clang_Cursor_isDynamicCall(Cursor))
2099 printf(" Dynamic-call");
Argyrios Kyrtzidise4a990f2012-11-01 02:01:34 +00002100 if (Cursor.kind == CXCursor_ObjCMessageExpr) {
2101 CXType T = clang_Cursor_getReceiverType(Cursor);
2102 CXString S = clang_getTypeKindSpelling(T.kind);
2103 printf(" Receiver-type=%s", clang_getCString(S));
2104 clang_disposeString(S);
2105 }
Argyrios Kyrtzidisf39a7ae2012-07-02 23:54:36 +00002106
Argyrios Kyrtzidis5d04b1a2012-10-05 00:22:37 +00002107 {
2108 CXModule mod = clang_Cursor_getModule(Cursor);
Argyrios Kyrtzidise858e662013-04-26 22:47:49 +00002109 CXFile astFile;
2110 CXString name, astFilename;
Argyrios Kyrtzidis5d04b1a2012-10-05 00:22:37 +00002111 unsigned i, numHeaders;
2112 if (mod) {
Argyrios Kyrtzidise858e662013-04-26 22:47:49 +00002113 astFile = clang_Module_getASTFile(mod);
2114 astFilename = clang_getFileName(astFile);
Argyrios Kyrtzidis5d04b1a2012-10-05 00:22:37 +00002115 name = clang_Module_getFullName(mod);
Argyrios Kyrtzidisc1d22392013-03-13 21:13:43 +00002116 numHeaders = clang_Module_getNumTopLevelHeaders(TU, mod);
Argyrios Kyrtzidise858e662013-04-26 22:47:49 +00002117 printf(" ModuleName=%s (%s) Headers(%d):",
2118 clang_getCString(name), clang_getCString(astFilename),
2119 numHeaders);
Argyrios Kyrtzidis5d04b1a2012-10-05 00:22:37 +00002120 clang_disposeString(name);
Argyrios Kyrtzidise858e662013-04-26 22:47:49 +00002121 clang_disposeString(astFilename);
Argyrios Kyrtzidis5d04b1a2012-10-05 00:22:37 +00002122 for (i = 0; i < numHeaders; ++i) {
Argyrios Kyrtzidisc1d22392013-03-13 21:13:43 +00002123 CXFile file = clang_Module_getTopLevelHeader(TU, mod, i);
Argyrios Kyrtzidis5d04b1a2012-10-05 00:22:37 +00002124 CXString filename = clang_getFileName(file);
2125 printf("\n%s", clang_getCString(filename));
2126 clang_disposeString(filename);
2127 }
2128 }
2129 }
2130
Douglas Gregor8fa0a802011-08-04 20:04:59 +00002131 if (completionString != NULL) {
2132 printf("\nCompletion string: ");
2133 print_completion_string(completionString, stdout);
2134 }
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002135 printf("\n");
2136 free(Locations[Loc].filename);
2137 }
2138 }
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002139 }
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002140
Douglas Gregora88084b2010-02-18 18:08:43 +00002141 PrintDiagnostics(TU);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002142 clang_disposeTranslationUnit(TU);
2143 clang_disposeIndex(CIdx);
2144 free(Locations);
2145 free_remapped_files(unsaved_files, num_unsaved_files);
2146 return 0;
2147}
2148
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002149static enum CXVisitorResult findFileRefsVisit(void *context,
2150 CXCursor cursor, CXSourceRange range) {
2151 if (clang_Range_isNull(range))
2152 return CXVisit_Continue;
2153
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002154 PrintCursor(cursor, NULL);
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002155 PrintRange(range, "");
2156 printf("\n");
2157 return CXVisit_Continue;
2158}
2159
2160static int find_file_refs_at(int argc, const char **argv) {
2161 CXIndex CIdx;
2162 int errorCode;
2163 struct CXUnsavedFile *unsaved_files = 0;
2164 int num_unsaved_files = 0;
2165 CXTranslationUnit TU;
2166 CXCursor Cursor;
2167 CursorSourceLocation *Locations = 0;
2168 unsigned NumLocations = 0, Loc;
2169 unsigned Repeats = 1;
2170 unsigned I;
2171
2172 /* Count the number of locations. */
2173 while (strstr(argv[NumLocations+1], "-file-refs-at=") == argv[NumLocations+1])
2174 ++NumLocations;
2175
2176 /* Parse the locations. */
2177 assert(NumLocations > 0 && "Unable to count locations?");
2178 Locations = (CursorSourceLocation *)malloc(
2179 NumLocations * sizeof(CursorSourceLocation));
2180 for (Loc = 0; Loc < NumLocations; ++Loc) {
2181 const char *input = argv[Loc + 1] + strlen("-file-refs-at=");
2182 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
2183 &Locations[Loc].line,
2184 &Locations[Loc].column, 0, 0)))
2185 return errorCode;
2186 }
2187
2188 if (parse_remapped_files(argc, argv, NumLocations + 1, &unsaved_files,
2189 &num_unsaved_files))
2190 return -1;
2191
2192 if (getenv("CINDEXTEST_EDITING"))
2193 Repeats = 5;
2194
2195 /* Parse the translation unit. When we're testing clang_getCursor() after
2196 reparsing, don't remap unsaved files until the second parse. */
2197 CIdx = clang_createIndex(1, 1);
2198 TU = clang_parseTranslationUnit(CIdx, argv[argc - 1],
2199 argv + num_unsaved_files + 1 + NumLocations,
2200 argc - num_unsaved_files - 2 - NumLocations,
2201 unsaved_files,
2202 Repeats > 1? 0 : num_unsaved_files,
2203 getDefaultParsingOptions());
2204
2205 if (!TU) {
2206 fprintf(stderr, "unable to parse input\n");
2207 return -1;
2208 }
2209
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002210 if (checkForErrors(TU) != 0)
2211 return -1;
2212
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002213 for (I = 0; I != Repeats; ++I) {
2214 if (Repeats > 1 &&
2215 clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
2216 clang_defaultReparseOptions(TU))) {
2217 clang_disposeTranslationUnit(TU);
2218 return 1;
2219 }
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002220
2221 if (checkForErrors(TU) != 0)
2222 return -1;
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002223
2224 for (Loc = 0; Loc < NumLocations; ++Loc) {
2225 CXFile file = clang_getFile(TU, Locations[Loc].filename);
2226 if (!file)
2227 continue;
2228
2229 Cursor = clang_getCursor(TU,
2230 clang_getLocation(TU, file, Locations[Loc].line,
2231 Locations[Loc].column));
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002232
2233 if (checkForErrors(TU) != 0)
2234 return -1;
2235
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002236 if (I + 1 == Repeats) {
Erik Verbruggen26fc0f92011-10-06 11:38:08 +00002237 CXCursorAndRangeVisitor visitor = { 0, findFileRefsVisit };
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002238 PrintCursor(Cursor, NULL);
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002239 printf("\n");
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002240 clang_findReferencesInFile(Cursor, file, visitor);
2241 free(Locations[Loc].filename);
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002242
2243 if (checkForErrors(TU) != 0)
2244 return -1;
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002245 }
2246 }
2247 }
2248
2249 PrintDiagnostics(TU);
2250 clang_disposeTranslationUnit(TU);
2251 clang_disposeIndex(CIdx);
2252 free(Locations);
2253 free_remapped_files(unsaved_files, num_unsaved_files);
2254 return 0;
2255}
2256
Argyrios Kyrtzidisee2d5fd2013-03-08 02:32:34 +00002257static enum CXVisitorResult findFileIncludesVisit(void *context,
2258 CXCursor cursor, CXSourceRange range) {
2259 PrintCursor(cursor, NULL);
2260 PrintRange(range, "");
2261 printf("\n");
2262 return CXVisit_Continue;
2263}
2264
2265static int find_file_includes_in(int argc, const char **argv) {
2266 CXIndex CIdx;
2267 struct CXUnsavedFile *unsaved_files = 0;
2268 int num_unsaved_files = 0;
2269 CXTranslationUnit TU;
2270 const char **Filenames = 0;
2271 unsigned NumFilenames = 0;
2272 unsigned Repeats = 1;
2273 unsigned I, FI;
2274
2275 /* Count the number of locations. */
2276 while (strstr(argv[NumFilenames+1], "-file-includes-in=") == argv[NumFilenames+1])
2277 ++NumFilenames;
2278
2279 /* Parse the locations. */
2280 assert(NumFilenames > 0 && "Unable to count filenames?");
2281 Filenames = (const char **)malloc(NumFilenames * sizeof(const char *));
2282 for (I = 0; I < NumFilenames; ++I) {
2283 const char *input = argv[I + 1] + strlen("-file-includes-in=");
2284 /* Copy the file name. */
2285 Filenames[I] = input;
2286 }
2287
2288 if (parse_remapped_files(argc, argv, NumFilenames + 1, &unsaved_files,
2289 &num_unsaved_files))
2290 return -1;
2291
2292 if (getenv("CINDEXTEST_EDITING"))
2293 Repeats = 2;
2294
2295 /* Parse the translation unit. When we're testing clang_getCursor() after
2296 reparsing, don't remap unsaved files until the second parse. */
2297 CIdx = clang_createIndex(1, 1);
2298 TU = clang_parseTranslationUnit(CIdx, argv[argc - 1],
2299 argv + num_unsaved_files + 1 + NumFilenames,
2300 argc - num_unsaved_files - 2 - NumFilenames,
2301 unsaved_files,
2302 Repeats > 1? 0 : num_unsaved_files,
2303 getDefaultParsingOptions());
2304
2305 if (!TU) {
2306 fprintf(stderr, "unable to parse input\n");
2307 return -1;
2308 }
2309
2310 if (checkForErrors(TU) != 0)
2311 return -1;
2312
2313 for (I = 0; I != Repeats; ++I) {
2314 if (Repeats > 1 &&
2315 clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
2316 clang_defaultReparseOptions(TU))) {
2317 clang_disposeTranslationUnit(TU);
2318 return 1;
2319 }
2320
2321 if (checkForErrors(TU) != 0)
2322 return -1;
2323
2324 for (FI = 0; FI < NumFilenames; ++FI) {
2325 CXFile file = clang_getFile(TU, Filenames[FI]);
2326 if (!file)
2327 continue;
2328
2329 if (checkForErrors(TU) != 0)
2330 return -1;
2331
2332 if (I + 1 == Repeats) {
2333 CXCursorAndRangeVisitor visitor = { 0, findFileIncludesVisit };
2334 clang_findIncludesInFile(TU, file, visitor);
2335
2336 if (checkForErrors(TU) != 0)
2337 return -1;
2338 }
2339 }
2340 }
2341
2342 PrintDiagnostics(TU);
2343 clang_disposeTranslationUnit(TU);
2344 clang_disposeIndex(CIdx);
Argyrios Kyrtzidis5256c1f2013-03-11 16:03:17 +00002345 free((void *)Filenames);
Argyrios Kyrtzidisee2d5fd2013-03-08 02:32:34 +00002346 free_remapped_files(unsaved_files, num_unsaved_files);
2347 return 0;
2348}
2349
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002350#define MAX_IMPORTED_ASTFILES 200
2351
2352typedef struct {
2353 char **filenames;
2354 unsigned num_files;
2355} ImportedASTFilesData;
2356
2357static ImportedASTFilesData *importedASTs_create() {
2358 ImportedASTFilesData *p;
2359 p = malloc(sizeof(ImportedASTFilesData));
2360 p->filenames = malloc(MAX_IMPORTED_ASTFILES * sizeof(const char *));
2361 p->num_files = 0;
2362 return p;
2363}
2364
2365static void importedASTs_dispose(ImportedASTFilesData *p) {
2366 unsigned i;
2367 if (!p)
2368 return;
2369
2370 for (i = 0; i < p->num_files; ++i)
2371 free(p->filenames[i]);
2372 free(p->filenames);
2373 free(p);
2374}
2375
2376static void importedASTS_insert(ImportedASTFilesData *p, const char *file) {
2377 unsigned i;
2378 assert(p && file);
2379 for (i = 0; i < p->num_files; ++i)
2380 if (strcmp(file, p->filenames[i]) == 0)
2381 return;
2382 assert(p->num_files + 1 < MAX_IMPORTED_ASTFILES);
2383 p->filenames[p->num_files++] = strdup(file);
2384}
2385
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002386typedef struct {
2387 const char *check_prefix;
2388 int first_check_printed;
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002389 int fail_for_error;
Argyrios Kyrtzidis6f3ce972011-11-28 04:56:00 +00002390 int abort;
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002391 const char *main_filename;
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002392 ImportedASTFilesData *importedASTs;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002393} IndexData;
2394
2395static void printCheck(IndexData *data) {
2396 if (data->check_prefix) {
2397 if (data->first_check_printed) {
2398 printf("// %s-NEXT: ", data->check_prefix);
2399 } else {
2400 printf("// %s : ", data->check_prefix);
2401 data->first_check_printed = 1;
2402 }
2403 }
2404}
2405
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002406static void printCXIndexFile(CXIdxClientFile file) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002407 CXString filename = clang_getFileName((CXFile)file);
2408 printf("%s", clang_getCString(filename));
2409 clang_disposeString(filename);
2410}
2411
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002412static void printCXIndexLoc(CXIdxLoc loc, CXClientData client_data) {
2413 IndexData *index_data;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002414 CXString filename;
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002415 const char *cname;
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002416 CXIdxClientFile file;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002417 unsigned line, column;
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002418 int isMainFile;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002419
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002420 index_data = (IndexData *)client_data;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002421 clang_indexLoc_getFileLocation(loc, &file, 0, &line, &column, 0);
2422 if (line == 0) {
Argyrios Kyrtzidis8003fd62012-10-11 19:00:44 +00002423 printf("<invalid>");
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002424 return;
2425 }
Argyrios Kyrtzidisc2be04e2011-12-13 18:47:35 +00002426 if (!file) {
2427 printf("<no idxfile>");
2428 return;
2429 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002430 filename = clang_getFileName((CXFile)file);
2431 cname = clang_getCString(filename);
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002432 if (strcmp(cname, index_data->main_filename) == 0)
2433 isMainFile = 1;
2434 else
2435 isMainFile = 0;
2436 clang_disposeString(filename);
2437
2438 if (!isMainFile) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002439 printCXIndexFile(file);
2440 printf(":");
2441 }
2442 printf("%d:%d", line, column);
2443}
2444
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002445static unsigned digitCount(unsigned val) {
2446 unsigned c = 1;
2447 while (1) {
2448 if (val < 10)
2449 return c;
2450 ++c;
2451 val /= 10;
2452 }
2453}
2454
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002455static CXIdxClientContainer makeClientContainer(const CXIdxEntityInfo *info,
2456 CXIdxLoc loc) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002457 const char *name;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002458 char *newStr;
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002459 CXIdxClientFile file;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002460 unsigned line, column;
2461
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002462 name = info->name;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002463 if (!name)
2464 name = "<anon-tag>";
2465
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002466 clang_indexLoc_getFileLocation(loc, &file, 0, &line, &column, 0);
Argyrios Kyrtzidisf89bc052011-10-20 17:21:46 +00002467 /* FIXME: free these.*/
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002468 newStr = (char *)malloc(strlen(name) +
2469 digitCount(line) + digitCount(column) + 3);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002470 sprintf(newStr, "%s:%d:%d", name, line, column);
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002471 return (CXIdxClientContainer)newStr;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002472}
2473
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002474static void printCXIndexContainer(const CXIdxContainerInfo *info) {
2475 CXIdxClientContainer container;
2476 container = clang_index_getClientContainer(info);
Argyrios Kyrtzidis3e340a62011-11-16 02:35:05 +00002477 if (!container)
2478 printf("[<<NULL>>]");
2479 else
2480 printf("[%s]", (const char *)container);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002481}
2482
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002483static const char *getEntityKindString(CXIdxEntityKind kind) {
2484 switch (kind) {
2485 case CXIdxEntity_Unexposed: return "<<UNEXPOSED>>";
2486 case CXIdxEntity_Typedef: return "typedef";
2487 case CXIdxEntity_Function: return "function";
2488 case CXIdxEntity_Variable: return "variable";
2489 case CXIdxEntity_Field: return "field";
2490 case CXIdxEntity_EnumConstant: return "enumerator";
2491 case CXIdxEntity_ObjCClass: return "objc-class";
2492 case CXIdxEntity_ObjCProtocol: return "objc-protocol";
2493 case CXIdxEntity_ObjCCategory: return "objc-category";
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002494 case CXIdxEntity_ObjCInstanceMethod: return "objc-instance-method";
2495 case CXIdxEntity_ObjCClassMethod: return "objc-class-method";
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002496 case CXIdxEntity_ObjCProperty: return "objc-property";
2497 case CXIdxEntity_ObjCIvar: return "objc-ivar";
2498 case CXIdxEntity_Enum: return "enum";
2499 case CXIdxEntity_Struct: return "struct";
2500 case CXIdxEntity_Union: return "union";
2501 case CXIdxEntity_CXXClass: return "c++-class";
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002502 case CXIdxEntity_CXXNamespace: return "namespace";
2503 case CXIdxEntity_CXXNamespaceAlias: return "namespace-alias";
2504 case CXIdxEntity_CXXStaticVariable: return "c++-static-var";
2505 case CXIdxEntity_CXXStaticMethod: return "c++-static-method";
2506 case CXIdxEntity_CXXInstanceMethod: return "c++-instance-method";
2507 case CXIdxEntity_CXXConstructor: return "constructor";
2508 case CXIdxEntity_CXXDestructor: return "destructor";
2509 case CXIdxEntity_CXXConversionFunction: return "conversion-func";
2510 case CXIdxEntity_CXXTypeAlias: return "type-alias";
David Blaikie35adca02012-08-31 21:55:26 +00002511 case CXIdxEntity_CXXInterface: return "c++-__interface";
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002512 }
2513 assert(0 && "Garbage entity kind");
2514 return 0;
2515}
2516
2517static const char *getEntityTemplateKindString(CXIdxEntityCXXTemplateKind kind) {
2518 switch (kind) {
2519 case CXIdxEntity_NonTemplate: return "";
2520 case CXIdxEntity_Template: return "-template";
2521 case CXIdxEntity_TemplatePartialSpecialization:
2522 return "-template-partial-spec";
2523 case CXIdxEntity_TemplateSpecialization: return "-template-spec";
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002524 }
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002525 assert(0 && "Garbage entity kind");
2526 return 0;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002527}
2528
Argyrios Kyrtzidis838d3c22011-12-07 20:44:12 +00002529static const char *getEntityLanguageString(CXIdxEntityLanguage kind) {
2530 switch (kind) {
2531 case CXIdxEntityLang_None: return "<none>";
2532 case CXIdxEntityLang_C: return "C";
2533 case CXIdxEntityLang_ObjC: return "ObjC";
2534 case CXIdxEntityLang_CXX: return "C++";
2535 }
2536 assert(0 && "Garbage language kind");
2537 return 0;
2538}
2539
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002540static void printEntityInfo(const char *cb,
2541 CXClientData client_data,
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002542 const CXIdxEntityInfo *info) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002543 const char *name;
2544 IndexData *index_data;
Argyrios Kyrtzidis643d3ce2011-12-15 00:05:00 +00002545 unsigned i;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002546 index_data = (IndexData *)client_data;
2547 printCheck(index_data);
2548
Argyrios Kyrtzidisc6b4a502011-11-16 02:34:59 +00002549 if (!info) {
2550 printf("%s: <<NULL>>", cb);
2551 return;
2552 }
2553
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002554 name = info->name;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002555 if (!name)
2556 name = "<anon-tag>";
2557
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002558 printf("%s: kind: %s%s", cb, getEntityKindString(info->kind),
2559 getEntityTemplateKindString(info->templateKind));
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002560 printf(" | name: %s", name);
2561 printf(" | USR: %s", info->USR);
Argyrios Kyrtzidisc2be04e2011-12-13 18:47:35 +00002562 printf(" | lang: %s", getEntityLanguageString(info->lang));
Argyrios Kyrtzidis643d3ce2011-12-15 00:05:00 +00002563
2564 for (i = 0; i != info->numAttributes; ++i) {
2565 const CXIdxAttrInfo *Attr = info->attributes[i];
2566 printf(" <attribute>: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002567 PrintCursor(Attr->cursor, NULL);
Argyrios Kyrtzidis643d3ce2011-12-15 00:05:00 +00002568 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002569}
2570
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002571static void printBaseClassInfo(CXClientData client_data,
2572 const CXIdxBaseClassInfo *info) {
2573 printEntityInfo(" <base>", client_data, info->base);
2574 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002575 PrintCursor(info->cursor, NULL);
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002576 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002577 printCXIndexLoc(info->loc, client_data);
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002578}
2579
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002580static void printProtocolList(const CXIdxObjCProtocolRefListInfo *ProtoInfo,
2581 CXClientData client_data) {
2582 unsigned i;
2583 for (i = 0; i < ProtoInfo->numProtocols; ++i) {
2584 printEntityInfo(" <protocol>", client_data,
2585 ProtoInfo->protocols[i]->protocol);
2586 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002587 PrintCursor(ProtoInfo->protocols[i]->cursor, NULL);
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002588 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002589 printCXIndexLoc(ProtoInfo->protocols[i]->loc, client_data);
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002590 printf("\n");
2591 }
2592}
2593
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002594static void index_diagnostic(CXClientData client_data,
Argyrios Kyrtzidis996e6e52011-12-01 02:42:50 +00002595 CXDiagnosticSet diagSet, void *reserved) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002596 CXString str;
2597 const char *cstr;
Argyrios Kyrtzidis996e6e52011-12-01 02:42:50 +00002598 unsigned numDiags, i;
2599 CXDiagnostic diag;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002600 IndexData *index_data;
2601 index_data = (IndexData *)client_data;
2602 printCheck(index_data);
2603
Argyrios Kyrtzidis996e6e52011-12-01 02:42:50 +00002604 numDiags = clang_getNumDiagnosticsInSet(diagSet);
2605 for (i = 0; i != numDiags; ++i) {
2606 diag = clang_getDiagnosticInSet(diagSet, i);
2607 str = clang_formatDiagnostic(diag, clang_defaultDiagnosticDisplayOptions());
2608 cstr = clang_getCString(str);
2609 printf("[diagnostic]: %s\n", cstr);
2610 clang_disposeString(str);
2611
2612 if (getenv("CINDEXTEST_FAILONERROR") &&
2613 clang_getDiagnosticSeverity(diag) >= CXDiagnostic_Error) {
2614 index_data->fail_for_error = 1;
2615 }
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002616 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002617}
2618
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002619static CXIdxClientFile index_enteredMainFile(CXClientData client_data,
2620 CXFile file, void *reserved) {
2621 IndexData *index_data;
Argyrios Kyrtzidis62d7fea2012-03-15 18:48:52 +00002622 CXString filename;
2623
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002624 index_data = (IndexData *)client_data;
2625 printCheck(index_data);
2626
Argyrios Kyrtzidis62d7fea2012-03-15 18:48:52 +00002627 filename = clang_getFileName(file);
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002628 index_data->main_filename = clang_getCString(filename);
2629 clang_disposeString(filename);
2630
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002631 printf("[enteredMainFile]: ");
2632 printCXIndexFile((CXIdxClientFile)file);
2633 printf("\n");
2634
2635 return (CXIdxClientFile)file;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002636}
2637
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002638static CXIdxClientFile index_ppIncludedFile(CXClientData client_data,
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002639 const CXIdxIncludedFileInfo *info) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002640 IndexData *index_data;
2641 index_data = (IndexData *)client_data;
2642 printCheck(index_data);
2643
Argyrios Kyrtzidis66042b32011-11-05 04:03:35 +00002644 printf("[ppIncludedFile]: ");
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002645 printCXIndexFile((CXIdxClientFile)info->file);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002646 printf(" | name: \"%s\"", info->filename);
2647 printf(" | hash loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002648 printCXIndexLoc(info->hashLoc, client_data);
Argyrios Kyrtzidis8d7a24e2012-10-18 00:17:05 +00002649 printf(" | isImport: %d | isAngled: %d | isModule: %d\n",
2650 info->isImport, info->isAngled, info->isModuleImport);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002651
2652 return (CXIdxClientFile)info->file;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002653}
2654
Argyrios Kyrtzidis2c3e05c2012-10-02 16:10:38 +00002655static CXIdxClientFile index_importedASTFile(CXClientData client_data,
2656 const CXIdxImportedASTFileInfo *info) {
2657 IndexData *index_data;
2658 index_data = (IndexData *)client_data;
2659 printCheck(index_data);
2660
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002661 if (index_data->importedASTs) {
2662 CXString filename = clang_getFileName(info->file);
2663 importedASTS_insert(index_data->importedASTs, clang_getCString(filename));
2664 clang_disposeString(filename);
2665 }
2666
Argyrios Kyrtzidis2c3e05c2012-10-02 16:10:38 +00002667 printf("[importedASTFile]: ");
2668 printCXIndexFile((CXIdxClientFile)info->file);
Argyrios Kyrtzidis134d1e8a2012-10-05 00:22:40 +00002669 if (info->module) {
2670 CXString name = clang_Module_getFullName(info->module);
2671 printf(" | loc: ");
2672 printCXIndexLoc(info->loc, client_data);
2673 printf(" | name: \"%s\"", clang_getCString(name));
2674 printf(" | isImplicit: %d\n", info->isImplicit);
2675 clang_disposeString(name);
Argyrios Kyrtzidis900ab952012-10-11 16:05:00 +00002676 } else {
NAKAMURA Takumi3c5527e2012-10-12 14:25:52 +00002677 /* PCH file, the rest are not relevant. */
Argyrios Kyrtzidis900ab952012-10-11 16:05:00 +00002678 printf("\n");
Argyrios Kyrtzidis134d1e8a2012-10-05 00:22:40 +00002679 }
Argyrios Kyrtzidis2c3e05c2012-10-02 16:10:38 +00002680
2681 return (CXIdxClientFile)info->file;
2682}
2683
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002684static CXIdxClientContainer index_startedTranslationUnit(CXClientData client_data,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002685 void *reserved) {
2686 IndexData *index_data;
2687 index_data = (IndexData *)client_data;
2688 printCheck(index_data);
2689
Argyrios Kyrtzidis66042b32011-11-05 04:03:35 +00002690 printf("[startedTranslationUnit]\n");
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002691 return (CXIdxClientContainer)"TU";
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002692}
2693
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002694static void index_indexDeclaration(CXClientData client_data,
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002695 const CXIdxDeclInfo *info) {
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002696 IndexData *index_data;
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002697 const CXIdxObjCCategoryDeclInfo *CatInfo;
2698 const CXIdxObjCInterfaceDeclInfo *InterInfo;
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002699 const CXIdxObjCProtocolRefListInfo *ProtoInfo;
Argyrios Kyrtzidis792db262012-02-28 17:50:33 +00002700 const CXIdxObjCPropertyDeclInfo *PropInfo;
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002701 const CXIdxCXXClassDeclInfo *CXXClassInfo;
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002702 unsigned i;
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002703 index_data = (IndexData *)client_data;
2704
2705 printEntityInfo("[indexDeclaration]", client_data, info->entityInfo);
2706 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002707 PrintCursor(info->cursor, NULL);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002708 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002709 printCXIndexLoc(info->loc, client_data);
Argyrios Kyrtzidisb1febb62011-12-07 20:44:19 +00002710 printf(" | semantic-container: ");
2711 printCXIndexContainer(info->semanticContainer);
2712 printf(" | lexical-container: ");
2713 printCXIndexContainer(info->lexicalContainer);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002714 printf(" | isRedecl: %d", info->isRedeclaration);
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002715 printf(" | isDef: %d", info->isDefinition);
Argyrios Kyrtzidis838eb7e2012-12-06 19:41:16 +00002716 if (info->flags & CXIdxDeclFlag_Skipped) {
2717 assert(!info->isContainer);
2718 printf(" | isContainer: skipped");
2719 } else {
2720 printf(" | isContainer: %d", info->isContainer);
2721 }
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002722 printf(" | isImplicit: %d\n", info->isImplicit);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002723
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002724 for (i = 0; i != info->numAttributes; ++i) {
NAKAMURA Takumi87adb0b2011-11-18 00:51:03 +00002725 const CXIdxAttrInfo *Attr = info->attributes[i];
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002726 printf(" <attribute>: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002727 PrintCursor(Attr->cursor, NULL);
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002728 printf("\n");
2729 }
2730
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002731 if (clang_index_isEntityObjCContainerKind(info->entityInfo->kind)) {
2732 const char *kindName = 0;
2733 CXIdxObjCContainerKind K = clang_index_getObjCContainerDeclInfo(info)->kind;
2734 switch (K) {
2735 case CXIdxObjCContainer_ForwardRef:
2736 kindName = "forward-ref"; break;
2737 case CXIdxObjCContainer_Interface:
2738 kindName = "interface"; break;
2739 case CXIdxObjCContainer_Implementation:
2740 kindName = "implementation"; break;
2741 }
2742 printCheck(index_data);
2743 printf(" <ObjCContainerInfo>: kind: %s\n", kindName);
2744 }
2745
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002746 if ((CatInfo = clang_index_getObjCCategoryDeclInfo(info))) {
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002747 printEntityInfo(" <ObjCCategoryInfo>: class", client_data,
2748 CatInfo->objcClass);
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002749 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002750 PrintCursor(CatInfo->classCursor, NULL);
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002751 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002752 printCXIndexLoc(CatInfo->classLoc, client_data);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002753 printf("\n");
2754 }
2755
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002756 if ((InterInfo = clang_index_getObjCInterfaceDeclInfo(info))) {
2757 if (InterInfo->superInfo) {
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002758 printBaseClassInfo(client_data, InterInfo->superInfo);
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002759 printf("\n");
2760 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002761 }
2762
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002763 if ((ProtoInfo = clang_index_getObjCProtocolRefListInfo(info))) {
2764 printProtocolList(ProtoInfo, client_data);
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002765 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002766
Argyrios Kyrtzidis792db262012-02-28 17:50:33 +00002767 if ((PropInfo = clang_index_getObjCPropertyDeclInfo(info))) {
2768 if (PropInfo->getter) {
2769 printEntityInfo(" <getter>", client_data, PropInfo->getter);
2770 printf("\n");
2771 }
2772 if (PropInfo->setter) {
2773 printEntityInfo(" <setter>", client_data, PropInfo->setter);
2774 printf("\n");
2775 }
2776 }
2777
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002778 if ((CXXClassInfo = clang_index_getCXXClassDeclInfo(info))) {
2779 for (i = 0; i != CXXClassInfo->numBases; ++i) {
2780 printBaseClassInfo(client_data, CXXClassInfo->bases[i]);
2781 printf("\n");
2782 }
2783 }
2784
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002785 if (info->declAsContainer)
2786 clang_index_setClientContainer(info->declAsContainer,
2787 makeClientContainer(info->entityInfo, info->loc));
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002788}
2789
2790static void index_indexEntityReference(CXClientData client_data,
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002791 const CXIdxEntityRefInfo *info) {
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002792 printEntityInfo("[indexEntityReference]", client_data, info->referencedEntity);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002793 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002794 PrintCursor(info->cursor, NULL);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002795 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002796 printCXIndexLoc(info->loc, client_data);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002797 printEntityInfo(" | <parent>:", client_data, info->parentEntity);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002798 printf(" | container: ");
2799 printCXIndexContainer(info->container);
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002800 printf(" | refkind: ");
Argyrios Kyrtzidisaca19be2011-10-18 15:50:50 +00002801 switch (info->kind) {
2802 case CXIdxEntityRef_Direct: printf("direct"); break;
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002803 case CXIdxEntityRef_Implicit: printf("implicit"); break;
Argyrios Kyrtzidisaca19be2011-10-18 15:50:50 +00002804 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002805 printf("\n");
2806}
2807
Argyrios Kyrtzidis6f3ce972011-11-28 04:56:00 +00002808static int index_abortQuery(CXClientData client_data, void *reserved) {
2809 IndexData *index_data;
2810 index_data = (IndexData *)client_data;
2811 return index_data->abort;
2812}
2813
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002814static IndexerCallbacks IndexCB = {
Argyrios Kyrtzidis6f3ce972011-11-28 04:56:00 +00002815 index_abortQuery,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002816 index_diagnostic,
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002817 index_enteredMainFile,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002818 index_ppIncludedFile,
Argyrios Kyrtzidis2c3e05c2012-10-02 16:10:38 +00002819 index_importedASTFile,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002820 index_startedTranslationUnit,
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002821 index_indexDeclaration,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002822 index_indexEntityReference
2823};
2824
Argyrios Kyrtzidis22490742012-01-14 00:11:49 +00002825static unsigned getIndexOptions(void) {
2826 unsigned index_opts;
2827 index_opts = 0;
2828 if (getenv("CINDEXTEST_SUPPRESSREFS"))
2829 index_opts |= CXIndexOpt_SuppressRedundantRefs;
2830 if (getenv("CINDEXTEST_INDEXLOCALSYMBOLS"))
2831 index_opts |= CXIndexOpt_IndexFunctionLocalSymbols;
Argyrios Kyrtzidis838eb7e2012-12-06 19:41:16 +00002832 if (!getenv("CINDEXTEST_DISABLE_SKIPPARSEDBODIES"))
2833 index_opts |= CXIndexOpt_SkipParsedBodiesInSession;
Argyrios Kyrtzidis22490742012-01-14 00:11:49 +00002834
2835 return index_opts;
2836}
2837
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002838static int index_compile_args(int num_args, const char **args,
2839 CXIndexAction idxAction,
2840 ImportedASTFilesData *importedASTs,
2841 const char *check_prefix) {
2842 IndexData index_data;
2843 unsigned index_opts;
2844 int result;
2845
2846 if (num_args == 0) {
2847 fprintf(stderr, "no compiler arguments\n");
2848 return -1;
2849 }
2850
2851 index_data.check_prefix = check_prefix;
2852 index_data.first_check_printed = 0;
2853 index_data.fail_for_error = 0;
2854 index_data.abort = 0;
2855 index_data.main_filename = "";
2856 index_data.importedASTs = importedASTs;
2857
2858 index_opts = getIndexOptions();
2859 result = clang_indexSourceFile(idxAction, &index_data,
2860 &IndexCB,sizeof(IndexCB), index_opts,
2861 0, args, num_args, 0, 0, 0,
2862 getDefaultParsingOptions());
2863 if (index_data.fail_for_error)
2864 result = -1;
2865
2866 return result;
2867}
2868
2869static int index_ast_file(const char *ast_file,
2870 CXIndex Idx,
2871 CXIndexAction idxAction,
2872 ImportedASTFilesData *importedASTs,
2873 const char *check_prefix) {
2874 CXTranslationUnit TU;
2875 IndexData index_data;
2876 unsigned index_opts;
2877 int result;
2878
2879 if (!CreateTranslationUnit(Idx, ast_file, &TU))
2880 return -1;
2881
2882 index_data.check_prefix = check_prefix;
2883 index_data.first_check_printed = 0;
2884 index_data.fail_for_error = 0;
2885 index_data.abort = 0;
2886 index_data.main_filename = "";
2887 index_data.importedASTs = importedASTs;
2888
2889 index_opts = getIndexOptions();
2890 result = clang_indexTranslationUnit(idxAction, &index_data,
2891 &IndexCB,sizeof(IndexCB),
2892 index_opts, TU);
2893 if (index_data.fail_for_error)
2894 result = -1;
2895
2896 clang_disposeTranslationUnit(TU);
2897 return result;
2898}
2899
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002900static int index_file(int argc, const char **argv, int full) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002901 const char *check_prefix;
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002902 CXIndex Idx;
2903 CXIndexAction idxAction;
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002904 ImportedASTFilesData *importedASTs;
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002905 int result;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002906
2907 check_prefix = 0;
2908 if (argc > 0) {
2909 if (strstr(argv[0], "-check-prefix=") == argv[0]) {
2910 check_prefix = argv[0] + strlen("-check-prefix=");
2911 ++argv;
2912 --argc;
2913 }
2914 }
2915
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002916 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
Stefanus Du Toitfc093362013-03-01 21:41:22 +00002917 /* displayDiagnostics=*/1))) {
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002918 fprintf(stderr, "Could not create Index\n");
2919 return 1;
2920 }
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002921 idxAction = clang_IndexAction_create(Idx);
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002922 importedASTs = 0;
2923 if (full)
2924 importedASTs = importedASTs_create();
2925
2926 result = index_compile_args(argc, argv, idxAction, importedASTs, check_prefix);
2927 if (result != 0)
2928 goto finished;
2929
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002930 if (full) {
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002931 unsigned i;
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002932 for (i = 0; i < importedASTs->num_files && result == 0; ++i) {
2933 result = index_ast_file(importedASTs->filenames[i], Idx, idxAction,
2934 importedASTs, check_prefix);
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002935 }
2936 }
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002937
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002938finished:
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002939 importedASTs_dispose(importedASTs);
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002940 clang_IndexAction_dispose(idxAction);
2941 clang_disposeIndex(Idx);
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002942 return result;
2943}
2944
2945static int index_tu(int argc, const char **argv) {
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002946 const char *check_prefix;
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002947 CXIndex Idx;
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002948 CXIndexAction idxAction;
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002949 int result;
2950
2951 check_prefix = 0;
2952 if (argc > 0) {
2953 if (strstr(argv[0], "-check-prefix=") == argv[0]) {
2954 check_prefix = argv[0] + strlen("-check-prefix=");
2955 ++argv;
2956 --argc;
2957 }
2958 }
2959
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002960 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
Stefanus Du Toitfc093362013-03-01 21:41:22 +00002961 /* displayDiagnostics=*/1))) {
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002962 fprintf(stderr, "Could not create Index\n");
2963 return 1;
2964 }
2965 idxAction = clang_IndexAction_create(Idx);
2966
2967 result = index_ast_file(argv[0], Idx, idxAction,
2968 /*importedASTs=*/0, check_prefix);
2969
2970 clang_IndexAction_dispose(idxAction);
2971 clang_disposeIndex(Idx);
2972 return result;
2973}
2974
2975static int index_compile_db(int argc, const char **argv) {
2976 const char *check_prefix;
2977 CXIndex Idx;
2978 CXIndexAction idxAction;
2979 int errorCode = 0;
2980
2981 check_prefix = 0;
2982 if (argc > 0) {
2983 if (strstr(argv[0], "-check-prefix=") == argv[0]) {
2984 check_prefix = argv[0] + strlen("-check-prefix=");
2985 ++argv;
2986 --argc;
2987 }
2988 }
2989
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002990 if (argc == 0) {
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002991 fprintf(stderr, "no compilation database\n");
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002992 return -1;
2993 }
2994
2995 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
Stefanus Du Toitfc093362013-03-01 21:41:22 +00002996 /* displayDiagnostics=*/1))) {
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002997 fprintf(stderr, "Could not create Index\n");
2998 return 1;
2999 }
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00003000 idxAction = clang_IndexAction_create(Idx);
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00003001
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00003002 {
3003 const char *database = argv[0];
3004 CXCompilationDatabase db = 0;
3005 CXCompileCommands CCmds = 0;
3006 CXCompileCommand CCmd;
3007 CXCompilationDatabase_Error ec;
3008 CXString wd;
3009#define MAX_COMPILE_ARGS 512
3010 CXString cxargs[MAX_COMPILE_ARGS];
3011 const char *args[MAX_COMPILE_ARGS];
3012 char *tmp;
3013 unsigned len;
3014 char *buildDir;
3015 int i, a, numCmds, numArgs;
3016
3017 len = strlen(database);
3018 tmp = (char *) malloc(len+1);
3019 memcpy(tmp, database, len+1);
3020 buildDir = dirname(tmp);
3021
3022 db = clang_CompilationDatabase_fromDirectory(buildDir, &ec);
3023
3024 if (db) {
3025
3026 if (ec!=CXCompilationDatabase_NoError) {
3027 printf("unexpected error %d code while loading compilation database\n", ec);
3028 errorCode = -1;
3029 goto cdb_end;
3030 }
3031
Argyrios Kyrtzidis2bff7e52012-12-17 20:19:56 +00003032 if (chdir(buildDir) != 0) {
3033 printf("Could not chdir to %s\n", buildDir);
3034 errorCode = -1;
3035 goto cdb_end;
3036 }
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00003037
Argyrios Kyrtzidis2bff7e52012-12-17 20:19:56 +00003038 CCmds = clang_CompilationDatabase_getAllCompileCommands(db);
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00003039 if (!CCmds) {
3040 printf("compilation db is empty\n");
3041 errorCode = -1;
3042 goto cdb_end;
3043 }
3044
3045 numCmds = clang_CompileCommands_getSize(CCmds);
3046
3047 if (numCmds==0) {
3048 fprintf(stderr, "should not get an empty compileCommand set\n");
3049 errorCode = -1;
3050 goto cdb_end;
3051 }
3052
3053 for (i=0; i<numCmds && errorCode == 0; ++i) {
3054 CCmd = clang_CompileCommands_getCommand(CCmds, i);
3055
3056 wd = clang_CompileCommand_getDirectory(CCmd);
Argyrios Kyrtzidis2bff7e52012-12-17 20:19:56 +00003057 if (chdir(clang_getCString(wd)) != 0) {
3058 printf("Could not chdir to %s\n", clang_getCString(wd));
3059 errorCode = -1;
3060 goto cdb_end;
3061 }
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00003062 clang_disposeString(wd);
3063
3064 numArgs = clang_CompileCommand_getNumArgs(CCmd);
3065 if (numArgs > MAX_COMPILE_ARGS){
3066 fprintf(stderr, "got more compile arguments than maximum\n");
3067 errorCode = -1;
3068 goto cdb_end;
3069 }
3070 for (a=0; a<numArgs; ++a) {
3071 cxargs[a] = clang_CompileCommand_getArg(CCmd, a);
3072 args[a] = clang_getCString(cxargs[a]);
3073 }
3074
3075 errorCode = index_compile_args(numArgs, args, idxAction,
3076 /*importedASTs=*/0, check_prefix);
3077
3078 for (a=0; a<numArgs; ++a)
3079 clang_disposeString(cxargs[a]);
3080 }
3081 } else {
3082 printf("database loading failed with error code %d.\n", ec);
3083 errorCode = -1;
3084 }
3085
3086 cdb_end:
3087 clang_CompileCommands_dispose(CCmds);
3088 clang_CompilationDatabase_dispose(db);
3089 free(tmp);
3090
3091 }
3092
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00003093 clang_IndexAction_dispose(idxAction);
3094 clang_disposeIndex(Idx);
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00003095 return errorCode;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00003096}
3097
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003098int perform_token_annotation(int argc, const char **argv) {
3099 const char *input = argv[1];
3100 char *filename = 0;
3101 unsigned line, second_line;
3102 unsigned column, second_column;
3103 CXIndex CIdx;
3104 CXTranslationUnit TU = 0;
3105 int errorCode;
3106 struct CXUnsavedFile *unsaved_files = 0;
3107 int num_unsaved_files = 0;
3108 CXToken *tokens;
3109 unsigned num_tokens;
3110 CXSourceRange range;
3111 CXSourceLocation startLoc, endLoc;
3112 CXFile file = 0;
3113 CXCursor *cursors = 0;
3114 unsigned i;
3115
3116 input += strlen("-test-annotate-tokens=");
3117 if ((errorCode = parse_file_line_column(input, &filename, &line, &column,
3118 &second_line, &second_column)))
3119 return errorCode;
3120
Richard Smithe07c5f82012-07-05 08:20:49 +00003121 if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files)) {
3122 free(filename);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003123 return -1;
Richard Smithe07c5f82012-07-05 08:20:49 +00003124 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003125
Douglas Gregor0a812cf2010-02-18 23:07:20 +00003126 CIdx = clang_createIndex(0, 1);
Douglas Gregordca8ee82011-05-06 16:33:08 +00003127 TU = clang_parseTranslationUnit(CIdx, argv[argc - 1],
3128 argv + num_unsaved_files + 2,
3129 argc - num_unsaved_files - 3,
3130 unsaved_files,
3131 num_unsaved_files,
3132 getDefaultParsingOptions());
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003133 if (!TU) {
3134 fprintf(stderr, "unable to parse input\n");
3135 clang_disposeIndex(CIdx);
3136 free(filename);
3137 free_remapped_files(unsaved_files, num_unsaved_files);
3138 return -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00003139 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003140 errorCode = 0;
3141
Richard Smithe07c5f82012-07-05 08:20:49 +00003142 if (checkForErrors(TU) != 0) {
3143 errorCode = -1;
3144 goto teardown;
3145 }
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00003146
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00003147 if (getenv("CINDEXTEST_EDITING")) {
3148 for (i = 0; i < 5; ++i) {
3149 if (clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
3150 clang_defaultReparseOptions(TU))) {
3151 fprintf(stderr, "Unable to reparse translation unit!\n");
3152 errorCode = -1;
3153 goto teardown;
3154 }
3155 }
3156 }
3157
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00003158 if (checkForErrors(TU) != 0) {
3159 errorCode = -1;
3160 goto teardown;
3161 }
3162
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003163 file = clang_getFile(TU, filename);
3164 if (!file) {
3165 fprintf(stderr, "file %s is not in this translation unit\n", filename);
3166 errorCode = -1;
3167 goto teardown;
3168 }
3169
3170 startLoc = clang_getLocation(TU, file, line, column);
3171 if (clang_equalLocations(clang_getNullLocation(), startLoc)) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00003172 fprintf(stderr, "invalid source location %s:%d:%d\n", filename, line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003173 column);
3174 errorCode = -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00003175 goto teardown;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003176 }
3177
3178 endLoc = clang_getLocation(TU, file, second_line, second_column);
3179 if (clang_equalLocations(clang_getNullLocation(), endLoc)) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00003180 fprintf(stderr, "invalid source location %s:%d:%d\n", filename,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003181 second_line, second_column);
3182 errorCode = -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00003183 goto teardown;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003184 }
3185
3186 range = clang_getRange(startLoc, endLoc);
3187 clang_tokenize(TU, range, &tokens, &num_tokens);
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00003188
3189 if (checkForErrors(TU) != 0) {
3190 errorCode = -1;
3191 goto teardown;
3192 }
3193
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003194 cursors = (CXCursor *)malloc(num_tokens * sizeof(CXCursor));
3195 clang_annotateTokens(TU, tokens, num_tokens, cursors);
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00003196
3197 if (checkForErrors(TU) != 0) {
3198 errorCode = -1;
3199 goto teardown;
3200 }
3201
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003202 for (i = 0; i != num_tokens; ++i) {
3203 const char *kind = "<unknown>";
3204 CXString spelling = clang_getTokenSpelling(TU, tokens[i]);
3205 CXSourceRange extent = clang_getTokenExtent(TU, tokens[i]);
3206 unsigned start_line, start_column, end_line, end_column;
3207
3208 switch (clang_getTokenKind(tokens[i])) {
3209 case CXToken_Punctuation: kind = "Punctuation"; break;
3210 case CXToken_Keyword: kind = "Keyword"; break;
3211 case CXToken_Identifier: kind = "Identifier"; break;
3212 case CXToken_Literal: kind = "Literal"; break;
3213 case CXToken_Comment: kind = "Comment"; break;
3214 }
Douglas Gregora9b06d42010-11-09 06:24:54 +00003215 clang_getSpellingLocation(clang_getRangeStart(extent),
3216 0, &start_line, &start_column, 0);
3217 clang_getSpellingLocation(clang_getRangeEnd(extent),
3218 0, &end_line, &end_column, 0);
Daniel Dunbar51b058c2010-02-14 08:32:24 +00003219 printf("%s: \"%s\" ", kind, clang_getCString(spelling));
Benjamin Kramer342742a2012-04-14 09:11:51 +00003220 clang_disposeString(spelling);
Daniel Dunbar51b058c2010-02-14 08:32:24 +00003221 PrintExtent(stdout, start_line, start_column, end_line, end_column);
Douglas Gregor0045e9f2010-01-26 18:31:56 +00003222 if (!clang_isInvalid(cursors[i].kind)) {
3223 printf(" ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00003224 PrintCursor(cursors[i], NULL);
Douglas Gregor0045e9f2010-01-26 18:31:56 +00003225 }
3226 printf("\n");
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003227 }
3228 free(cursors);
Ted Kremenek93f5e6a2010-10-20 21:22:15 +00003229 clang_disposeTokens(TU, tokens, num_tokens);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003230
3231 teardown:
Douglas Gregora88084b2010-02-18 18:08:43 +00003232 PrintDiagnostics(TU);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003233 clang_disposeTranslationUnit(TU);
3234 clang_disposeIndex(CIdx);
3235 free(filename);
3236 free_remapped_files(unsaved_files, num_unsaved_files);
3237 return errorCode;
3238}
3239
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003240static int
3241perform_test_compilation_db(const char *database, int argc, const char **argv) {
3242 CXCompilationDatabase db;
3243 CXCompileCommands CCmds;
3244 CXCompileCommand CCmd;
3245 CXCompilationDatabase_Error ec;
3246 CXString wd;
3247 CXString arg;
3248 int errorCode = 0;
3249 char *tmp;
3250 unsigned len;
3251 char *buildDir;
3252 int i, j, a, numCmds, numArgs;
3253
3254 len = strlen(database);
3255 tmp = (char *) malloc(len+1);
3256 memcpy(tmp, database, len+1);
3257 buildDir = dirname(tmp);
3258
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003259 db = clang_CompilationDatabase_fromDirectory(buildDir, &ec);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003260
3261 if (db) {
3262
3263 if (ec!=CXCompilationDatabase_NoError) {
3264 printf("unexpected error %d code while loading compilation database\n", ec);
3265 errorCode = -1;
3266 goto cdb_end;
3267 }
3268
3269 for (i=0; i<argc && errorCode==0; ) {
3270 if (strcmp(argv[i],"lookup")==0){
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003271 CCmds = clang_CompilationDatabase_getCompileCommands(db, argv[i+1]);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003272
3273 if (!CCmds) {
3274 printf("file %s not found in compilation db\n", argv[i+1]);
3275 errorCode = -1;
3276 break;
3277 }
3278
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003279 numCmds = clang_CompileCommands_getSize(CCmds);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003280
3281 if (numCmds==0) {
3282 fprintf(stderr, "should not get an empty compileCommand set for file"
3283 " '%s'\n", argv[i+1]);
3284 errorCode = -1;
3285 break;
3286 }
3287
3288 for (j=0; j<numCmds; ++j) {
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003289 CCmd = clang_CompileCommands_getCommand(CCmds, j);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003290
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003291 wd = clang_CompileCommand_getDirectory(CCmd);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003292 printf("workdir:'%s'", clang_getCString(wd));
3293 clang_disposeString(wd);
3294
3295 printf(" cmdline:'");
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003296 numArgs = clang_CompileCommand_getNumArgs(CCmd);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003297 for (a=0; a<numArgs; ++a) {
3298 if (a) printf(" ");
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003299 arg = clang_CompileCommand_getArg(CCmd, a);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003300 printf("%s", clang_getCString(arg));
3301 clang_disposeString(arg);
3302 }
3303 printf("'\n");
3304 }
3305
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003306 clang_CompileCommands_dispose(CCmds);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003307
3308 i += 2;
3309 }
3310 }
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003311 clang_CompilationDatabase_dispose(db);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003312 } else {
3313 printf("database loading failed with error code %d.\n", ec);
3314 errorCode = -1;
3315 }
3316
3317cdb_end:
3318 free(tmp);
3319
3320 return errorCode;
3321}
3322
Ted Kremenek0d435192009-11-17 18:13:31 +00003323/******************************************************************************/
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003324/* USR printing. */
3325/******************************************************************************/
3326
3327static int insufficient_usr(const char *kind, const char *usage) {
3328 fprintf(stderr, "USR for '%s' requires: %s\n", kind, usage);
3329 return 1;
3330}
3331
3332static unsigned isUSR(const char *s) {
3333 return s[0] == 'c' && s[1] == ':';
3334}
3335
3336static int not_usr(const char *s, const char *arg) {
3337 fprintf(stderr, "'%s' argument ('%s') is not a USR\n", s, arg);
3338 return 1;
3339}
3340
3341static void print_usr(CXString usr) {
3342 const char *s = clang_getCString(usr);
3343 printf("%s\n", s);
3344 clang_disposeString(usr);
3345}
3346
3347static void display_usrs() {
3348 fprintf(stderr, "-print-usrs options:\n"
3349 " ObjCCategory <class name> <category name>\n"
3350 " ObjCClass <class name>\n"
3351 " ObjCIvar <ivar name> <class USR>\n"
3352 " ObjCMethod <selector> [0=class method|1=instance method] "
3353 "<class USR>\n"
3354 " ObjCProperty <property name> <class USR>\n"
3355 " ObjCProtocol <protocol name>\n");
3356}
3357
3358int print_usrs(const char **I, const char **E) {
3359 while (I != E) {
3360 const char *kind = *I;
3361 unsigned len = strlen(kind);
3362 switch (len) {
3363 case 8:
3364 if (memcmp(kind, "ObjCIvar", 8) == 0) {
3365 if (I + 2 >= E)
3366 return insufficient_usr(kind, "<ivar name> <class USR>");
3367 if (!isUSR(I[2]))
3368 return not_usr("<class USR>", I[2]);
3369 else {
3370 CXString x;
Ted Kremeneka60ed472010-11-16 08:15:36 +00003371 x.data = (void*) I[2];
Ted Kremeneked122732010-11-16 01:56:27 +00003372 x.private_flags = 0;
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003373 print_usr(clang_constructUSR_ObjCIvar(I[1], x));
3374 }
3375
3376 I += 3;
3377 continue;
3378 }
3379 break;
3380 case 9:
3381 if (memcmp(kind, "ObjCClass", 9) == 0) {
3382 if (I + 1 >= E)
3383 return insufficient_usr(kind, "<class name>");
3384 print_usr(clang_constructUSR_ObjCClass(I[1]));
3385 I += 2;
3386 continue;
3387 }
3388 break;
3389 case 10:
3390 if (memcmp(kind, "ObjCMethod", 10) == 0) {
3391 if (I + 3 >= E)
3392 return insufficient_usr(kind, "<method selector> "
3393 "[0=class method|1=instance method] <class USR>");
3394 if (!isUSR(I[3]))
3395 return not_usr("<class USR>", I[3]);
3396 else {
3397 CXString x;
Ted Kremeneka60ed472010-11-16 08:15:36 +00003398 x.data = (void*) I[3];
Ted Kremeneked122732010-11-16 01:56:27 +00003399 x.private_flags = 0;
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003400 print_usr(clang_constructUSR_ObjCMethod(I[1], atoi(I[2]), x));
3401 }
3402 I += 4;
3403 continue;
3404 }
3405 break;
3406 case 12:
3407 if (memcmp(kind, "ObjCCategory", 12) == 0) {
3408 if (I + 2 >= E)
3409 return insufficient_usr(kind, "<class name> <category name>");
3410 print_usr(clang_constructUSR_ObjCCategory(I[1], I[2]));
3411 I += 3;
3412 continue;
3413 }
3414 if (memcmp(kind, "ObjCProtocol", 12) == 0) {
3415 if (I + 1 >= E)
3416 return insufficient_usr(kind, "<protocol name>");
3417 print_usr(clang_constructUSR_ObjCProtocol(I[1]));
3418 I += 2;
3419 continue;
3420 }
3421 if (memcmp(kind, "ObjCProperty", 12) == 0) {
3422 if (I + 2 >= E)
3423 return insufficient_usr(kind, "<property name> <class USR>");
3424 if (!isUSR(I[2]))
3425 return not_usr("<class USR>", I[2]);
3426 else {
3427 CXString x;
Ted Kremeneka60ed472010-11-16 08:15:36 +00003428 x.data = (void*) I[2];
Ted Kremeneked122732010-11-16 01:56:27 +00003429 x.private_flags = 0;
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003430 print_usr(clang_constructUSR_ObjCProperty(I[1], x));
3431 }
3432 I += 3;
3433 continue;
3434 }
3435 break;
3436 default:
3437 break;
3438 }
3439 break;
3440 }
3441
3442 if (I != E) {
3443 fprintf(stderr, "Invalid USR kind: %s\n", *I);
3444 display_usrs();
3445 return 1;
3446 }
3447 return 0;
3448}
3449
3450int print_usrs_file(const char *file_name) {
3451 char line[2048];
3452 const char *args[128];
3453 unsigned numChars = 0;
3454
3455 FILE *fp = fopen(file_name, "r");
3456 if (!fp) {
3457 fprintf(stderr, "error: cannot open '%s'\n", file_name);
3458 return 1;
3459 }
3460
3461 /* This code is not really all that safe, but it works fine for testing. */
3462 while (!feof(fp)) {
3463 char c = fgetc(fp);
3464 if (c == '\n') {
3465 unsigned i = 0;
3466 const char *s = 0;
3467
3468 if (numChars == 0)
3469 continue;
3470
3471 line[numChars] = '\0';
3472 numChars = 0;
3473
3474 if (line[0] == '/' && line[1] == '/')
3475 continue;
3476
3477 s = strtok(line, " ");
3478 while (s) {
3479 args[i] = s;
3480 ++i;
3481 s = strtok(0, " ");
3482 }
3483 if (print_usrs(&args[0], &args[i]))
3484 return 1;
3485 }
3486 else
3487 line[numChars++] = c;
3488 }
3489
3490 fclose(fp);
3491 return 0;
3492}
3493
3494/******************************************************************************/
Ted Kremenek0d435192009-11-17 18:13:31 +00003495/* Command line processing. */
3496/******************************************************************************/
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003497int write_pch_file(const char *filename, int argc, const char *argv[]) {
3498 CXIndex Idx;
3499 CXTranslationUnit TU;
3500 struct CXUnsavedFile *unsaved_files = 0;
3501 int num_unsaved_files = 0;
Francois Pichet08aa6222011-07-06 22:09:44 +00003502 int result = 0;
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003503
Stefanus Du Toitfc093362013-03-01 21:41:22 +00003504 Idx = clang_createIndex(/* excludeDeclsFromPCH */1, /* displayDiagnostics=*/1);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003505
3506 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
3507 clang_disposeIndex(Idx);
3508 return -1;
3509 }
3510
3511 TU = clang_parseTranslationUnit(Idx, 0,
3512 argv + num_unsaved_files,
3513 argc - num_unsaved_files,
3514 unsaved_files,
3515 num_unsaved_files,
Argyrios Kyrtzidis900ab952012-10-11 16:05:00 +00003516 CXTranslationUnit_Incomplete |
Argyrios Kyrtzidis65110ca2013-04-26 21:33:40 +00003517 CXTranslationUnit_DetailedPreprocessingRecord|
Argyrios Kyrtzidis900ab952012-10-11 16:05:00 +00003518 CXTranslationUnit_ForSerialization);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003519 if (!TU) {
3520 fprintf(stderr, "Unable to load translation unit!\n");
3521 free_remapped_files(unsaved_files, num_unsaved_files);
3522 clang_disposeIndex(Idx);
3523 return 1;
3524 }
3525
Douglas Gregor39c411f2011-07-06 16:43:36 +00003526 switch (clang_saveTranslationUnit(TU, filename,
3527 clang_defaultSaveOptions(TU))) {
3528 case CXSaveError_None:
3529 break;
3530
3531 case CXSaveError_TranslationErrors:
3532 fprintf(stderr, "Unable to write PCH file %s: translation errors\n",
3533 filename);
3534 result = 2;
3535 break;
3536
3537 case CXSaveError_InvalidTU:
3538 fprintf(stderr, "Unable to write PCH file %s: invalid translation unit\n",
3539 filename);
3540 result = 3;
3541 break;
3542
3543 case CXSaveError_Unknown:
3544 default:
3545 fprintf(stderr, "Unable to write PCH file %s: unknown error \n", filename);
3546 result = 1;
3547 break;
3548 }
3549
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003550 clang_disposeTranslationUnit(TU);
3551 free_remapped_files(unsaved_files, num_unsaved_files);
3552 clang_disposeIndex(Idx);
Douglas Gregor39c411f2011-07-06 16:43:36 +00003553 return result;
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003554}
3555
3556/******************************************************************************/
Ted Kremenek15322172011-11-10 08:43:12 +00003557/* Serialized diagnostics. */
3558/******************************************************************************/
3559
3560static const char *getDiagnosticCodeStr(enum CXLoadDiag_Error error) {
3561 switch (error) {
3562 case CXLoadDiag_CannotLoad: return "Cannot Load File";
3563 case CXLoadDiag_None: break;
3564 case CXLoadDiag_Unknown: return "Unknown";
3565 case CXLoadDiag_InvalidFile: return "Invalid File";
3566 }
3567 return "None";
3568}
3569
3570static const char *getSeverityString(enum CXDiagnosticSeverity severity) {
3571 switch (severity) {
3572 case CXDiagnostic_Note: return "note";
3573 case CXDiagnostic_Error: return "error";
3574 case CXDiagnostic_Fatal: return "fatal";
3575 case CXDiagnostic_Ignored: return "ignored";
3576 case CXDiagnostic_Warning: return "warning";
3577 }
3578 return "unknown";
3579}
3580
3581static void printIndent(unsigned indent) {
Ted Kremeneka7e8a832011-11-11 00:46:43 +00003582 if (indent == 0)
3583 return;
3584 fprintf(stderr, "+");
3585 --indent;
Ted Kremenek15322172011-11-10 08:43:12 +00003586 while (indent > 0) {
Ted Kremeneka7e8a832011-11-11 00:46:43 +00003587 fprintf(stderr, "-");
Ted Kremenek15322172011-11-10 08:43:12 +00003588 --indent;
3589 }
3590}
3591
3592static void printLocation(CXSourceLocation L) {
3593 CXFile File;
3594 CXString FileName;
3595 unsigned line, column, offset;
3596
3597 clang_getExpansionLocation(L, &File, &line, &column, &offset);
3598 FileName = clang_getFileName(File);
3599
3600 fprintf(stderr, "%s:%d:%d", clang_getCString(FileName), line, column);
3601 clang_disposeString(FileName);
3602}
3603
3604static void printRanges(CXDiagnostic D, unsigned indent) {
3605 unsigned i, n = clang_getDiagnosticNumRanges(D);
3606
3607 for (i = 0; i < n; ++i) {
3608 CXSourceLocation Start, End;
3609 CXSourceRange SR = clang_getDiagnosticRange(D, i);
3610 Start = clang_getRangeStart(SR);
3611 End = clang_getRangeEnd(SR);
3612
3613 printIndent(indent);
3614 fprintf(stderr, "Range: ");
3615 printLocation(Start);
3616 fprintf(stderr, " ");
3617 printLocation(End);
3618 fprintf(stderr, "\n");
3619 }
3620}
3621
3622static void printFixIts(CXDiagnostic D, unsigned indent) {
3623 unsigned i, n = clang_getDiagnosticNumFixIts(D);
Ted Kremenek3739b322012-03-20 20:49:45 +00003624 fprintf(stderr, "Number FIXITs = %d\n", n);
Ted Kremenek15322172011-11-10 08:43:12 +00003625 for (i = 0 ; i < n; ++i) {
3626 CXSourceRange ReplacementRange;
3627 CXString text;
3628 text = clang_getDiagnosticFixIt(D, i, &ReplacementRange);
3629
3630 printIndent(indent);
3631 fprintf(stderr, "FIXIT: (");
3632 printLocation(clang_getRangeStart(ReplacementRange));
3633 fprintf(stderr, " - ");
3634 printLocation(clang_getRangeEnd(ReplacementRange));
3635 fprintf(stderr, "): \"%s\"\n", clang_getCString(text));
3636 clang_disposeString(text);
3637 }
3638}
3639
3640static void printDiagnosticSet(CXDiagnosticSet Diags, unsigned indent) {
NAKAMURA Takumi91909432011-11-10 09:30:15 +00003641 unsigned i, n;
3642
Ted Kremenek15322172011-11-10 08:43:12 +00003643 if (!Diags)
3644 return;
3645
NAKAMURA Takumi91909432011-11-10 09:30:15 +00003646 n = clang_getNumDiagnosticsInSet(Diags);
Ted Kremenek15322172011-11-10 08:43:12 +00003647 for (i = 0; i < n; ++i) {
3648 CXSourceLocation DiagLoc;
3649 CXDiagnostic D;
3650 CXFile File;
Ted Kremenek78d5d3b2012-04-12 00:03:31 +00003651 CXString FileName, DiagSpelling, DiagOption, DiagCat;
Ted Kremenek15322172011-11-10 08:43:12 +00003652 unsigned line, column, offset;
Ted Kremenek78d5d3b2012-04-12 00:03:31 +00003653 const char *DiagOptionStr = 0, *DiagCatStr = 0;
Ted Kremenek15322172011-11-10 08:43:12 +00003654
3655 D = clang_getDiagnosticInSet(Diags, i);
3656 DiagLoc = clang_getDiagnosticLocation(D);
3657 clang_getExpansionLocation(DiagLoc, &File, &line, &column, &offset);
3658 FileName = clang_getFileName(File);
3659 DiagSpelling = clang_getDiagnosticSpelling(D);
3660
3661 printIndent(indent);
3662
3663 fprintf(stderr, "%s:%d:%d: %s: %s",
3664 clang_getCString(FileName),
3665 line,
3666 column,
3667 getSeverityString(clang_getDiagnosticSeverity(D)),
3668 clang_getCString(DiagSpelling));
3669
3670 DiagOption = clang_getDiagnosticOption(D, 0);
3671 DiagOptionStr = clang_getCString(DiagOption);
3672 if (DiagOptionStr) {
3673 fprintf(stderr, " [%s]", DiagOptionStr);
3674 }
3675
Ted Kremenek78d5d3b2012-04-12 00:03:31 +00003676 DiagCat = clang_getDiagnosticCategoryText(D);
3677 DiagCatStr = clang_getCString(DiagCat);
3678 if (DiagCatStr) {
3679 fprintf(stderr, " [%s]", DiagCatStr);
3680 }
3681
Ted Kremenek15322172011-11-10 08:43:12 +00003682 fprintf(stderr, "\n");
3683
3684 printRanges(D, indent);
3685 printFixIts(D, indent);
3686
NAKAMURA Takumia4ca95a2011-11-10 10:07:57 +00003687 /* Print subdiagnostics. */
Ted Kremenek15322172011-11-10 08:43:12 +00003688 printDiagnosticSet(clang_getChildDiagnostics(D), indent+2);
3689
3690 clang_disposeString(FileName);
3691 clang_disposeString(DiagSpelling);
3692 clang_disposeString(DiagOption);
3693 }
3694}
3695
3696static int read_diagnostics(const char *filename) {
3697 enum CXLoadDiag_Error error;
3698 CXString errorString;
3699 CXDiagnosticSet Diags = 0;
3700
3701 Diags = clang_loadDiagnostics(filename, &error, &errorString);
3702 if (!Diags) {
3703 fprintf(stderr, "Trouble deserializing file (%s): %s\n",
3704 getDiagnosticCodeStr(error),
3705 clang_getCString(errorString));
3706 clang_disposeString(errorString);
3707 return 1;
3708 }
3709
3710 printDiagnosticSet(Diags, 0);
Ted Kremeneka7e8a832011-11-11 00:46:43 +00003711 fprintf(stderr, "Number of diagnostics: %d\n",
3712 clang_getNumDiagnosticsInSet(Diags));
Ted Kremenek15322172011-11-10 08:43:12 +00003713 clang_disposeDiagnosticSet(Diags);
3714 return 0;
3715}
3716
3717/******************************************************************************/
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003718/* Command line processing. */
3719/******************************************************************************/
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003720
Douglas Gregore5b72ba2010-01-20 21:32:04 +00003721static CXCursorVisitor GetVisitor(const char *s) {
Ted Kremenek7d405622010-01-12 23:34:26 +00003722 if (s[0] == '\0')
Douglas Gregore5b72ba2010-01-20 21:32:04 +00003723 return FilteredPrintingVisitor;
Ted Kremenek7d405622010-01-12 23:34:26 +00003724 if (strcmp(s, "-usrs") == 0)
3725 return USRVisitor;
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003726 if (strncmp(s, "-memory-usage", 13) == 0)
3727 return GetVisitor(s + 13);
Ted Kremenek7d405622010-01-12 23:34:26 +00003728 return NULL;
3729}
3730
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003731static void print_usage(void) {
3732 fprintf(stderr,
Ted Kremenek0d435192009-11-17 18:13:31 +00003733 "usage: c-index-test -code-completion-at=<site> <compiler arguments>\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00003734 " c-index-test -code-completion-timing=<site> <compiler arguments>\n"
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00003735 " c-index-test -cursor-at=<site> <compiler arguments>\n"
Argyrios Kyrtzidisee2d5fd2013-03-08 02:32:34 +00003736 " c-index-test -file-refs-at=<site> <compiler arguments>\n"
3737 " c-index-test -file-includes-in=<filename> <compiler arguments>\n");
NAKAMURA Takumi35849722012-10-24 22:52:04 +00003738 fprintf(stderr,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00003739 " c-index-test -index-file [-check-prefix=<FileCheck prefix>] <compiler arguments>\n"
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00003740 " c-index-test -index-file-full [-check-prefix=<FileCheck prefix>] <compiler arguments>\n"
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00003741 " c-index-test -index-tu [-check-prefix=<FileCheck prefix>] <AST file>\n"
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00003742 " c-index-test -index-compile-db [-check-prefix=<FileCheck prefix>] <compilation database>\n"
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00003743 " c-index-test -test-file-scan <AST file> <source file> "
Erik Verbruggen26fc0f92011-10-06 11:38:08 +00003744 "[FileCheck prefix]\n");
3745 fprintf(stderr,
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +00003746 " c-index-test -test-load-tu <AST file> <symbol filter> "
3747 "[FileCheck prefix]\n"
Ted Kremenek7d405622010-01-12 23:34:26 +00003748 " c-index-test -test-load-tu-usrs <AST file> <symbol filter> "
3749 "[FileCheck prefix]\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00003750 " c-index-test -test-load-source <symbol filter> {<args>}*\n");
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00003751 fprintf(stderr,
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003752 " c-index-test -test-load-source-memory-usage "
3753 "<symbol filter> {<args>}*\n"
Douglas Gregorabc563f2010-07-19 21:46:24 +00003754 " c-index-test -test-load-source-reparse <trials> <symbol filter> "
3755 " {<args>}*\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00003756 " c-index-test -test-load-source-usrs <symbol filter> {<args>}*\n"
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003757 " c-index-test -test-load-source-usrs-memory-usage "
3758 "<symbol filter> {<args>}*\n"
Ted Kremenek16b55a72010-01-26 19:31:51 +00003759 " c-index-test -test-annotate-tokens=<range> {<args>}*\n"
3760 " c-index-test -test-inclusion-stack-source {<args>}*\n"
Ted Kremenek4e6a3f72011-04-18 23:42:53 +00003761 " c-index-test -test-inclusion-stack-tu <AST file>\n");
Chandler Carruth53513d22010-07-22 06:29:13 +00003762 fprintf(stderr,
Ted Kremenek4e6a3f72011-04-18 23:42:53 +00003763 " c-index-test -test-print-linkage-source {<args>}*\n"
Dmitri Gribenkoae03d8e2013-02-15 21:15:49 +00003764 " c-index-test -test-print-type {<args>}*\n"
Argyrios Kyrtzidis411d33a2013-04-11 01:20:11 +00003765 " c-index-test -test-print-type-size {<args>}*\n"
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00003766 " c-index-test -test-print-bitwidth {<args>}*\n"
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003767 " c-index-test -print-usr [<CursorKind> {<args>}]*\n"
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003768 " c-index-test -print-usr-file <file>\n"
Ted Kremenek15322172011-11-10 08:43:12 +00003769 " c-index-test -write-pch <file> <compiler arguments>\n");
3770 fprintf(stderr,
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003771 " c-index-test -compilation-db [lookup <filename>] database\n");
3772 fprintf(stderr,
Ted Kremenek15322172011-11-10 08:43:12 +00003773 " c-index-test -read-diagnostics <file>\n\n");
Douglas Gregorcaf4bd32010-07-20 14:34:35 +00003774 fprintf(stderr,
Ted Kremenek7d405622010-01-12 23:34:26 +00003775 " <symbol filter> values:\n%s",
Ted Kremenek0d435192009-11-17 18:13:31 +00003776 " all - load all symbols, including those from PCH\n"
3777 " local - load all symbols except those in PCH\n"
3778 " category - only load ObjC categories (non-PCH)\n"
3779 " interface - only load ObjC interfaces (non-PCH)\n"
3780 " protocol - only load ObjC protocols (non-PCH)\n"
3781 " function - only load functions (non-PCH)\n"
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00003782 " typedef - only load typdefs (non-PCH)\n"
3783 " scan-function - scan function bodies (non-PCH)\n\n");
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003784}
3785
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003786/***/
3787
3788int cindextest_main(int argc, const char **argv) {
Douglas Gregor0a812cf2010-02-18 23:07:20 +00003789 clang_enableStackTraces();
Ted Kremenek15322172011-11-10 08:43:12 +00003790 if (argc > 2 && strcmp(argv[1], "-read-diagnostics") == 0)
3791 return read_diagnostics(argv[2]);
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003792 if (argc > 2 && strstr(argv[1], "-code-completion-at=") == argv[1])
Douglas Gregor1982c182010-07-12 18:38:41 +00003793 return perform_code_completion(argc, argv, 0);
3794 if (argc > 2 && strstr(argv[1], "-code-completion-timing=") == argv[1])
3795 return perform_code_completion(argc, argv, 1);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00003796 if (argc > 2 && strstr(argv[1], "-cursor-at=") == argv[1])
3797 return inspect_cursor_at(argc, argv);
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00003798 if (argc > 2 && strstr(argv[1], "-file-refs-at=") == argv[1])
3799 return find_file_refs_at(argc, argv);
Argyrios Kyrtzidisee2d5fd2013-03-08 02:32:34 +00003800 if (argc > 2 && strstr(argv[1], "-file-includes-in=") == argv[1])
3801 return find_file_includes_in(argc, argv);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00003802 if (argc > 2 && strcmp(argv[1], "-index-file") == 0)
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00003803 return index_file(argc - 2, argv + 2, /*full=*/0);
3804 if (argc > 2 && strcmp(argv[1], "-index-file-full") == 0)
3805 return index_file(argc - 2, argv + 2, /*full=*/1);
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00003806 if (argc > 2 && strcmp(argv[1], "-index-tu") == 0)
3807 return index_tu(argc - 2, argv + 2);
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00003808 if (argc > 2 && strcmp(argv[1], "-index-compile-db") == 0)
3809 return index_compile_db(argc - 2, argv + 2);
Ted Kremenek7d405622010-01-12 23:34:26 +00003810 else if (argc >= 4 && strncmp(argv[1], "-test-load-tu", 13) == 0) {
Douglas Gregore5b72ba2010-01-20 21:32:04 +00003811 CXCursorVisitor I = GetVisitor(argv[1] + 13);
Ted Kremenek7d405622010-01-12 23:34:26 +00003812 if (I)
Ted Kremenekce2ae882010-01-26 17:59:48 +00003813 return perform_test_load_tu(argv[2], argv[3], argc >= 5 ? argv[4] : 0, I,
3814 NULL);
Ted Kremenek7d405622010-01-12 23:34:26 +00003815 }
Douglas Gregorabc563f2010-07-19 21:46:24 +00003816 else if (argc >= 5 && strncmp(argv[1], "-test-load-source-reparse", 25) == 0){
3817 CXCursorVisitor I = GetVisitor(argv[1] + 25);
3818 if (I) {
3819 int trials = atoi(argv[2]);
3820 return perform_test_reparse_source(argc - 4, argv + 4, trials, argv[3], I,
3821 NULL);
3822 }
3823 }
Ted Kremenek7d405622010-01-12 23:34:26 +00003824 else if (argc >= 4 && strncmp(argv[1], "-test-load-source", 17) == 0) {
Douglas Gregore5b72ba2010-01-20 21:32:04 +00003825 CXCursorVisitor I = GetVisitor(argv[1] + 17);
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003826
3827 PostVisitTU postVisit = 0;
3828 if (strstr(argv[1], "-memory-usage"))
3829 postVisit = PrintMemoryUsage;
3830
Ted Kremenek7d405622010-01-12 23:34:26 +00003831 if (I)
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003832 return perform_test_load_source(argc - 3, argv + 3, argv[2], I,
3833 postVisit);
Ted Kremenek7d405622010-01-12 23:34:26 +00003834 }
3835 else if (argc >= 4 && strcmp(argv[1], "-test-file-scan") == 0)
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00003836 return perform_file_scan(argv[2], argv[3],
3837 argc >= 5 ? argv[4] : 0);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003838 else if (argc > 2 && strstr(argv[1], "-test-annotate-tokens=") == argv[1])
3839 return perform_token_annotation(argc, argv);
Ted Kremenek16b55a72010-01-26 19:31:51 +00003840 else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-source") == 0)
3841 return perform_test_load_source(argc - 2, argv + 2, "all", NULL,
3842 PrintInclusionStack);
3843 else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-tu") == 0)
3844 return perform_test_load_tu(argv[2], "all", NULL, NULL,
3845 PrintInclusionStack);
Ted Kremenek3bed5272010-03-03 06:37:58 +00003846 else if (argc > 2 && strcmp(argv[1], "-test-print-linkage-source") == 0)
3847 return perform_test_load_source(argc - 2, argv + 2, "all", PrintLinkage,
3848 NULL);
Dmitri Gribenkoae03d8e2013-02-15 21:15:49 +00003849 else if (argc > 2 && strcmp(argv[1], "-test-print-type") == 0)
Ted Kremenek8e0ac172010-05-14 21:29:26 +00003850 return perform_test_load_source(argc - 2, argv + 2, "all",
Dmitri Gribenkoae03d8e2013-02-15 21:15:49 +00003851 PrintType, 0);
Argyrios Kyrtzidis411d33a2013-04-11 01:20:11 +00003852 else if (argc > 2 && strcmp(argv[1], "-test-print-type-size") == 0)
3853 return perform_test_load_source(argc - 2, argv + 2, "all",
3854 PrintTypeSize, 0);
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00003855 else if (argc > 2 && strcmp(argv[1], "-test-print-bitwidth") == 0)
3856 return perform_test_load_source(argc - 2, argv + 2, "all",
3857 PrintBitWidth, 0);
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003858 else if (argc > 1 && strcmp(argv[1], "-print-usr") == 0) {
3859 if (argc > 2)
3860 return print_usrs(argv + 2, argv + argc);
3861 else {
3862 display_usrs();
3863 return 1;
3864 }
3865 }
3866 else if (argc > 2 && strcmp(argv[1], "-print-usr-file") == 0)
3867 return print_usrs_file(argv[2]);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003868 else if (argc > 2 && strcmp(argv[1], "-write-pch") == 0)
3869 return write_pch_file(argv[2], argc - 3, argv + 3);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003870 else if (argc > 2 && strcmp(argv[1], "-compilation-db") == 0)
3871 return perform_test_compilation_db(argv[argc-1], argc - 3, argv + 2);
3872
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003873 print_usage();
3874 return 1;
Steve Naroff50398192009-08-28 15:28:48 +00003875}
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003876
3877/***/
3878
3879/* We intentionally run in a separate thread to ensure we at least minimal
3880 * testing of a multithreaded environment (for example, having a reduced stack
3881 * size). */
3882
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003883typedef struct thread_info {
3884 int argc;
3885 const char **argv;
3886 int result;
3887} thread_info;
Benjamin Kramer84294912010-11-04 19:11:31 +00003888void thread_runner(void *client_data_v) {
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003889 thread_info *client_data = client_data_v;
3890 client_data->result = cindextest_main(client_data->argc, client_data->argv);
NAKAMURA Takumi3be55cd2012-04-07 06:59:28 +00003891#ifdef __CYGWIN__
3892 fflush(stdout); /* stdout is not flushed on Cygwin. */
3893#endif
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003894}
3895
3896int main(int argc, const char **argv) {
Benjamin Kramerd1a4f682012-08-10 10:06:13 +00003897 thread_info client_data;
3898
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00003899#ifdef CLANG_HAVE_LIBXML
3900 LIBXML_TEST_VERSION
3901#endif
3902
Douglas Gregor61605982010-10-27 16:00:01 +00003903 if (getenv("CINDEXTEST_NOTHREADS"))
3904 return cindextest_main(argc, argv);
3905
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003906 client_data.argc = argc;
3907 client_data.argv = argv;
Daniel Dunbara32a6e12010-11-04 01:26:31 +00003908 clang_executeOnThread(thread_runner, &client_data, 0);
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003909 return client_data.result;
3910}