blob: be2b6fc58497957ce52434efca31c1290307e7a0 [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)");
697
Ted Kremenek95f33552010-08-26 01:42:22 +0000698 if (Cursor.kind == CXCursor_IBOutletCollectionAttr) {
699 CXType T =
700 clang_getCanonicalType(clang_getIBOutletCollectionType(Cursor));
701 CXString S = clang_getTypeKindSpelling(T.kind);
702 printf(" [IBOutletCollection=%s]", clang_getCString(S));
703 clang_disposeString(S);
704 }
Ted Kremenek3064ef92010-08-27 21:34:58 +0000705
706 if (Cursor.kind == CXCursor_CXXBaseSpecifier) {
707 enum CX_CXXAccessSpecifier access = clang_getCXXAccessSpecifier(Cursor);
708 unsigned isVirtual = clang_isVirtualBase(Cursor);
709 const char *accessStr = 0;
710
711 switch (access) {
712 case CX_CXXInvalidAccessSpecifier:
713 accessStr = "invalid"; break;
714 case CX_CXXPublic:
715 accessStr = "public"; break;
716 case CX_CXXProtected:
717 accessStr = "protected"; break;
718 case CX_CXXPrivate:
719 accessStr = "private"; break;
720 }
721
722 printf(" [access=%s isVirtual=%s]", accessStr,
723 isVirtual ? "true" : "false");
724 }
Douglas Gregore0329ac2010-09-02 00:07:54 +0000725
726 SpecializationOf = clang_getSpecializedCursorTemplate(Cursor);
727 if (!clang_equalCursors(SpecializationOf, clang_getNullCursor())) {
728 CXSourceLocation Loc = clang_getCursorLocation(SpecializationOf);
729 CXString Name = clang_getCursorSpelling(SpecializationOf);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000730 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Douglas Gregore0329ac2010-09-02 00:07:54 +0000731 printf(" [Specialization of %s:%d:%d]",
732 clang_getCString(Name), line, column);
733 clang_disposeString(Name);
734 }
Douglas Gregor9f592342010-10-01 20:25:15 +0000735
736 clang_getOverriddenCursors(Cursor, &overridden, &num_overridden);
737 if (num_overridden) {
738 unsigned I;
Argyrios Kyrtzidisb3dd9882012-08-22 23:15:52 +0000739 LineCol lineCols[50];
740 assert(num_overridden <= 50);
Douglas Gregor9f592342010-10-01 20:25:15 +0000741 printf(" [Overrides ");
742 for (I = 0; I != num_overridden; ++I) {
743 CXSourceLocation Loc = clang_getCursorLocation(overridden[I]);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000744 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Argyrios Kyrtzidisb3dd9882012-08-22 23:15:52 +0000745 lineCols[I].line = line;
746 lineCols[I].col = column;
747 }
Michael Liao64221492012-08-30 00:45:32 +0000748 /* Make the order of the override list deterministic. */
Argyrios Kyrtzidisb3dd9882012-08-22 23:15:52 +0000749 qsort(lineCols, num_overridden, sizeof(LineCol), lineCol_cmp);
750 for (I = 0; I != num_overridden; ++I) {
Douglas Gregor9f592342010-10-01 20:25:15 +0000751 if (I)
752 printf(", ");
Argyrios Kyrtzidisb3dd9882012-08-22 23:15:52 +0000753 printf("@%d:%d", lineCols[I].line, lineCols[I].col);
Douglas Gregor9f592342010-10-01 20:25:15 +0000754 }
755 printf("]");
756 clang_disposeOverriddenCursors(overridden);
757 }
Douglas Gregorecdcb882010-10-20 22:00:55 +0000758
759 if (Cursor.kind == CXCursor_InclusionDirective) {
760 CXFile File = clang_getIncludedFile(Cursor);
761 CXString Included = clang_getFileName(File);
762 printf(" (%s)", clang_getCString(Included));
763 clang_disposeString(Included);
Douglas Gregordd3e5542011-05-04 00:14:37 +0000764
765 if (clang_isFileMultipleIncludeGuarded(TU, File))
766 printf(" [multi-include guarded]");
Douglas Gregorecdcb882010-10-20 22:00:55 +0000767 }
Douglas Gregor430d7a12011-07-25 17:48:11 +0000768
769 CursorExtent = clang_getCursorExtent(Cursor);
770 RefNameRange = clang_getCursorReferenceNameRange(Cursor,
771 CXNameRange_WantQualifier
772 | CXNameRange_WantSinglePiece
773 | CXNameRange_WantTemplateArgs,
774 0);
775 if (!clang_equalRanges(CursorExtent, RefNameRange))
776 PrintRange(RefNameRange, "SingleRefName");
777
778 for (RefNameRangeNr = 0; 1; RefNameRangeNr++) {
779 RefNameRange = clang_getCursorReferenceNameRange(Cursor,
780 CXNameRange_WantQualifier
781 | CXNameRange_WantTemplateArgs,
782 RefNameRangeNr);
783 if (clang_equalRanges(clang_getNullRange(), RefNameRange))
784 break;
785 if (!clang_equalRanges(CursorExtent, RefNameRange))
786 PrintRange(RefNameRange, "RefName");
787 }
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000788
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +0000789 PrintCursorComments(Cursor, ValidationData);
Steve Naroff699a07d2009-09-25 21:32:34 +0000790 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000791}
Steve Naroff89922f82009-08-31 00:59:03 +0000792
Ted Kremeneke68fff62010-02-17 00:41:32 +0000793static const char* GetCursorSource(CXCursor Cursor) {
Douglas Gregor1db19de2010-01-19 21:36:55 +0000794 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
Ted Kremenek74844072010-02-17 00:41:20 +0000795 CXString source;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000796 CXFile file;
Argyrios Kyrtzidisb4efaa02011-11-03 02:20:36 +0000797 clang_getExpansionLocation(Loc, &file, 0, 0, 0);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000798 source = clang_getFileName(file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000799 if (!clang_getCString(source)) {
Ted Kremenek74844072010-02-17 00:41:20 +0000800 clang_disposeString(source);
801 return "<invalid loc>";
802 }
803 else {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000804 const char *b = basename(clang_getCString(source));
Ted Kremenek74844072010-02-17 00:41:20 +0000805 clang_disposeString(source);
806 return b;
807 }
Ted Kremenek9298cfc2009-11-17 05:31:58 +0000808}
809
Ted Kremenek0d435192009-11-17 18:13:31 +0000810/******************************************************************************/
Ted Kremenekce2ae882010-01-26 17:59:48 +0000811/* Callbacks. */
812/******************************************************************************/
813
814typedef void (*PostVisitTU)(CXTranslationUnit);
815
Douglas Gregora88084b2010-02-18 18:08:43 +0000816void PrintDiagnostic(CXDiagnostic Diagnostic) {
817 FILE *out = stderr;
Douglas Gregor5352ac02010-01-28 00:27:43 +0000818 CXFile file;
Douglas Gregor274f1902010-02-22 23:17:23 +0000819 CXString Msg;
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000820 unsigned display_opts = CXDiagnostic_DisplaySourceLocation
Douglas Gregoraa5f1352010-11-19 16:18:16 +0000821 | CXDiagnostic_DisplayColumn | CXDiagnostic_DisplaySourceRanges
822 | CXDiagnostic_DisplayOption;
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000823 unsigned i, num_fixits;
Ted Kremenekf7b714d2010-03-25 02:00:39 +0000824
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000825 if (clang_getDiagnosticSeverity(Diagnostic) == CXDiagnostic_Ignored)
Douglas Gregor5352ac02010-01-28 00:27:43 +0000826 return;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000827
Douglas Gregor274f1902010-02-22 23:17:23 +0000828 Msg = clang_formatDiagnostic(Diagnostic, display_opts);
829 fprintf(stderr, "%s\n", clang_getCString(Msg));
830 clang_disposeString(Msg);
Ted Kremenekf7b714d2010-03-25 02:00:39 +0000831
Douglas Gregora9b06d42010-11-09 06:24:54 +0000832 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
833 &file, 0, 0, 0);
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000834 if (!file)
835 return;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000836
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000837 num_fixits = clang_getDiagnosticNumFixIts(Diagnostic);
Ted Kremenek3739b322012-03-20 20:49:45 +0000838 fprintf(stderr, "Number FIX-ITs = %d\n", num_fixits);
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000839 for (i = 0; i != num_fixits; ++i) {
Douglas Gregor473d7012010-02-19 18:16:06 +0000840 CXSourceRange range;
841 CXString insertion_text = clang_getDiagnosticFixIt(Diagnostic, i, &range);
842 CXSourceLocation start = clang_getRangeStart(range);
843 CXSourceLocation end = clang_getRangeEnd(range);
844 unsigned start_line, start_column, end_line, end_column;
845 CXFile start_file, end_file;
Douglas Gregora9b06d42010-11-09 06:24:54 +0000846 clang_getSpellingLocation(start, &start_file, &start_line,
847 &start_column, 0);
848 clang_getSpellingLocation(end, &end_file, &end_line, &end_column, 0);
Douglas Gregor473d7012010-02-19 18:16:06 +0000849 if (clang_equalLocations(start, end)) {
850 /* Insertion. */
851 if (start_file == file)
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000852 fprintf(out, "FIX-IT: Insert \"%s\" at %d:%d\n",
Douglas Gregor473d7012010-02-19 18:16:06 +0000853 clang_getCString(insertion_text), start_line, start_column);
854 } else if (strcmp(clang_getCString(insertion_text), "") == 0) {
855 /* Removal. */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000856 if (start_file == file && end_file == file) {
857 fprintf(out, "FIX-IT: Remove ");
858 PrintExtent(out, start_line, start_column, end_line, end_column);
859 fprintf(out, "\n");
Douglas Gregor51c6d382010-01-29 00:41:11 +0000860 }
Douglas Gregor473d7012010-02-19 18:16:06 +0000861 } else {
862 /* Replacement. */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000863 if (start_file == end_file) {
864 fprintf(out, "FIX-IT: Replace ");
865 PrintExtent(out, start_line, start_column, end_line, end_column);
Douglas Gregor473d7012010-02-19 18:16:06 +0000866 fprintf(out, " with \"%s\"\n", clang_getCString(insertion_text));
Douglas Gregor436f3f02010-02-18 22:27:07 +0000867 }
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000868 break;
869 }
Douglas Gregor473d7012010-02-19 18:16:06 +0000870 clang_disposeString(insertion_text);
Douglas Gregor51c6d382010-01-29 00:41:11 +0000871 }
Douglas Gregor5352ac02010-01-28 00:27:43 +0000872}
873
Ted Kremenek7473b1c2012-02-14 02:46:03 +0000874void PrintDiagnosticSet(CXDiagnosticSet Set) {
875 int i = 0, n = clang_getNumDiagnosticsInSet(Set);
876 for ( ; i != n ; ++i) {
877 CXDiagnostic Diag = clang_getDiagnosticInSet(Set, i);
878 CXDiagnosticSet ChildDiags = clang_getChildDiagnostics(Diag);
Douglas Gregora88084b2010-02-18 18:08:43 +0000879 PrintDiagnostic(Diag);
Ted Kremenek7473b1c2012-02-14 02:46:03 +0000880 if (ChildDiags)
881 PrintDiagnosticSet(ChildDiags);
882 }
883}
884
885void PrintDiagnostics(CXTranslationUnit TU) {
886 CXDiagnosticSet TUSet = clang_getDiagnosticSetFromTU(TU);
887 PrintDiagnosticSet(TUSet);
888 clang_disposeDiagnosticSet(TUSet);
Douglas Gregora88084b2010-02-18 18:08:43 +0000889}
890
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000891void PrintMemoryUsage(CXTranslationUnit TU) {
Matt Beaumont-Gayb2273232011-08-29 16:37:29 +0000892 unsigned long total = 0;
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000893 unsigned i = 0;
Ted Kremenekf7870022011-04-20 16:41:07 +0000894 CXTUResourceUsage usage = clang_getCXTUResourceUsage(TU);
Francois Pichet3c683362011-04-18 23:33:22 +0000895 fprintf(stderr, "Memory usage:\n");
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000896 for (i = 0 ; i != usage.numEntries; ++i) {
Ted Kremenekf7870022011-04-20 16:41:07 +0000897 const char *name = clang_getTUResourceUsageName(usage.entries[i].kind);
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000898 unsigned long amount = usage.entries[i].amount;
899 total += amount;
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000900 fprintf(stderr, " %s : %ld bytes (%f MBytes)\n", name, amount,
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000901 ((double) amount)/(1024*1024));
902 }
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000903 fprintf(stderr, " TOTAL = %ld bytes (%f MBytes)\n", total,
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000904 ((double) total)/(1024*1024));
Ted Kremenekf7870022011-04-20 16:41:07 +0000905 clang_disposeCXTUResourceUsage(usage);
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000906}
907
Ted Kremenekce2ae882010-01-26 17:59:48 +0000908/******************************************************************************/
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000909/* Logic for testing traversal. */
Ted Kremenek0d435192009-11-17 18:13:31 +0000910/******************************************************************************/
911
Douglas Gregora7bde202010-01-19 00:34:46 +0000912static void PrintCursorExtent(CXCursor C) {
913 CXSourceRange extent = clang_getCursorExtent(C);
Douglas Gregor430d7a12011-07-25 17:48:11 +0000914 PrintRange(extent, "Extent");
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000915}
916
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000917/* Data used by the visitors. */
918typedef struct {
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000919 CXTranslationUnit TU;
920 enum CXCursorKind *Filter;
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000921 CommentXMLValidationData ValidationData;
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000922} VisitorData;
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000923
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000924
Ted Kremeneke68fff62010-02-17 00:41:32 +0000925enum CXChildVisitResult FilteredPrintingVisitor(CXCursor Cursor,
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000926 CXCursor Parent,
927 CXClientData ClientData) {
928 VisitorData *Data = (VisitorData *)ClientData;
929 if (!Data->Filter || (Cursor.kind == *(enum CXCursorKind *)Data->Filter)) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000930 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000931 unsigned line, column;
Douglas Gregora9b06d42010-11-09 06:24:54 +0000932 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000933 printf("// %s: %s:%d:%d: ", FileCheckPrefix,
Douglas Gregor1db19de2010-01-19 21:36:55 +0000934 GetCursorSource(Cursor), line, column);
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000935 PrintCursor(Cursor, &Data->ValidationData);
Douglas Gregora7bde202010-01-19 00:34:46 +0000936 PrintCursorExtent(Cursor);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000937 printf("\n");
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000938 return CXChildVisit_Recurse;
Steve Naroff2d4d6292009-08-31 14:26:51 +0000939 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000940
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000941 return CXChildVisit_Continue;
Steve Naroff89922f82009-08-31 00:59:03 +0000942}
Steve Naroff50398192009-08-28 15:28:48 +0000943
Ted Kremeneke68fff62010-02-17 00:41:32 +0000944static enum CXChildVisitResult FunctionScanVisitor(CXCursor Cursor,
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000945 CXCursor Parent,
946 CXClientData ClientData) {
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000947 const char *startBuf, *endBuf;
948 unsigned startLine, startColumn, endLine, endColumn, curLine, curColumn;
949 CXCursor Ref;
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000950 VisitorData *Data = (VisitorData *)ClientData;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000951
Douglas Gregorb6998662010-01-19 19:34:47 +0000952 if (Cursor.kind != CXCursor_FunctionDecl ||
953 !clang_isCursorDefinition(Cursor))
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000954 return CXChildVisit_Continue;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000955
956 clang_getDefinitionSpellingAndExtent(Cursor, &startBuf, &endBuf,
957 &startLine, &startColumn,
958 &endLine, &endColumn);
959 /* Probe the entire body, looking for both decls and refs. */
960 curLine = startLine;
961 curColumn = startColumn;
962
963 while (startBuf < endBuf) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000964 CXSourceLocation Loc;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000965 CXFile file;
Ted Kremenek74844072010-02-17 00:41:20 +0000966 CXString source;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000967
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000968 if (*startBuf == '\n') {
969 startBuf++;
970 curLine++;
971 curColumn = 1;
972 } else if (*startBuf != '\t')
973 curColumn++;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000974
Douglas Gregor98258af2010-01-18 22:46:11 +0000975 Loc = clang_getCursorLocation(Cursor);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000976 clang_getSpellingLocation(Loc, &file, 0, 0, 0);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000977
Douglas Gregor1db19de2010-01-19 21:36:55 +0000978 source = clang_getFileName(file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000979 if (clang_getCString(source)) {
Douglas Gregorb9790342010-01-22 21:44:22 +0000980 CXSourceLocation RefLoc
981 = clang_getLocation(Data->TU, file, curLine, curColumn);
982 Ref = clang_getCursor(Data->TU, RefLoc);
Douglas Gregor98258af2010-01-18 22:46:11 +0000983 if (Ref.kind == CXCursor_NoDeclFound) {
984 /* Nothing found here; that's fine. */
985 } else if (Ref.kind != CXCursor_FunctionDecl) {
986 printf("// %s: %s:%d:%d: ", FileCheckPrefix, GetCursorSource(Ref),
987 curLine, curColumn);
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000988 PrintCursor(Ref, &Data->ValidationData);
Douglas Gregor98258af2010-01-18 22:46:11 +0000989 printf("\n");
990 }
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000991 }
Ted Kremenek74844072010-02-17 00:41:20 +0000992 clang_disposeString(source);
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000993 startBuf++;
994 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000995
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000996 return CXChildVisit_Continue;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000997}
998
Ted Kremenek7d405622010-01-12 23:34:26 +0000999/******************************************************************************/
1000/* USR testing. */
1001/******************************************************************************/
1002
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001003enum CXChildVisitResult USRVisitor(CXCursor C, CXCursor parent,
1004 CXClientData ClientData) {
1005 VisitorData *Data = (VisitorData *)ClientData;
1006 if (!Data->Filter || (C.kind == *(enum CXCursorKind *)Data->Filter)) {
Ted Kremenekcf84aa42010-01-18 20:23:29 +00001007 CXString USR = clang_getCursorUSR(C);
Ted Kremeneke542f772010-04-20 23:15:40 +00001008 const char *cstr = clang_getCString(USR);
1009 if (!cstr || cstr[0] == '\0') {
Ted Kremenek7d405622010-01-12 23:34:26 +00001010 clang_disposeString(USR);
Ted Kremeneke74ef122010-04-16 21:31:52 +00001011 return CXChildVisit_Recurse;
Ted Kremenek7d405622010-01-12 23:34:26 +00001012 }
Ted Kremeneke542f772010-04-20 23:15:40 +00001013 printf("// %s: %s %s", FileCheckPrefix, GetCursorSource(C), cstr);
1014
Douglas Gregora7bde202010-01-19 00:34:46 +00001015 PrintCursorExtent(C);
Ted Kremenek7d405622010-01-12 23:34:26 +00001016 printf("\n");
1017 clang_disposeString(USR);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001018
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001019 return CXChildVisit_Recurse;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001020 }
1021
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001022 return CXChildVisit_Continue;
Ted Kremenek7d405622010-01-12 23:34:26 +00001023}
1024
1025/******************************************************************************/
Ted Kremenek16b55a72010-01-26 19:31:51 +00001026/* Inclusion stack testing. */
1027/******************************************************************************/
1028
1029void InclusionVisitor(CXFile includedFile, CXSourceLocation *includeStack,
1030 unsigned includeStackLen, CXClientData data) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001031
Ted Kremenek16b55a72010-01-26 19:31:51 +00001032 unsigned i;
Ted Kremenek74844072010-02-17 00:41:20 +00001033 CXString fname;
1034
1035 fname = clang_getFileName(includedFile);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001036 printf("file: %s\nincluded by:\n", clang_getCString(fname));
Ted Kremenek74844072010-02-17 00:41:20 +00001037 clang_disposeString(fname);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001038
Ted Kremenek16b55a72010-01-26 19:31:51 +00001039 for (i = 0; i < includeStackLen; ++i) {
1040 CXFile includingFile;
1041 unsigned line, column;
Douglas Gregora9b06d42010-11-09 06:24:54 +00001042 clang_getSpellingLocation(includeStack[i], &includingFile, &line,
1043 &column, 0);
Ted Kremenek74844072010-02-17 00:41:20 +00001044 fname = clang_getFileName(includingFile);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001045 printf(" %s:%d:%d\n", clang_getCString(fname), line, column);
Ted Kremenek74844072010-02-17 00:41:20 +00001046 clang_disposeString(fname);
Ted Kremenek16b55a72010-01-26 19:31:51 +00001047 }
1048 printf("\n");
1049}
1050
1051void PrintInclusionStack(CXTranslationUnit TU) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001052 clang_getInclusions(TU, InclusionVisitor, NULL);
Ted Kremenek16b55a72010-01-26 19:31:51 +00001053}
1054
1055/******************************************************************************/
Ted Kremenek3bed5272010-03-03 06:37:58 +00001056/* Linkage testing. */
1057/******************************************************************************/
1058
1059static enum CXChildVisitResult PrintLinkage(CXCursor cursor, CXCursor p,
1060 CXClientData d) {
1061 const char *linkage = 0;
1062
1063 if (clang_isInvalid(clang_getCursorKind(cursor)))
1064 return CXChildVisit_Recurse;
1065
1066 switch (clang_getCursorLinkage(cursor)) {
1067 case CXLinkage_Invalid: break;
Douglas Gregorc2a2b3c2010-03-04 19:36:27 +00001068 case CXLinkage_NoLinkage: linkage = "NoLinkage"; break;
1069 case CXLinkage_Internal: linkage = "Internal"; break;
1070 case CXLinkage_UniqueExternal: linkage = "UniqueExternal"; break;
1071 case CXLinkage_External: linkage = "External"; break;
Ted Kremenek3bed5272010-03-03 06:37:58 +00001072 }
1073
1074 if (linkage) {
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001075 PrintCursor(cursor, NULL);
Ted Kremenek3bed5272010-03-03 06:37:58 +00001076 printf("linkage=%s\n", linkage);
1077 }
1078
1079 return CXChildVisit_Recurse;
1080}
1081
1082/******************************************************************************/
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001083/* Typekind testing. */
1084/******************************************************************************/
1085
1086static enum CXChildVisitResult PrintTypeKind(CXCursor cursor, CXCursor p,
1087 CXClientData d) {
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001088 if (!clang_isInvalid(clang_getCursorKind(cursor))) {
1089 CXType T = clang_getCursorType(cursor);
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001090 CXString S = clang_getTypeKindSpelling(T.kind);
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001091 PrintCursor(cursor, NULL);
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001092 printf(" typekind=%s", clang_getCString(S));
Douglas Gregore72fb6f2011-01-27 16:27:11 +00001093 if (clang_isConstQualifiedType(T))
1094 printf(" const");
1095 if (clang_isVolatileQualifiedType(T))
1096 printf(" volatile");
1097 if (clang_isRestrictQualifiedType(T))
1098 printf(" restrict");
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001099 clang_disposeString(S);
Benjamin Kramere1403d22010-06-22 09:29:44 +00001100 /* Print the canonical type if it is different. */
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001101 {
1102 CXType CT = clang_getCanonicalType(T);
1103 if (!clang_equalTypes(T, CT)) {
1104 CXString CS = clang_getTypeKindSpelling(CT.kind);
1105 printf(" [canonical=%s]", clang_getCString(CS));
1106 clang_disposeString(CS);
1107 }
1108 }
Benjamin Kramere1403d22010-06-22 09:29:44 +00001109 /* Print the return type if it exists. */
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001110 {
Ted Kremenek9a140842010-06-21 20:48:56 +00001111 CXType RT = clang_getCursorResultType(cursor);
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001112 if (RT.kind != CXType_Invalid) {
1113 CXString RS = clang_getTypeKindSpelling(RT.kind);
1114 printf(" [result=%s]", clang_getCString(RS));
1115 clang_disposeString(RS);
1116 }
1117 }
Argyrios Kyrtzidisd98ef9a2012-04-11 19:32:19 +00001118 /* Print the argument types if they exist. */
1119 {
1120 int numArgs = clang_Cursor_getNumArguments(cursor);
1121 if (numArgs != -1 && numArgs != 0) {
Argyrios Kyrtzidis47f11652012-04-11 19:54:09 +00001122 int i;
Argyrios Kyrtzidisd98ef9a2012-04-11 19:32:19 +00001123 printf(" [args=");
Argyrios Kyrtzidis47f11652012-04-11 19:54:09 +00001124 for (i = 0; i < numArgs; ++i) {
Argyrios Kyrtzidisd98ef9a2012-04-11 19:32:19 +00001125 CXType T = clang_getCursorType(clang_Cursor_getArgument(cursor, i));
1126 if (T.kind != CXType_Invalid) {
1127 CXString S = clang_getTypeKindSpelling(T.kind);
1128 printf(" %s", clang_getCString(S));
1129 clang_disposeString(S);
1130 }
1131 }
1132 printf("]");
1133 }
1134 }
Ted Kremenek3ce9e7d2010-07-30 00:14:11 +00001135 /* Print if this is a non-POD type. */
1136 printf(" [isPOD=%d]", clang_isPODType(T));
Ted Kremenek04c3cf32010-06-21 20:15:39 +00001137
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001138 printf("\n");
1139 }
1140 return CXChildVisit_Recurse;
1141}
1142
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00001143/******************************************************************************/
1144/* Bitwidth testing. */
1145/******************************************************************************/
1146
1147static enum CXChildVisitResult PrintBitWidth(CXCursor cursor, CXCursor p,
1148 CXClientData d) {
NAKAMURA Takumi02c1b862012-12-04 15:32:03 +00001149 int Bitwidth;
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00001150 if (clang_getCursorKind(cursor) != CXCursor_FieldDecl)
1151 return CXChildVisit_Recurse;
1152
NAKAMURA Takumi02c1b862012-12-04 15:32:03 +00001153 Bitwidth = clang_getFieldDeclBitWidth(cursor);
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00001154 if (Bitwidth >= 0) {
1155 PrintCursor(cursor, NULL);
1156 printf(" bitwidth=%d\n", Bitwidth);
1157 }
1158
1159 return CXChildVisit_Recurse;
1160}
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001161
1162/******************************************************************************/
Ted Kremenek7d405622010-01-12 23:34:26 +00001163/* Loading ASTs/source. */
1164/******************************************************************************/
1165
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001166static int perform_test_load(CXIndex Idx, CXTranslationUnit TU,
Ted Kremenek98271562010-01-12 18:53:15 +00001167 const char *filter, const char *prefix,
Ted Kremenekce2ae882010-01-26 17:59:48 +00001168 CXCursorVisitor Visitor,
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001169 PostVisitTU PV,
1170 const char *CommentSchemaFile) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001171
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +00001172 if (prefix)
Ted Kremeneke68fff62010-02-17 00:41:32 +00001173 FileCheckPrefix = prefix;
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001174
1175 if (Visitor) {
1176 enum CXCursorKind K = CXCursor_NotImplemented;
1177 enum CXCursorKind *ck = &K;
1178 VisitorData Data;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001179
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001180 /* Perform some simple filtering. */
1181 if (!strcmp(filter, "all") || !strcmp(filter, "local")) ck = NULL;
Douglas Gregor358559d2010-10-02 22:49:11 +00001182 else if (!strcmp(filter, "all-display") ||
1183 !strcmp(filter, "local-display")) {
1184 ck = NULL;
1185 want_display_name = 1;
1186 }
Daniel Dunbarb1ffee62010-02-10 20:42:40 +00001187 else if (!strcmp(filter, "none")) K = (enum CXCursorKind) ~0;
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001188 else if (!strcmp(filter, "category")) K = CXCursor_ObjCCategoryDecl;
1189 else if (!strcmp(filter, "interface")) K = CXCursor_ObjCInterfaceDecl;
1190 else if (!strcmp(filter, "protocol")) K = CXCursor_ObjCProtocolDecl;
1191 else if (!strcmp(filter, "function")) K = CXCursor_FunctionDecl;
1192 else if (!strcmp(filter, "typedef")) K = CXCursor_TypedefDecl;
1193 else if (!strcmp(filter, "scan-function")) Visitor = FunctionScanVisitor;
1194 else {
1195 fprintf(stderr, "Unknown filter for -test-load-tu: %s\n", filter);
1196 return 1;
1197 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001198
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001199 Data.TU = TU;
1200 Data.Filter = ck;
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001201 Data.ValidationData.CommentSchemaFile = CommentSchemaFile;
1202#ifdef CLANG_HAVE_LIBXML
1203 Data.ValidationData.RNGParser = NULL;
1204 Data.ValidationData.Schema = NULL;
1205#endif
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001206 clang_visitChildren(clang_getTranslationUnitCursor(TU), Visitor, &Data);
Ted Kremenek0d435192009-11-17 18:13:31 +00001207 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001208
Ted Kremenekce2ae882010-01-26 17:59:48 +00001209 if (PV)
1210 PV(TU);
Ted Kremeneke3ee02a2010-01-26 17:55:33 +00001211
Douglas Gregora88084b2010-02-18 18:08:43 +00001212 PrintDiagnostics(TU);
Argyrios Kyrtzidis16ac8be2011-11-13 23:39:14 +00001213 if (checkForErrors(TU) != 0) {
1214 clang_disposeTranslationUnit(TU);
1215 return -1;
1216 }
1217
Ted Kremenek0d435192009-11-17 18:13:31 +00001218 clang_disposeTranslationUnit(TU);
1219 return 0;
1220}
1221
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +00001222int perform_test_load_tu(const char *file, const char *filter,
Ted Kremenekce2ae882010-01-26 17:59:48 +00001223 const char *prefix, CXCursorVisitor Visitor,
1224 PostVisitTU PV) {
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001225 CXIndex Idx;
1226 CXTranslationUnit TU;
Ted Kremenek020a0952010-02-11 07:41:25 +00001227 int result;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001228 Idx = clang_createIndex(/* excludeDeclsFromPCH */
Douglas Gregor0a812cf2010-02-18 23:07:20 +00001229 !strcmp(filter, "local") ? 1 : 0,
1230 /* displayDiagnosics=*/1);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001231
Ted Kremenek020a0952010-02-11 07:41:25 +00001232 if (!CreateTranslationUnit(Idx, file, &TU)) {
1233 clang_disposeIndex(Idx);
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001234 return 1;
Ted Kremenek020a0952010-02-11 07:41:25 +00001235 }
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001236
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001237 result = perform_test_load(Idx, TU, filter, prefix, Visitor, PV, NULL);
Ted Kremenek020a0952010-02-11 07:41:25 +00001238 clang_disposeIndex(Idx);
1239 return result;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001240}
1241
Ted Kremenekce2ae882010-01-26 17:59:48 +00001242int perform_test_load_source(int argc, const char **argv,
1243 const char *filter, CXCursorVisitor Visitor,
1244 PostVisitTU PV) {
Daniel Dunbarada487d2009-12-01 02:03:10 +00001245 CXIndex Idx;
1246 CXTranslationUnit TU;
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001247 const char *CommentSchemaFile;
Douglas Gregor4db64a42010-01-23 00:14:00 +00001248 struct CXUnsavedFile *unsaved_files = 0;
1249 int num_unsaved_files = 0;
1250 int result;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001251
Daniel Dunbarada487d2009-12-01 02:03:10 +00001252 Idx = clang_createIndex(/* excludeDeclsFromPCH */
Douglas Gregor358559d2010-10-02 22:49:11 +00001253 (!strcmp(filter, "local") ||
1254 !strcmp(filter, "local-display"))? 1 : 0,
Douglas Gregor4814fb52011-02-03 23:41:12 +00001255 /* displayDiagnosics=*/0);
Daniel Dunbarada487d2009-12-01 02:03:10 +00001256
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001257 if ((CommentSchemaFile = parse_comments_schema(argc, argv))) {
1258 argc--;
1259 argv++;
1260 }
1261
Ted Kremenek020a0952010-02-11 07:41:25 +00001262 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
1263 clang_disposeIndex(Idx);
Douglas Gregor4db64a42010-01-23 00:14:00 +00001264 return -1;
Ted Kremenek020a0952010-02-11 07:41:25 +00001265 }
Douglas Gregor4db64a42010-01-23 00:14:00 +00001266
Douglas Gregordca8ee82011-05-06 16:33:08 +00001267 TU = clang_parseTranslationUnit(Idx, 0,
1268 argv + num_unsaved_files,
1269 argc - num_unsaved_files,
1270 unsaved_files, num_unsaved_files,
1271 getDefaultParsingOptions());
Daniel Dunbarada487d2009-12-01 02:03:10 +00001272 if (!TU) {
1273 fprintf(stderr, "Unable to load translation unit!\n");
Douglas Gregorabc563f2010-07-19 21:46:24 +00001274 free_remapped_files(unsaved_files, num_unsaved_files);
Ted Kremenek020a0952010-02-11 07:41:25 +00001275 clang_disposeIndex(Idx);
Daniel Dunbarada487d2009-12-01 02:03:10 +00001276 return 1;
1277 }
1278
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001279 result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV,
1280 CommentSchemaFile);
Douglas Gregor4db64a42010-01-23 00:14:00 +00001281 free_remapped_files(unsaved_files, num_unsaved_files);
Ted Kremenek020a0952010-02-11 07:41:25 +00001282 clang_disposeIndex(Idx);
Douglas Gregor4db64a42010-01-23 00:14:00 +00001283 return result;
Daniel Dunbarada487d2009-12-01 02:03:10 +00001284}
1285
Douglas Gregorabc563f2010-07-19 21:46:24 +00001286int perform_test_reparse_source(int argc, const char **argv, int trials,
1287 const char *filter, CXCursorVisitor Visitor,
1288 PostVisitTU PV) {
Douglas Gregorabc563f2010-07-19 21:46:24 +00001289 CXIndex Idx;
1290 CXTranslationUnit TU;
1291 struct CXUnsavedFile *unsaved_files = 0;
1292 int num_unsaved_files = 0;
1293 int result;
1294 int trial;
Argyrios Kyrtzidis40098e82011-09-12 18:09:31 +00001295 int remap_after_trial = 0;
1296 char *endptr = 0;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001297
1298 Idx = clang_createIndex(/* excludeDeclsFromPCH */
1299 !strcmp(filter, "local") ? 1 : 0,
Douglas Gregor1aa27302011-01-27 18:02:58 +00001300 /* displayDiagnosics=*/0);
Douglas Gregorabc563f2010-07-19 21:46:24 +00001301
Douglas Gregorabc563f2010-07-19 21:46:24 +00001302 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
1303 clang_disposeIndex(Idx);
1304 return -1;
1305 }
1306
Daniel Dunbarc8a61802010-08-18 23:09:16 +00001307 /* Load the initial translation unit -- we do this without honoring remapped
1308 * files, so that we have a way to test results after changing the source. */
Douglas Gregor44c181a2010-07-23 00:33:23 +00001309 TU = clang_parseTranslationUnit(Idx, 0,
1310 argv + num_unsaved_files,
1311 argc - num_unsaved_files,
Daniel Dunbarc8a61802010-08-18 23:09:16 +00001312 0, 0, getDefaultParsingOptions());
Douglas Gregorabc563f2010-07-19 21:46:24 +00001313 if (!TU) {
1314 fprintf(stderr, "Unable to load translation unit!\n");
1315 free_remapped_files(unsaved_files, num_unsaved_files);
1316 clang_disposeIndex(Idx);
1317 return 1;
1318 }
1319
Argyrios Kyrtzidisbda536d2011-11-13 22:08:33 +00001320 if (checkForErrors(TU) != 0)
1321 return -1;
1322
Argyrios Kyrtzidis40098e82011-09-12 18:09:31 +00001323 if (getenv("CINDEXTEST_REMAP_AFTER_TRIAL")) {
1324 remap_after_trial =
1325 strtol(getenv("CINDEXTEST_REMAP_AFTER_TRIAL"), &endptr, 10);
1326 }
1327
Douglas Gregorabc563f2010-07-19 21:46:24 +00001328 for (trial = 0; trial < trials; ++trial) {
Argyrios Kyrtzidis40098e82011-09-12 18:09:31 +00001329 if (clang_reparseTranslationUnit(TU,
1330 trial >= remap_after_trial ? num_unsaved_files : 0,
1331 trial >= remap_after_trial ? unsaved_files : 0,
Douglas Gregore1e13bf2010-08-11 15:58:42 +00001332 clang_defaultReparseOptions(TU))) {
Daniel Dunbarc8a61802010-08-18 23:09:16 +00001333 fprintf(stderr, "Unable to reparse translation unit!\n");
Douglas Gregorabc563f2010-07-19 21:46:24 +00001334 clang_disposeTranslationUnit(TU);
1335 free_remapped_files(unsaved_files, num_unsaved_files);
1336 clang_disposeIndex(Idx);
1337 return -1;
1338 }
Argyrios Kyrtzidisbda536d2011-11-13 22:08:33 +00001339
1340 if (checkForErrors(TU) != 0)
1341 return -1;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001342 }
1343
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001344 result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV, NULL);
Argyrios Kyrtzidisbda536d2011-11-13 22:08:33 +00001345
Douglas Gregorabc563f2010-07-19 21:46:24 +00001346 free_remapped_files(unsaved_files, num_unsaved_files);
1347 clang_disposeIndex(Idx);
1348 return result;
1349}
1350
Ted Kremenek0d435192009-11-17 18:13:31 +00001351/******************************************************************************/
Ted Kremenek1c6da172009-11-17 19:37:36 +00001352/* Logic for testing clang_getCursor(). */
1353/******************************************************************************/
1354
Douglas Gregordd3e5542011-05-04 00:14:37 +00001355static void print_cursor_file_scan(CXTranslationUnit TU, CXCursor cursor,
Ted Kremenek1c6da172009-11-17 19:37:36 +00001356 unsigned start_line, unsigned start_col,
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001357 unsigned end_line, unsigned end_col,
1358 const char *prefix) {
Ted Kremenek9096a202010-01-07 01:17:12 +00001359 printf("// %s: ", FileCheckPrefix);
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001360 if (prefix)
1361 printf("-%s", prefix);
Daniel Dunbar51b058c2010-02-14 08:32:24 +00001362 PrintExtent(stdout, start_line, start_col, end_line, end_col);
1363 printf(" ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001364 PrintCursor(cursor, NULL);
Ted Kremenek1c6da172009-11-17 19:37:36 +00001365 printf("\n");
1366}
1367
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001368static int perform_file_scan(const char *ast_file, const char *source_file,
1369 const char *prefix) {
Ted Kremenek1c6da172009-11-17 19:37:36 +00001370 CXIndex Idx;
1371 CXTranslationUnit TU;
1372 FILE *fp;
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001373 CXCursor prevCursor = clang_getNullCursor();
Douglas Gregorb9790342010-01-22 21:44:22 +00001374 CXFile file;
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001375 unsigned line = 1, col = 1;
Daniel Dunbar8f0bf812010-02-14 08:32:51 +00001376 unsigned start_line = 1, start_col = 1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001377
Douglas Gregor0a812cf2010-02-18 23:07:20 +00001378 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
1379 /* displayDiagnosics=*/1))) {
Ted Kremenek1c6da172009-11-17 19:37:36 +00001380 fprintf(stderr, "Could not create Index\n");
1381 return 1;
1382 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001383
Ted Kremenek1c6da172009-11-17 19:37:36 +00001384 if (!CreateTranslationUnit(Idx, ast_file, &TU))
1385 return 1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001386
Ted Kremenek1c6da172009-11-17 19:37:36 +00001387 if ((fp = fopen(source_file, "r")) == NULL) {
1388 fprintf(stderr, "Could not open '%s'\n", source_file);
1389 return 1;
1390 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001391
Douglas Gregorb9790342010-01-22 21:44:22 +00001392 file = clang_getFile(TU, source_file);
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001393 for (;;) {
1394 CXCursor cursor;
1395 int c = fgetc(fp);
Benjamin Kramera9933b92009-11-17 20:51:40 +00001396
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001397 if (c == '\n') {
1398 ++line;
1399 col = 1;
1400 } else
1401 ++col;
1402
1403 /* Check the cursor at this position, and dump the previous one if we have
1404 * found something new.
1405 */
1406 cursor = clang_getCursor(TU, clang_getLocation(TU, file, line, col));
1407 if ((c == EOF || !clang_equalCursors(cursor, prevCursor)) &&
1408 prevCursor.kind != CXCursor_InvalidFile) {
Douglas Gregordd3e5542011-05-04 00:14:37 +00001409 print_cursor_file_scan(TU, prevCursor, start_line, start_col,
Daniel Dunbard52864b2010-02-14 10:02:57 +00001410 line, col, prefix);
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001411 start_line = line;
1412 start_col = col;
Benjamin Kramera9933b92009-11-17 20:51:40 +00001413 }
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001414 if (c == EOF)
1415 break;
Benjamin Kramera9933b92009-11-17 20:51:40 +00001416
Daniel Dunbar2389eff2010-02-14 08:32:32 +00001417 prevCursor = cursor;
Ted Kremenek1c6da172009-11-17 19:37:36 +00001418 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001419
Ted Kremenek1c6da172009-11-17 19:37:36 +00001420 fclose(fp);
Douglas Gregor4f5e21e2011-01-31 22:04:05 +00001421 clang_disposeTranslationUnit(TU);
1422 clang_disposeIndex(Idx);
Ted Kremenek1c6da172009-11-17 19:37:36 +00001423 return 0;
1424}
1425
1426/******************************************************************************/
Douglas Gregor32be4a52010-10-11 21:37:58 +00001427/* Logic for testing clang code completion. */
Ted Kremenek0d435192009-11-17 18:13:31 +00001428/******************************************************************************/
1429
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001430/* Parse file:line:column from the input string. Returns 0 on success, non-zero
1431 on failure. If successful, the pointer *filename will contain newly-allocated
1432 memory (that will be owned by the caller) to store the file name. */
Ted Kremeneke68fff62010-02-17 00:41:32 +00001433int parse_file_line_column(const char *input, char **filename, unsigned *line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001434 unsigned *column, unsigned *second_line,
1435 unsigned *second_column) {
Douglas Gregor88d23952009-11-09 18:19:57 +00001436 /* Find the second colon. */
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001437 const char *last_colon = strrchr(input, ':');
1438 unsigned values[4], i;
1439 unsigned num_values = (second_line && second_column)? 4 : 2;
1440
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001441 char *endptr = 0;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001442 if (!last_colon || last_colon == input) {
1443 if (num_values == 4)
1444 fprintf(stderr, "could not parse filename:line:column:line:column in "
1445 "'%s'\n", input);
1446 else
1447 fprintf(stderr, "could not parse filename:line:column in '%s'\n", input);
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001448 return 1;
1449 }
1450
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001451 for (i = 0; i != num_values; ++i) {
1452 const char *prev_colon;
1453
1454 /* Parse the next line or column. */
1455 values[num_values - i - 1] = strtol(last_colon + 1, &endptr, 10);
1456 if (*endptr != 0 && *endptr != ':') {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001457 fprintf(stderr, "could not parse %s in '%s'\n",
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001458 (i % 2 ? "column" : "line"), input);
1459 return 1;
1460 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001461
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001462 if (i + 1 == num_values)
1463 break;
1464
1465 /* Find the previous colon. */
1466 prev_colon = last_colon - 1;
1467 while (prev_colon != input && *prev_colon != ':')
1468 --prev_colon;
1469 if (prev_colon == input) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001470 fprintf(stderr, "could not parse %s in '%s'\n",
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001471 (i % 2 == 0? "column" : "line"), input);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001472 return 1;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001473 }
1474
1475 last_colon = prev_colon;
Douglas Gregor88d23952009-11-09 18:19:57 +00001476 }
1477
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001478 *line = values[0];
1479 *column = values[1];
Ted Kremeneke68fff62010-02-17 00:41:32 +00001480
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001481 if (second_line && second_column) {
1482 *second_line = values[2];
1483 *second_column = values[3];
1484 }
1485
Douglas Gregor88d23952009-11-09 18:19:57 +00001486 /* Copy the file name. */
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001487 *filename = (char*)malloc(last_colon - input + 1);
1488 memcpy(*filename, input, last_colon - input);
1489 (*filename)[last_colon - input] = 0;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001490 return 0;
1491}
1492
1493const char *
1494clang_getCompletionChunkKindSpelling(enum CXCompletionChunkKind Kind) {
1495 switch (Kind) {
1496 case CXCompletionChunk_Optional: return "Optional";
1497 case CXCompletionChunk_TypedText: return "TypedText";
1498 case CXCompletionChunk_Text: return "Text";
1499 case CXCompletionChunk_Placeholder: return "Placeholder";
1500 case CXCompletionChunk_Informative: return "Informative";
1501 case CXCompletionChunk_CurrentParameter: return "CurrentParameter";
1502 case CXCompletionChunk_LeftParen: return "LeftParen";
1503 case CXCompletionChunk_RightParen: return "RightParen";
1504 case CXCompletionChunk_LeftBracket: return "LeftBracket";
1505 case CXCompletionChunk_RightBracket: return "RightBracket";
1506 case CXCompletionChunk_LeftBrace: return "LeftBrace";
1507 case CXCompletionChunk_RightBrace: return "RightBrace";
1508 case CXCompletionChunk_LeftAngle: return "LeftAngle";
1509 case CXCompletionChunk_RightAngle: return "RightAngle";
1510 case CXCompletionChunk_Comma: return "Comma";
Douglas Gregorff5ce6e2009-12-18 18:53:37 +00001511 case CXCompletionChunk_ResultType: return "ResultType";
Douglas Gregor01dfea02010-01-10 23:08:15 +00001512 case CXCompletionChunk_Colon: return "Colon";
1513 case CXCompletionChunk_SemiColon: return "SemiColon";
1514 case CXCompletionChunk_Equal: return "Equal";
1515 case CXCompletionChunk_HorizontalSpace: return "HorizontalSpace";
1516 case CXCompletionChunk_VerticalSpace: return "VerticalSpace";
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001517 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001518
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001519 return "Unknown";
1520}
1521
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00001522static int checkForErrors(CXTranslationUnit TU) {
1523 unsigned Num, i;
1524 CXDiagnostic Diag;
1525 CXString DiagStr;
1526
1527 if (!getenv("CINDEXTEST_FAILONERROR"))
1528 return 0;
1529
1530 Num = clang_getNumDiagnostics(TU);
1531 for (i = 0; i != Num; ++i) {
1532 Diag = clang_getDiagnostic(TU, i);
1533 if (clang_getDiagnosticSeverity(Diag) >= CXDiagnostic_Error) {
1534 DiagStr = clang_formatDiagnostic(Diag,
1535 clang_defaultDiagnosticDisplayOptions());
1536 fprintf(stderr, "%s\n", clang_getCString(DiagStr));
1537 clang_disposeString(DiagStr);
1538 clang_disposeDiagnostic(Diag);
1539 return -1;
1540 }
1541 clang_disposeDiagnostic(Diag);
1542 }
1543
1544 return 0;
1545}
1546
Douglas Gregor3ac73852009-11-09 16:04:45 +00001547void print_completion_string(CXCompletionString completion_string, FILE *file) {
Daniel Dunbarf8297f12009-11-07 18:34:24 +00001548 int I, N;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001549
Douglas Gregor3ac73852009-11-09 16:04:45 +00001550 N = clang_getNumCompletionChunks(completion_string);
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001551 for (I = 0; I != N; ++I) {
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +00001552 CXString text;
1553 const char *cstr;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001554 enum CXCompletionChunkKind Kind
Douglas Gregor3ac73852009-11-09 16:04:45 +00001555 = clang_getCompletionChunkKind(completion_string, I);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001556
Douglas Gregor3ac73852009-11-09 16:04:45 +00001557 if (Kind == CXCompletionChunk_Optional) {
1558 fprintf(file, "{Optional ");
1559 print_completion_string(
Ted Kremeneke68fff62010-02-17 00:41:32 +00001560 clang_getCompletionChunkCompletionString(completion_string, I),
Douglas Gregor3ac73852009-11-09 16:04:45 +00001561 file);
1562 fprintf(file, "}");
1563 continue;
Douglas Gregor5a9c0bc2010-10-08 20:39:29 +00001564 }
1565
1566 if (Kind == CXCompletionChunk_VerticalSpace) {
1567 fprintf(file, "{VerticalSpace }");
1568 continue;
Douglas Gregor3ac73852009-11-09 16:04:45 +00001569 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001570
Douglas Gregord5a20892009-11-09 17:05:28 +00001571 text = clang_getCompletionChunkText(completion_string, I);
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +00001572 cstr = clang_getCString(text);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001573 fprintf(file, "{%s %s}",
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001574 clang_getCompletionChunkKindSpelling(Kind),
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +00001575 cstr ? cstr : "");
1576 clang_disposeString(text);
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001577 }
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +00001578
Douglas Gregor3ac73852009-11-09 16:04:45 +00001579}
1580
1581void print_completion_result(CXCompletionResult *completion_result,
1582 CXClientData client_data) {
1583 FILE *file = (FILE *)client_data;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001584 CXString ks = clang_getCursorKindSpelling(completion_result->CursorKind);
Erik Verbruggen6164ea12011-10-14 15:31:08 +00001585 unsigned annotationCount;
Douglas Gregorba103062012-03-27 23:34:16 +00001586 enum CXCursorKind ParentKind;
1587 CXString ParentName;
Dmitri Gribenkod99ef532012-07-02 17:35:10 +00001588 CXString BriefComment;
1589 const char *BriefCommentCString;
Douglas Gregorba103062012-03-27 23:34:16 +00001590
Ted Kremeneke68fff62010-02-17 00:41:32 +00001591 fprintf(file, "%s:", clang_getCString(ks));
1592 clang_disposeString(ks);
1593
Douglas Gregor3ac73852009-11-09 16:04:45 +00001594 print_completion_string(completion_result->CompletionString, file);
Douglas Gregor58ddb602010-08-23 23:00:57 +00001595 fprintf(file, " (%u)",
Douglas Gregor12e13132010-05-26 22:00:08 +00001596 clang_getCompletionPriority(completion_result->CompletionString));
Douglas Gregor58ddb602010-08-23 23:00:57 +00001597 switch (clang_getCompletionAvailability(completion_result->CompletionString)){
1598 case CXAvailability_Available:
1599 break;
1600
1601 case CXAvailability_Deprecated:
1602 fprintf(file, " (deprecated)");
1603 break;
1604
1605 case CXAvailability_NotAvailable:
1606 fprintf(file, " (unavailable)");
1607 break;
Erik Verbruggend1205962011-10-06 07:27:49 +00001608
1609 case CXAvailability_NotAccessible:
1610 fprintf(file, " (inaccessible)");
1611 break;
Douglas Gregor58ddb602010-08-23 23:00:57 +00001612 }
Erik Verbruggen6164ea12011-10-14 15:31:08 +00001613
1614 annotationCount = clang_getCompletionNumAnnotations(
1615 completion_result->CompletionString);
1616 if (annotationCount) {
1617 unsigned i;
1618 fprintf(file, " (");
1619 for (i = 0; i < annotationCount; ++i) {
1620 if (i != 0)
1621 fprintf(file, ", ");
1622 fprintf(file, "\"%s\"",
1623 clang_getCString(clang_getCompletionAnnotation(
1624 completion_result->CompletionString, i)));
1625 }
1626 fprintf(file, ")");
1627 }
1628
Douglas Gregorba103062012-03-27 23:34:16 +00001629 if (!getenv("CINDEXTEST_NO_COMPLETION_PARENTS")) {
1630 ParentName = clang_getCompletionParent(completion_result->CompletionString,
1631 &ParentKind);
1632 if (ParentKind != CXCursor_NotImplemented) {
1633 CXString KindSpelling = clang_getCursorKindSpelling(ParentKind);
1634 fprintf(file, " (parent: %s '%s')",
1635 clang_getCString(KindSpelling),
1636 clang_getCString(ParentName));
1637 clang_disposeString(KindSpelling);
1638 }
1639 clang_disposeString(ParentName);
1640 }
Dmitri Gribenkod99ef532012-07-02 17:35:10 +00001641
1642 BriefComment = clang_getCompletionBriefComment(
1643 completion_result->CompletionString);
1644 BriefCommentCString = clang_getCString(BriefComment);
1645 if (BriefCommentCString && *BriefCommentCString != '\0') {
1646 fprintf(file, "(brief comment: %s)", BriefCommentCString);
1647 }
1648 clang_disposeString(BriefComment);
Douglas Gregorba103062012-03-27 23:34:16 +00001649
Douglas Gregor58ddb602010-08-23 23:00:57 +00001650 fprintf(file, "\n");
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001651}
1652
Douglas Gregor3da626b2011-07-07 16:03:39 +00001653void print_completion_contexts(unsigned long long contexts, FILE *file) {
1654 fprintf(file, "Completion contexts:\n");
1655 if (contexts == CXCompletionContext_Unknown) {
1656 fprintf(file, "Unknown\n");
1657 }
1658 if (contexts & CXCompletionContext_AnyType) {
1659 fprintf(file, "Any type\n");
1660 }
1661 if (contexts & CXCompletionContext_AnyValue) {
1662 fprintf(file, "Any value\n");
1663 }
1664 if (contexts & CXCompletionContext_ObjCObjectValue) {
1665 fprintf(file, "Objective-C object value\n");
1666 }
1667 if (contexts & CXCompletionContext_ObjCSelectorValue) {
1668 fprintf(file, "Objective-C selector value\n");
1669 }
1670 if (contexts & CXCompletionContext_CXXClassTypeValue) {
1671 fprintf(file, "C++ class type value\n");
1672 }
1673 if (contexts & CXCompletionContext_DotMemberAccess) {
1674 fprintf(file, "Dot member access\n");
1675 }
1676 if (contexts & CXCompletionContext_ArrowMemberAccess) {
1677 fprintf(file, "Arrow member access\n");
1678 }
1679 if (contexts & CXCompletionContext_ObjCPropertyAccess) {
1680 fprintf(file, "Objective-C property access\n");
1681 }
1682 if (contexts & CXCompletionContext_EnumTag) {
1683 fprintf(file, "Enum tag\n");
1684 }
1685 if (contexts & CXCompletionContext_UnionTag) {
1686 fprintf(file, "Union tag\n");
1687 }
1688 if (contexts & CXCompletionContext_StructTag) {
1689 fprintf(file, "Struct tag\n");
1690 }
1691 if (contexts & CXCompletionContext_ClassTag) {
1692 fprintf(file, "Class name\n");
1693 }
1694 if (contexts & CXCompletionContext_Namespace) {
1695 fprintf(file, "Namespace or namespace alias\n");
1696 }
1697 if (contexts & CXCompletionContext_NestedNameSpecifier) {
1698 fprintf(file, "Nested name specifier\n");
1699 }
1700 if (contexts & CXCompletionContext_ObjCInterface) {
1701 fprintf(file, "Objective-C interface\n");
1702 }
1703 if (contexts & CXCompletionContext_ObjCProtocol) {
1704 fprintf(file, "Objective-C protocol\n");
1705 }
1706 if (contexts & CXCompletionContext_ObjCCategory) {
1707 fprintf(file, "Objective-C category\n");
1708 }
1709 if (contexts & CXCompletionContext_ObjCInstanceMessage) {
1710 fprintf(file, "Objective-C instance method\n");
1711 }
1712 if (contexts & CXCompletionContext_ObjCClassMessage) {
1713 fprintf(file, "Objective-C class method\n");
1714 }
1715 if (contexts & CXCompletionContext_ObjCSelectorName) {
1716 fprintf(file, "Objective-C selector name\n");
1717 }
1718 if (contexts & CXCompletionContext_MacroName) {
1719 fprintf(file, "Macro name\n");
1720 }
1721 if (contexts & CXCompletionContext_NaturalLanguage) {
1722 fprintf(file, "Natural language\n");
1723 }
1724}
1725
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001726int my_stricmp(const char *s1, const char *s2) {
1727 while (*s1 && *s2) {
NAKAMURA Takumi6d555212011-03-09 03:02:28 +00001728 int c1 = tolower((unsigned char)*s1), c2 = tolower((unsigned char)*s2);
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001729 if (c1 < c2)
1730 return -1;
1731 else if (c1 > c2)
1732 return 1;
1733
1734 ++s1;
1735 ++s2;
1736 }
1737
1738 if (*s1)
1739 return 1;
1740 else if (*s2)
1741 return -1;
1742 return 0;
1743}
1744
Douglas Gregor1982c182010-07-12 18:38:41 +00001745int perform_code_completion(int argc, const char **argv, int timing_only) {
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001746 const char *input = argv[1];
1747 char *filename = 0;
1748 unsigned line;
1749 unsigned column;
Daniel Dunbarf8297f12009-11-07 18:34:24 +00001750 CXIndex CIdx;
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001751 int errorCode;
Douglas Gregor735df882009-12-02 09:21:34 +00001752 struct CXUnsavedFile *unsaved_files = 0;
1753 int num_unsaved_files = 0;
Douglas Gregorec6762c2009-12-18 16:20:58 +00001754 CXCodeCompleteResults *results = 0;
Dawn Perchik25d9b002010-09-30 22:26:05 +00001755 CXTranslationUnit TU = 0;
Douglas Gregor32be4a52010-10-11 21:37:58 +00001756 unsigned I, Repeats = 1;
1757 unsigned completionOptions = clang_defaultCodeCompleteOptions();
1758
1759 if (getenv("CINDEXTEST_CODE_COMPLETE_PATTERNS"))
1760 completionOptions |= CXCodeComplete_IncludeCodePatterns;
Dmitri Gribenkod99ef532012-07-02 17:35:10 +00001761 if (getenv("CINDEXTEST_COMPLETION_BRIEF_COMMENTS"))
1762 completionOptions |= CXCodeComplete_IncludeBriefComments;
Douglas Gregordf95a132010-08-09 20:45:32 +00001763
Douglas Gregor1982c182010-07-12 18:38:41 +00001764 if (timing_only)
1765 input += strlen("-code-completion-timing=");
1766 else
1767 input += strlen("-code-completion-at=");
1768
Ted Kremeneke68fff62010-02-17 00:41:32 +00001769 if ((errorCode = parse_file_line_column(input, &filename, &line, &column,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001770 0, 0)))
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001771 return errorCode;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001772
Douglas Gregor735df882009-12-02 09:21:34 +00001773 if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files))
1774 return -1;
1775
Douglas Gregor32be4a52010-10-11 21:37:58 +00001776 CIdx = clang_createIndex(0, 0);
1777
1778 if (getenv("CINDEXTEST_EDITING"))
1779 Repeats = 5;
1780
1781 TU = clang_parseTranslationUnit(CIdx, 0,
1782 argv + num_unsaved_files + 2,
1783 argc - num_unsaved_files - 2,
1784 0, 0, getDefaultParsingOptions());
1785 if (!TU) {
1786 fprintf(stderr, "Unable to load translation unit!\n");
1787 return 1;
1788 }
Douglas Gregor08bb4c62010-11-15 23:00:34 +00001789
1790 if (clang_reparseTranslationUnit(TU, 0, 0, clang_defaultReparseOptions(TU))) {
1791 fprintf(stderr, "Unable to reparse translation init!\n");
1792 return 1;
1793 }
Douglas Gregor32be4a52010-10-11 21:37:58 +00001794
1795 for (I = 0; I != Repeats; ++I) {
1796 results = clang_codeCompleteAt(TU, filename, line, column,
1797 unsaved_files, num_unsaved_files,
1798 completionOptions);
1799 if (!results) {
1800 fprintf(stderr, "Unable to perform code completion!\n");
Daniel Dunbar2de41c92010-08-19 23:44:06 +00001801 return 1;
1802 }
Douglas Gregor32be4a52010-10-11 21:37:58 +00001803 if (I != Repeats-1)
1804 clang_disposeCodeCompleteResults(results);
1805 }
Douglas Gregor936ea3b2010-01-28 00:56:43 +00001806
Douglas Gregorec6762c2009-12-18 16:20:58 +00001807 if (results) {
Douglas Gregore081a612011-07-21 01:05:26 +00001808 unsigned i, n = results->NumResults, containerIsIncomplete = 0;
Douglas Gregor3da626b2011-07-07 16:03:39 +00001809 unsigned long long contexts;
Douglas Gregore081a612011-07-21 01:05:26 +00001810 enum CXCursorKind containerKind;
Douglas Gregor0a47d692011-07-26 15:24:30 +00001811 CXString objCSelector;
1812 const char *selectorString;
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001813 if (!timing_only) {
1814 /* Sort the code-completion results based on the typed text. */
1815 clang_sortCodeCompletionResults(results->Results, results->NumResults);
1816
Douglas Gregor1982c182010-07-12 18:38:41 +00001817 for (i = 0; i != n; ++i)
1818 print_completion_result(results->Results + i, stdout);
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001819 }
Douglas Gregora88084b2010-02-18 18:08:43 +00001820 n = clang_codeCompleteGetNumDiagnostics(results);
1821 for (i = 0; i != n; ++i) {
1822 CXDiagnostic diag = clang_codeCompleteGetDiagnostic(results, i);
1823 PrintDiagnostic(diag);
1824 clang_disposeDiagnostic(diag);
1825 }
Douglas Gregor3da626b2011-07-07 16:03:39 +00001826
1827 contexts = clang_codeCompleteGetContexts(results);
1828 print_completion_contexts(contexts, stdout);
1829
Douglas Gregor0a47d692011-07-26 15:24:30 +00001830 containerKind = clang_codeCompleteGetContainerKind(results,
1831 &containerIsIncomplete);
Douglas Gregore081a612011-07-21 01:05:26 +00001832
1833 if (containerKind != CXCursor_InvalidCode) {
1834 /* We have found a container */
1835 CXString containerUSR, containerKindSpelling;
1836 containerKindSpelling = clang_getCursorKindSpelling(containerKind);
1837 printf("Container Kind: %s\n", clang_getCString(containerKindSpelling));
1838 clang_disposeString(containerKindSpelling);
1839
1840 if (containerIsIncomplete) {
1841 printf("Container is incomplete\n");
1842 }
1843 else {
1844 printf("Container is complete\n");
1845 }
1846
1847 containerUSR = clang_codeCompleteGetContainerUSR(results);
1848 printf("Container USR: %s\n", clang_getCString(containerUSR));
1849 clang_disposeString(containerUSR);
1850 }
1851
Douglas Gregor0a47d692011-07-26 15:24:30 +00001852 objCSelector = clang_codeCompleteGetObjCSelector(results);
1853 selectorString = clang_getCString(objCSelector);
1854 if (selectorString && strlen(selectorString) > 0) {
1855 printf("Objective-C selector: %s\n", selectorString);
1856 }
1857 clang_disposeString(objCSelector);
1858
Douglas Gregorec6762c2009-12-18 16:20:58 +00001859 clang_disposeCodeCompleteResults(results);
1860 }
Douglas Gregordf95a132010-08-09 20:45:32 +00001861 clang_disposeTranslationUnit(TU);
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001862 clang_disposeIndex(CIdx);
1863 free(filename);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001864
Douglas Gregor735df882009-12-02 09:21:34 +00001865 free_remapped_files(unsaved_files, num_unsaved_files);
1866
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001867 return 0;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001868}
1869
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001870typedef struct {
1871 char *filename;
1872 unsigned line;
1873 unsigned column;
1874} CursorSourceLocation;
1875
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00001876static int inspect_cursor_at(int argc, const char **argv) {
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001877 CXIndex CIdx;
1878 int errorCode;
1879 struct CXUnsavedFile *unsaved_files = 0;
1880 int num_unsaved_files = 0;
1881 CXTranslationUnit TU;
1882 CXCursor Cursor;
1883 CursorSourceLocation *Locations = 0;
1884 unsigned NumLocations = 0, Loc;
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001885 unsigned Repeats = 1;
Douglas Gregorbdc4b362010-11-30 06:04:54 +00001886 unsigned I;
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001887
Ted Kremeneke68fff62010-02-17 00:41:32 +00001888 /* Count the number of locations. */
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001889 while (strstr(argv[NumLocations+1], "-cursor-at=") == argv[NumLocations+1])
1890 ++NumLocations;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001891
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001892 /* Parse the locations. */
1893 assert(NumLocations > 0 && "Unable to count locations?");
1894 Locations = (CursorSourceLocation *)malloc(
1895 NumLocations * sizeof(CursorSourceLocation));
1896 for (Loc = 0; Loc < NumLocations; ++Loc) {
1897 const char *input = argv[Loc + 1] + strlen("-cursor-at=");
Ted Kremeneke68fff62010-02-17 00:41:32 +00001898 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
1899 &Locations[Loc].line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001900 &Locations[Loc].column, 0, 0)))
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001901 return errorCode;
1902 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001903
1904 if (parse_remapped_files(argc, argv, NumLocations + 1, &unsaved_files,
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001905 &num_unsaved_files))
1906 return -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001907
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001908 if (getenv("CINDEXTEST_EDITING"))
1909 Repeats = 5;
1910
1911 /* Parse the translation unit. When we're testing clang_getCursor() after
1912 reparsing, don't remap unsaved files until the second parse. */
1913 CIdx = clang_createIndex(1, 1);
1914 TU = clang_parseTranslationUnit(CIdx, argv[argc - 1],
1915 argv + num_unsaved_files + 1 + NumLocations,
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001916 argc - num_unsaved_files - 2 - NumLocations,
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001917 unsaved_files,
1918 Repeats > 1? 0 : num_unsaved_files,
1919 getDefaultParsingOptions());
1920
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001921 if (!TU) {
1922 fprintf(stderr, "unable to parse input\n");
1923 return -1;
1924 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001925
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00001926 if (checkForErrors(TU) != 0)
1927 return -1;
1928
Douglas Gregorbdc4b362010-11-30 06:04:54 +00001929 for (I = 0; I != Repeats; ++I) {
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001930 if (Repeats > 1 &&
1931 clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
1932 clang_defaultReparseOptions(TU))) {
1933 clang_disposeTranslationUnit(TU);
1934 return 1;
1935 }
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00001936
1937 if (checkForErrors(TU) != 0)
1938 return -1;
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001939
1940 for (Loc = 0; Loc < NumLocations; ++Loc) {
1941 CXFile file = clang_getFile(TU, Locations[Loc].filename);
1942 if (!file)
1943 continue;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001944
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001945 Cursor = clang_getCursor(TU,
1946 clang_getLocation(TU, file, Locations[Loc].line,
1947 Locations[Loc].column));
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00001948
1949 if (checkForErrors(TU) != 0)
1950 return -1;
1951
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001952 if (I + 1 == Repeats) {
Douglas Gregor8fa0a802011-08-04 20:04:59 +00001953 CXCompletionString completionString = clang_getCursorCompletionString(
1954 Cursor);
Argyrios Kyrtzidis66373dd2012-03-30 00:19:05 +00001955 CXSourceLocation CursorLoc = clang_getCursorLocation(Cursor);
1956 CXString Spelling;
1957 const char *cspell;
1958 unsigned line, column;
1959 clang_getSpellingLocation(CursorLoc, 0, &line, &column, 0);
1960 printf("%d:%d ", line, column);
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00001961 PrintCursor(Cursor, NULL);
Argyrios Kyrtzidis66373dd2012-03-30 00:19:05 +00001962 PrintCursorExtent(Cursor);
1963 Spelling = clang_getCursorSpelling(Cursor);
1964 cspell = clang_getCString(Spelling);
Argyrios Kyrtzidisba1da142012-03-30 20:58:35 +00001965 if (cspell && strlen(cspell) != 0) {
1966 unsigned pieceIndex;
Argyrios Kyrtzidisba1da142012-03-30 20:58:35 +00001967 printf(" Spelling=%s (", cspell);
1968 for (pieceIndex = 0; ; ++pieceIndex) {
Benjamin Kramer6c235bc2012-03-31 10:23:28 +00001969 CXSourceRange range =
1970 clang_Cursor_getSpellingNameRange(Cursor, pieceIndex, 0);
Argyrios Kyrtzidisba1da142012-03-30 20:58:35 +00001971 if (clang_Range_isNull(range))
1972 break;
1973 PrintRange(range, 0);
1974 }
1975 printf(")");
1976 }
Argyrios Kyrtzidis66373dd2012-03-30 00:19:05 +00001977 clang_disposeString(Spelling);
Argyrios Kyrtzidis34ebe1e2012-03-30 22:15:48 +00001978 if (clang_Cursor_getObjCSelectorIndex(Cursor) != -1)
1979 printf(" Selector index=%d",clang_Cursor_getObjCSelectorIndex(Cursor));
Argyrios Kyrtzidisf39a7ae2012-07-02 23:54:36 +00001980 if (clang_Cursor_isDynamicCall(Cursor))
1981 printf(" Dynamic-call");
Argyrios Kyrtzidise4a990f2012-11-01 02:01:34 +00001982 if (Cursor.kind == CXCursor_ObjCMessageExpr) {
1983 CXType T = clang_Cursor_getReceiverType(Cursor);
1984 CXString S = clang_getTypeKindSpelling(T.kind);
1985 printf(" Receiver-type=%s", clang_getCString(S));
1986 clang_disposeString(S);
1987 }
Argyrios Kyrtzidisf39a7ae2012-07-02 23:54:36 +00001988
Argyrios Kyrtzidis5d04b1a2012-10-05 00:22:37 +00001989 {
1990 CXModule mod = clang_Cursor_getModule(Cursor);
1991 CXString name;
1992 unsigned i, numHeaders;
1993 if (mod) {
1994 name = clang_Module_getFullName(mod);
1995 numHeaders = clang_Module_getNumTopLevelHeaders(mod);
1996 printf(" ModuleName=%s Headers(%d):",
1997 clang_getCString(name), numHeaders);
1998 clang_disposeString(name);
1999 for (i = 0; i < numHeaders; ++i) {
2000 CXFile file = clang_Module_getTopLevelHeader(mod, i);
2001 CXString filename = clang_getFileName(file);
2002 printf("\n%s", clang_getCString(filename));
2003 clang_disposeString(filename);
2004 }
2005 }
2006 }
2007
Douglas Gregor8fa0a802011-08-04 20:04:59 +00002008 if (completionString != NULL) {
2009 printf("\nCompletion string: ");
2010 print_completion_string(completionString, stdout);
2011 }
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002012 printf("\n");
2013 free(Locations[Loc].filename);
2014 }
2015 }
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002016 }
Douglas Gregor8e08dec2010-11-30 05:52:55 +00002017
Douglas Gregora88084b2010-02-18 18:08:43 +00002018 PrintDiagnostics(TU);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00002019 clang_disposeTranslationUnit(TU);
2020 clang_disposeIndex(CIdx);
2021 free(Locations);
2022 free_remapped_files(unsaved_files, num_unsaved_files);
2023 return 0;
2024}
2025
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002026static enum CXVisitorResult findFileRefsVisit(void *context,
2027 CXCursor cursor, CXSourceRange range) {
2028 if (clang_Range_isNull(range))
2029 return CXVisit_Continue;
2030
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002031 PrintCursor(cursor, NULL);
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002032 PrintRange(range, "");
2033 printf("\n");
2034 return CXVisit_Continue;
2035}
2036
2037static int find_file_refs_at(int argc, const char **argv) {
2038 CXIndex CIdx;
2039 int errorCode;
2040 struct CXUnsavedFile *unsaved_files = 0;
2041 int num_unsaved_files = 0;
2042 CXTranslationUnit TU;
2043 CXCursor Cursor;
2044 CursorSourceLocation *Locations = 0;
2045 unsigned NumLocations = 0, Loc;
2046 unsigned Repeats = 1;
2047 unsigned I;
2048
2049 /* Count the number of locations. */
2050 while (strstr(argv[NumLocations+1], "-file-refs-at=") == argv[NumLocations+1])
2051 ++NumLocations;
2052
2053 /* Parse the locations. */
2054 assert(NumLocations > 0 && "Unable to count locations?");
2055 Locations = (CursorSourceLocation *)malloc(
2056 NumLocations * sizeof(CursorSourceLocation));
2057 for (Loc = 0; Loc < NumLocations; ++Loc) {
2058 const char *input = argv[Loc + 1] + strlen("-file-refs-at=");
2059 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
2060 &Locations[Loc].line,
2061 &Locations[Loc].column, 0, 0)))
2062 return errorCode;
2063 }
2064
2065 if (parse_remapped_files(argc, argv, NumLocations + 1, &unsaved_files,
2066 &num_unsaved_files))
2067 return -1;
2068
2069 if (getenv("CINDEXTEST_EDITING"))
2070 Repeats = 5;
2071
2072 /* Parse the translation unit. When we're testing clang_getCursor() after
2073 reparsing, don't remap unsaved files until the second parse. */
2074 CIdx = clang_createIndex(1, 1);
2075 TU = clang_parseTranslationUnit(CIdx, argv[argc - 1],
2076 argv + num_unsaved_files + 1 + NumLocations,
2077 argc - num_unsaved_files - 2 - NumLocations,
2078 unsaved_files,
2079 Repeats > 1? 0 : num_unsaved_files,
2080 getDefaultParsingOptions());
2081
2082 if (!TU) {
2083 fprintf(stderr, "unable to parse input\n");
2084 return -1;
2085 }
2086
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002087 if (checkForErrors(TU) != 0)
2088 return -1;
2089
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002090 for (I = 0; I != Repeats; ++I) {
2091 if (Repeats > 1 &&
2092 clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
2093 clang_defaultReparseOptions(TU))) {
2094 clang_disposeTranslationUnit(TU);
2095 return 1;
2096 }
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002097
2098 if (checkForErrors(TU) != 0)
2099 return -1;
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002100
2101 for (Loc = 0; Loc < NumLocations; ++Loc) {
2102 CXFile file = clang_getFile(TU, Locations[Loc].filename);
2103 if (!file)
2104 continue;
2105
2106 Cursor = clang_getCursor(TU,
2107 clang_getLocation(TU, file, Locations[Loc].line,
2108 Locations[Loc].column));
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002109
2110 if (checkForErrors(TU) != 0)
2111 return -1;
2112
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002113 if (I + 1 == Repeats) {
Erik Verbruggen26fc0f92011-10-06 11:38:08 +00002114 CXCursorAndRangeVisitor visitor = { 0, findFileRefsVisit };
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002115 PrintCursor(Cursor, NULL);
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002116 printf("\n");
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002117 clang_findReferencesInFile(Cursor, file, visitor);
2118 free(Locations[Loc].filename);
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002119
2120 if (checkForErrors(TU) != 0)
2121 return -1;
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00002122 }
2123 }
2124 }
2125
2126 PrintDiagnostics(TU);
2127 clang_disposeTranslationUnit(TU);
2128 clang_disposeIndex(CIdx);
2129 free(Locations);
2130 free_remapped_files(unsaved_files, num_unsaved_files);
2131 return 0;
2132}
2133
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002134#define MAX_IMPORTED_ASTFILES 200
2135
2136typedef struct {
2137 char **filenames;
2138 unsigned num_files;
2139} ImportedASTFilesData;
2140
2141static ImportedASTFilesData *importedASTs_create() {
2142 ImportedASTFilesData *p;
2143 p = malloc(sizeof(ImportedASTFilesData));
2144 p->filenames = malloc(MAX_IMPORTED_ASTFILES * sizeof(const char *));
2145 p->num_files = 0;
2146 return p;
2147}
2148
2149static void importedASTs_dispose(ImportedASTFilesData *p) {
2150 unsigned i;
2151 if (!p)
2152 return;
2153
2154 for (i = 0; i < p->num_files; ++i)
2155 free(p->filenames[i]);
2156 free(p->filenames);
2157 free(p);
2158}
2159
2160static void importedASTS_insert(ImportedASTFilesData *p, const char *file) {
2161 unsigned i;
2162 assert(p && file);
2163 for (i = 0; i < p->num_files; ++i)
2164 if (strcmp(file, p->filenames[i]) == 0)
2165 return;
2166 assert(p->num_files + 1 < MAX_IMPORTED_ASTFILES);
2167 p->filenames[p->num_files++] = strdup(file);
2168}
2169
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002170typedef struct {
2171 const char *check_prefix;
2172 int first_check_printed;
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002173 int fail_for_error;
Argyrios Kyrtzidis6f3ce972011-11-28 04:56:00 +00002174 int abort;
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002175 const char *main_filename;
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002176 ImportedASTFilesData *importedASTs;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002177} IndexData;
2178
2179static void printCheck(IndexData *data) {
2180 if (data->check_prefix) {
2181 if (data->first_check_printed) {
2182 printf("// %s-NEXT: ", data->check_prefix);
2183 } else {
2184 printf("// %s : ", data->check_prefix);
2185 data->first_check_printed = 1;
2186 }
2187 }
2188}
2189
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002190static void printCXIndexFile(CXIdxClientFile file) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002191 CXString filename = clang_getFileName((CXFile)file);
2192 printf("%s", clang_getCString(filename));
2193 clang_disposeString(filename);
2194}
2195
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002196static void printCXIndexLoc(CXIdxLoc loc, CXClientData client_data) {
2197 IndexData *index_data;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002198 CXString filename;
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002199 const char *cname;
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002200 CXIdxClientFile file;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002201 unsigned line, column;
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002202 int isMainFile;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002203
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002204 index_data = (IndexData *)client_data;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002205 clang_indexLoc_getFileLocation(loc, &file, 0, &line, &column, 0);
2206 if (line == 0) {
Argyrios Kyrtzidis8003fd62012-10-11 19:00:44 +00002207 printf("<invalid>");
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002208 return;
2209 }
Argyrios Kyrtzidisc2be04e2011-12-13 18:47:35 +00002210 if (!file) {
2211 printf("<no idxfile>");
2212 return;
2213 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002214 filename = clang_getFileName((CXFile)file);
2215 cname = clang_getCString(filename);
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002216 if (strcmp(cname, index_data->main_filename) == 0)
2217 isMainFile = 1;
2218 else
2219 isMainFile = 0;
2220 clang_disposeString(filename);
2221
2222 if (!isMainFile) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002223 printCXIndexFile(file);
2224 printf(":");
2225 }
2226 printf("%d:%d", line, column);
2227}
2228
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002229static unsigned digitCount(unsigned val) {
2230 unsigned c = 1;
2231 while (1) {
2232 if (val < 10)
2233 return c;
2234 ++c;
2235 val /= 10;
2236 }
2237}
2238
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002239static CXIdxClientContainer makeClientContainer(const CXIdxEntityInfo *info,
2240 CXIdxLoc loc) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002241 const char *name;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002242 char *newStr;
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002243 CXIdxClientFile file;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002244 unsigned line, column;
2245
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002246 name = info->name;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002247 if (!name)
2248 name = "<anon-tag>";
2249
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002250 clang_indexLoc_getFileLocation(loc, &file, 0, &line, &column, 0);
Argyrios Kyrtzidisf89bc052011-10-20 17:21:46 +00002251 /* FIXME: free these.*/
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002252 newStr = (char *)malloc(strlen(name) +
2253 digitCount(line) + digitCount(column) + 3);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002254 sprintf(newStr, "%s:%d:%d", name, line, column);
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002255 return (CXIdxClientContainer)newStr;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002256}
2257
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002258static void printCXIndexContainer(const CXIdxContainerInfo *info) {
2259 CXIdxClientContainer container;
2260 container = clang_index_getClientContainer(info);
Argyrios Kyrtzidis3e340a62011-11-16 02:35:05 +00002261 if (!container)
2262 printf("[<<NULL>>]");
2263 else
2264 printf("[%s]", (const char *)container);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002265}
2266
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002267static const char *getEntityKindString(CXIdxEntityKind kind) {
2268 switch (kind) {
2269 case CXIdxEntity_Unexposed: return "<<UNEXPOSED>>";
2270 case CXIdxEntity_Typedef: return "typedef";
2271 case CXIdxEntity_Function: return "function";
2272 case CXIdxEntity_Variable: return "variable";
2273 case CXIdxEntity_Field: return "field";
2274 case CXIdxEntity_EnumConstant: return "enumerator";
2275 case CXIdxEntity_ObjCClass: return "objc-class";
2276 case CXIdxEntity_ObjCProtocol: return "objc-protocol";
2277 case CXIdxEntity_ObjCCategory: return "objc-category";
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002278 case CXIdxEntity_ObjCInstanceMethod: return "objc-instance-method";
2279 case CXIdxEntity_ObjCClassMethod: return "objc-class-method";
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002280 case CXIdxEntity_ObjCProperty: return "objc-property";
2281 case CXIdxEntity_ObjCIvar: return "objc-ivar";
2282 case CXIdxEntity_Enum: return "enum";
2283 case CXIdxEntity_Struct: return "struct";
2284 case CXIdxEntity_Union: return "union";
2285 case CXIdxEntity_CXXClass: return "c++-class";
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002286 case CXIdxEntity_CXXNamespace: return "namespace";
2287 case CXIdxEntity_CXXNamespaceAlias: return "namespace-alias";
2288 case CXIdxEntity_CXXStaticVariable: return "c++-static-var";
2289 case CXIdxEntity_CXXStaticMethod: return "c++-static-method";
2290 case CXIdxEntity_CXXInstanceMethod: return "c++-instance-method";
2291 case CXIdxEntity_CXXConstructor: return "constructor";
2292 case CXIdxEntity_CXXDestructor: return "destructor";
2293 case CXIdxEntity_CXXConversionFunction: return "conversion-func";
2294 case CXIdxEntity_CXXTypeAlias: return "type-alias";
David Blaikie35adca02012-08-31 21:55:26 +00002295 case CXIdxEntity_CXXInterface: return "c++-__interface";
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002296 }
2297 assert(0 && "Garbage entity kind");
2298 return 0;
2299}
2300
2301static const char *getEntityTemplateKindString(CXIdxEntityCXXTemplateKind kind) {
2302 switch (kind) {
2303 case CXIdxEntity_NonTemplate: return "";
2304 case CXIdxEntity_Template: return "-template";
2305 case CXIdxEntity_TemplatePartialSpecialization:
2306 return "-template-partial-spec";
2307 case CXIdxEntity_TemplateSpecialization: return "-template-spec";
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002308 }
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002309 assert(0 && "Garbage entity kind");
2310 return 0;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002311}
2312
Argyrios Kyrtzidis838d3c22011-12-07 20:44:12 +00002313static const char *getEntityLanguageString(CXIdxEntityLanguage kind) {
2314 switch (kind) {
2315 case CXIdxEntityLang_None: return "<none>";
2316 case CXIdxEntityLang_C: return "C";
2317 case CXIdxEntityLang_ObjC: return "ObjC";
2318 case CXIdxEntityLang_CXX: return "C++";
2319 }
2320 assert(0 && "Garbage language kind");
2321 return 0;
2322}
2323
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002324static void printEntityInfo(const char *cb,
2325 CXClientData client_data,
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002326 const CXIdxEntityInfo *info) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002327 const char *name;
2328 IndexData *index_data;
Argyrios Kyrtzidis643d3ce2011-12-15 00:05:00 +00002329 unsigned i;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002330 index_data = (IndexData *)client_data;
2331 printCheck(index_data);
2332
Argyrios Kyrtzidisc6b4a502011-11-16 02:34:59 +00002333 if (!info) {
2334 printf("%s: <<NULL>>", cb);
2335 return;
2336 }
2337
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002338 name = info->name;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002339 if (!name)
2340 name = "<anon-tag>";
2341
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002342 printf("%s: kind: %s%s", cb, getEntityKindString(info->kind),
2343 getEntityTemplateKindString(info->templateKind));
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002344 printf(" | name: %s", name);
2345 printf(" | USR: %s", info->USR);
Argyrios Kyrtzidisc2be04e2011-12-13 18:47:35 +00002346 printf(" | lang: %s", getEntityLanguageString(info->lang));
Argyrios Kyrtzidis643d3ce2011-12-15 00:05:00 +00002347
2348 for (i = 0; i != info->numAttributes; ++i) {
2349 const CXIdxAttrInfo *Attr = info->attributes[i];
2350 printf(" <attribute>: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002351 PrintCursor(Attr->cursor, NULL);
Argyrios Kyrtzidis643d3ce2011-12-15 00:05:00 +00002352 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002353}
2354
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002355static void printBaseClassInfo(CXClientData client_data,
2356 const CXIdxBaseClassInfo *info) {
2357 printEntityInfo(" <base>", client_data, info->base);
2358 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002359 PrintCursor(info->cursor, NULL);
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002360 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002361 printCXIndexLoc(info->loc, client_data);
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002362}
2363
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002364static void printProtocolList(const CXIdxObjCProtocolRefListInfo *ProtoInfo,
2365 CXClientData client_data) {
2366 unsigned i;
2367 for (i = 0; i < ProtoInfo->numProtocols; ++i) {
2368 printEntityInfo(" <protocol>", client_data,
2369 ProtoInfo->protocols[i]->protocol);
2370 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002371 PrintCursor(ProtoInfo->protocols[i]->cursor, NULL);
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002372 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002373 printCXIndexLoc(ProtoInfo->protocols[i]->loc, client_data);
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002374 printf("\n");
2375 }
2376}
2377
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002378static void index_diagnostic(CXClientData client_data,
Argyrios Kyrtzidis996e6e52011-12-01 02:42:50 +00002379 CXDiagnosticSet diagSet, void *reserved) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002380 CXString str;
2381 const char *cstr;
Argyrios Kyrtzidis996e6e52011-12-01 02:42:50 +00002382 unsigned numDiags, i;
2383 CXDiagnostic diag;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002384 IndexData *index_data;
2385 index_data = (IndexData *)client_data;
2386 printCheck(index_data);
2387
Argyrios Kyrtzidis996e6e52011-12-01 02:42:50 +00002388 numDiags = clang_getNumDiagnosticsInSet(diagSet);
2389 for (i = 0; i != numDiags; ++i) {
2390 diag = clang_getDiagnosticInSet(diagSet, i);
2391 str = clang_formatDiagnostic(diag, clang_defaultDiagnosticDisplayOptions());
2392 cstr = clang_getCString(str);
2393 printf("[diagnostic]: %s\n", cstr);
2394 clang_disposeString(str);
2395
2396 if (getenv("CINDEXTEST_FAILONERROR") &&
2397 clang_getDiagnosticSeverity(diag) >= CXDiagnostic_Error) {
2398 index_data->fail_for_error = 1;
2399 }
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002400 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002401}
2402
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002403static CXIdxClientFile index_enteredMainFile(CXClientData client_data,
2404 CXFile file, void *reserved) {
2405 IndexData *index_data;
Argyrios Kyrtzidis62d7fea2012-03-15 18:48:52 +00002406 CXString filename;
2407
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002408 index_data = (IndexData *)client_data;
2409 printCheck(index_data);
2410
Argyrios Kyrtzidis62d7fea2012-03-15 18:48:52 +00002411 filename = clang_getFileName(file);
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002412 index_data->main_filename = clang_getCString(filename);
2413 clang_disposeString(filename);
2414
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002415 printf("[enteredMainFile]: ");
2416 printCXIndexFile((CXIdxClientFile)file);
2417 printf("\n");
2418
2419 return (CXIdxClientFile)file;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002420}
2421
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002422static CXIdxClientFile index_ppIncludedFile(CXClientData client_data,
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002423 const CXIdxIncludedFileInfo *info) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002424 IndexData *index_data;
2425 index_data = (IndexData *)client_data;
2426 printCheck(index_data);
2427
Argyrios Kyrtzidis66042b32011-11-05 04:03:35 +00002428 printf("[ppIncludedFile]: ");
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002429 printCXIndexFile((CXIdxClientFile)info->file);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002430 printf(" | name: \"%s\"", info->filename);
2431 printf(" | hash loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002432 printCXIndexLoc(info->hashLoc, client_data);
Argyrios Kyrtzidis8d7a24e2012-10-18 00:17:05 +00002433 printf(" | isImport: %d | isAngled: %d | isModule: %d\n",
2434 info->isImport, info->isAngled, info->isModuleImport);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002435
2436 return (CXIdxClientFile)info->file;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002437}
2438
Argyrios Kyrtzidis2c3e05c2012-10-02 16:10:38 +00002439static CXIdxClientFile index_importedASTFile(CXClientData client_data,
2440 const CXIdxImportedASTFileInfo *info) {
2441 IndexData *index_data;
2442 index_data = (IndexData *)client_data;
2443 printCheck(index_data);
2444
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002445 if (index_data->importedASTs) {
2446 CXString filename = clang_getFileName(info->file);
2447 importedASTS_insert(index_data->importedASTs, clang_getCString(filename));
2448 clang_disposeString(filename);
2449 }
2450
Argyrios Kyrtzidis2c3e05c2012-10-02 16:10:38 +00002451 printf("[importedASTFile]: ");
2452 printCXIndexFile((CXIdxClientFile)info->file);
Argyrios Kyrtzidis134d1e8a2012-10-05 00:22:40 +00002453 if (info->module) {
2454 CXString name = clang_Module_getFullName(info->module);
2455 printf(" | loc: ");
2456 printCXIndexLoc(info->loc, client_data);
2457 printf(" | name: \"%s\"", clang_getCString(name));
2458 printf(" | isImplicit: %d\n", info->isImplicit);
2459 clang_disposeString(name);
Argyrios Kyrtzidis900ab952012-10-11 16:05:00 +00002460 } else {
NAKAMURA Takumi3c5527e2012-10-12 14:25:52 +00002461 /* PCH file, the rest are not relevant. */
Argyrios Kyrtzidis900ab952012-10-11 16:05:00 +00002462 printf("\n");
Argyrios Kyrtzidis134d1e8a2012-10-05 00:22:40 +00002463 }
Argyrios Kyrtzidis2c3e05c2012-10-02 16:10:38 +00002464
2465 return (CXIdxClientFile)info->file;
2466}
2467
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002468static CXIdxClientContainer index_startedTranslationUnit(CXClientData client_data,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002469 void *reserved) {
2470 IndexData *index_data;
2471 index_data = (IndexData *)client_data;
2472 printCheck(index_data);
2473
Argyrios Kyrtzidis66042b32011-11-05 04:03:35 +00002474 printf("[startedTranslationUnit]\n");
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002475 return (CXIdxClientContainer)"TU";
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002476}
2477
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002478static void index_indexDeclaration(CXClientData client_data,
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002479 const CXIdxDeclInfo *info) {
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002480 IndexData *index_data;
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002481 const CXIdxObjCCategoryDeclInfo *CatInfo;
2482 const CXIdxObjCInterfaceDeclInfo *InterInfo;
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002483 const CXIdxObjCProtocolRefListInfo *ProtoInfo;
Argyrios Kyrtzidis792db262012-02-28 17:50:33 +00002484 const CXIdxObjCPropertyDeclInfo *PropInfo;
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002485 const CXIdxCXXClassDeclInfo *CXXClassInfo;
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002486 unsigned i;
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002487 index_data = (IndexData *)client_data;
2488
2489 printEntityInfo("[indexDeclaration]", client_data, info->entityInfo);
2490 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002491 PrintCursor(info->cursor, NULL);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002492 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002493 printCXIndexLoc(info->loc, client_data);
Argyrios Kyrtzidisb1febb62011-12-07 20:44:19 +00002494 printf(" | semantic-container: ");
2495 printCXIndexContainer(info->semanticContainer);
2496 printf(" | lexical-container: ");
2497 printCXIndexContainer(info->lexicalContainer);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002498 printf(" | isRedecl: %d", info->isRedeclaration);
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002499 printf(" | isDef: %d", info->isDefinition);
Argyrios Kyrtzidis838eb7e2012-12-06 19:41:16 +00002500 if (info->flags & CXIdxDeclFlag_Skipped) {
2501 assert(!info->isContainer);
2502 printf(" | isContainer: skipped");
2503 } else {
2504 printf(" | isContainer: %d", info->isContainer);
2505 }
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002506 printf(" | isImplicit: %d\n", info->isImplicit);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002507
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002508 for (i = 0; i != info->numAttributes; ++i) {
NAKAMURA Takumi87adb0b2011-11-18 00:51:03 +00002509 const CXIdxAttrInfo *Attr = info->attributes[i];
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002510 printf(" <attribute>: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002511 PrintCursor(Attr->cursor, NULL);
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002512 printf("\n");
2513 }
2514
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002515 if (clang_index_isEntityObjCContainerKind(info->entityInfo->kind)) {
2516 const char *kindName = 0;
2517 CXIdxObjCContainerKind K = clang_index_getObjCContainerDeclInfo(info)->kind;
2518 switch (K) {
2519 case CXIdxObjCContainer_ForwardRef:
2520 kindName = "forward-ref"; break;
2521 case CXIdxObjCContainer_Interface:
2522 kindName = "interface"; break;
2523 case CXIdxObjCContainer_Implementation:
2524 kindName = "implementation"; break;
2525 }
2526 printCheck(index_data);
2527 printf(" <ObjCContainerInfo>: kind: %s\n", kindName);
2528 }
2529
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002530 if ((CatInfo = clang_index_getObjCCategoryDeclInfo(info))) {
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002531 printEntityInfo(" <ObjCCategoryInfo>: class", client_data,
2532 CatInfo->objcClass);
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002533 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002534 PrintCursor(CatInfo->classCursor, NULL);
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002535 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002536 printCXIndexLoc(CatInfo->classLoc, client_data);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002537 printf("\n");
2538 }
2539
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002540 if ((InterInfo = clang_index_getObjCInterfaceDeclInfo(info))) {
2541 if (InterInfo->superInfo) {
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002542 printBaseClassInfo(client_data, InterInfo->superInfo);
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002543 printf("\n");
2544 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002545 }
2546
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002547 if ((ProtoInfo = clang_index_getObjCProtocolRefListInfo(info))) {
2548 printProtocolList(ProtoInfo, client_data);
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002549 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002550
Argyrios Kyrtzidis792db262012-02-28 17:50:33 +00002551 if ((PropInfo = clang_index_getObjCPropertyDeclInfo(info))) {
2552 if (PropInfo->getter) {
2553 printEntityInfo(" <getter>", client_data, PropInfo->getter);
2554 printf("\n");
2555 }
2556 if (PropInfo->setter) {
2557 printEntityInfo(" <setter>", client_data, PropInfo->setter);
2558 printf("\n");
2559 }
2560 }
2561
Argyrios Kyrtzidisb526a872011-12-07 20:44:15 +00002562 if ((CXXClassInfo = clang_index_getCXXClassDeclInfo(info))) {
2563 for (i = 0; i != CXXClassInfo->numBases; ++i) {
2564 printBaseClassInfo(client_data, CXXClassInfo->bases[i]);
2565 printf("\n");
2566 }
2567 }
2568
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002569 if (info->declAsContainer)
2570 clang_index_setClientContainer(info->declAsContainer,
2571 makeClientContainer(info->entityInfo, info->loc));
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002572}
2573
2574static void index_indexEntityReference(CXClientData client_data,
Argyrios Kyrtzidis6ec43ad2011-11-12 02:16:30 +00002575 const CXIdxEntityRefInfo *info) {
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002576 printEntityInfo("[indexEntityReference]", client_data, info->referencedEntity);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002577 printf(" | cursor: ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00002578 PrintCursor(info->cursor, NULL);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002579 printf(" | loc: ");
Argyrios Kyrtzidis13c20a72012-03-15 18:07:22 +00002580 printCXIndexLoc(info->loc, client_data);
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002581 printEntityInfo(" | <parent>:", client_data, info->parentEntity);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002582 printf(" | container: ");
2583 printCXIndexContainer(info->container);
Argyrios Kyrtzidisc71d5542011-11-14 22:39:19 +00002584 printf(" | refkind: ");
Argyrios Kyrtzidisaca19be2011-10-18 15:50:50 +00002585 switch (info->kind) {
2586 case CXIdxEntityRef_Direct: printf("direct"); break;
Argyrios Kyrtzidisb395c632011-11-18 00:26:51 +00002587 case CXIdxEntityRef_Implicit: printf("implicit"); break;
Argyrios Kyrtzidisaca19be2011-10-18 15:50:50 +00002588 }
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002589 printf("\n");
2590}
2591
Argyrios Kyrtzidis6f3ce972011-11-28 04:56:00 +00002592static int index_abortQuery(CXClientData client_data, void *reserved) {
2593 IndexData *index_data;
2594 index_data = (IndexData *)client_data;
2595 return index_data->abort;
2596}
2597
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002598static IndexerCallbacks IndexCB = {
Argyrios Kyrtzidis6f3ce972011-11-28 04:56:00 +00002599 index_abortQuery,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002600 index_diagnostic,
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002601 index_enteredMainFile,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002602 index_ppIncludedFile,
Argyrios Kyrtzidis2c3e05c2012-10-02 16:10:38 +00002603 index_importedASTFile,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002604 index_startedTranslationUnit,
Argyrios Kyrtzidisdd93c592011-11-11 00:23:36 +00002605 index_indexDeclaration,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002606 index_indexEntityReference
2607};
2608
Argyrios Kyrtzidis22490742012-01-14 00:11:49 +00002609static unsigned getIndexOptions(void) {
2610 unsigned index_opts;
2611 index_opts = 0;
2612 if (getenv("CINDEXTEST_SUPPRESSREFS"))
2613 index_opts |= CXIndexOpt_SuppressRedundantRefs;
2614 if (getenv("CINDEXTEST_INDEXLOCALSYMBOLS"))
2615 index_opts |= CXIndexOpt_IndexFunctionLocalSymbols;
Argyrios Kyrtzidis838eb7e2012-12-06 19:41:16 +00002616 if (!getenv("CINDEXTEST_DISABLE_SKIPPARSEDBODIES"))
2617 index_opts |= CXIndexOpt_SkipParsedBodiesInSession;
Argyrios Kyrtzidis22490742012-01-14 00:11:49 +00002618
2619 return index_opts;
2620}
2621
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002622static int index_compile_args(int num_args, const char **args,
2623 CXIndexAction idxAction,
2624 ImportedASTFilesData *importedASTs,
2625 const char *check_prefix) {
2626 IndexData index_data;
2627 unsigned index_opts;
2628 int result;
2629
2630 if (num_args == 0) {
2631 fprintf(stderr, "no compiler arguments\n");
2632 return -1;
2633 }
2634
2635 index_data.check_prefix = check_prefix;
2636 index_data.first_check_printed = 0;
2637 index_data.fail_for_error = 0;
2638 index_data.abort = 0;
2639 index_data.main_filename = "";
2640 index_data.importedASTs = importedASTs;
2641
2642 index_opts = getIndexOptions();
2643 result = clang_indexSourceFile(idxAction, &index_data,
2644 &IndexCB,sizeof(IndexCB), index_opts,
2645 0, args, num_args, 0, 0, 0,
2646 getDefaultParsingOptions());
2647 if (index_data.fail_for_error)
2648 result = -1;
2649
2650 return result;
2651}
2652
2653static int index_ast_file(const char *ast_file,
2654 CXIndex Idx,
2655 CXIndexAction idxAction,
2656 ImportedASTFilesData *importedASTs,
2657 const char *check_prefix) {
2658 CXTranslationUnit TU;
2659 IndexData index_data;
2660 unsigned index_opts;
2661 int result;
2662
2663 if (!CreateTranslationUnit(Idx, ast_file, &TU))
2664 return -1;
2665
2666 index_data.check_prefix = check_prefix;
2667 index_data.first_check_printed = 0;
2668 index_data.fail_for_error = 0;
2669 index_data.abort = 0;
2670 index_data.main_filename = "";
2671 index_data.importedASTs = importedASTs;
2672
2673 index_opts = getIndexOptions();
2674 result = clang_indexTranslationUnit(idxAction, &index_data,
2675 &IndexCB,sizeof(IndexCB),
2676 index_opts, TU);
2677 if (index_data.fail_for_error)
2678 result = -1;
2679
2680 clang_disposeTranslationUnit(TU);
2681 return result;
2682}
2683
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002684static int index_file(int argc, const char **argv, int full) {
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002685 const char *check_prefix;
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002686 CXIndex Idx;
2687 CXIndexAction idxAction;
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002688 ImportedASTFilesData *importedASTs;
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002689 int result;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002690
2691 check_prefix = 0;
2692 if (argc > 0) {
2693 if (strstr(argv[0], "-check-prefix=") == argv[0]) {
2694 check_prefix = argv[0] + strlen("-check-prefix=");
2695 ++argv;
2696 --argc;
2697 }
2698 }
2699
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002700 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
2701 /* displayDiagnosics=*/1))) {
2702 fprintf(stderr, "Could not create Index\n");
2703 return 1;
2704 }
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002705 idxAction = clang_IndexAction_create(Idx);
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002706 importedASTs = 0;
2707 if (full)
2708 importedASTs = importedASTs_create();
2709
2710 result = index_compile_args(argc, argv, idxAction, importedASTs, check_prefix);
2711 if (result != 0)
2712 goto finished;
2713
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002714 if (full) {
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002715 unsigned i;
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002716 for (i = 0; i < importedASTs->num_files && result == 0; ++i) {
2717 result = index_ast_file(importedASTs->filenames[i], Idx, idxAction,
2718 importedASTs, check_prefix);
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002719 }
2720 }
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002721
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00002722finished:
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002723 importedASTs_dispose(importedASTs);
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002724 clang_IndexAction_dispose(idxAction);
2725 clang_disposeIndex(Idx);
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002726 return result;
2727}
2728
2729static int index_tu(int argc, const char **argv) {
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002730 const char *check_prefix;
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002731 CXIndex Idx;
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002732 CXIndexAction idxAction;
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002733 int result;
2734
2735 check_prefix = 0;
2736 if (argc > 0) {
2737 if (strstr(argv[0], "-check-prefix=") == argv[0]) {
2738 check_prefix = argv[0] + strlen("-check-prefix=");
2739 ++argv;
2740 --argc;
2741 }
2742 }
2743
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002744 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
2745 /* displayDiagnosics=*/1))) {
2746 fprintf(stderr, "Could not create Index\n");
2747 return 1;
2748 }
2749 idxAction = clang_IndexAction_create(Idx);
2750
2751 result = index_ast_file(argv[0], Idx, idxAction,
2752 /*importedASTs=*/0, check_prefix);
2753
2754 clang_IndexAction_dispose(idxAction);
2755 clang_disposeIndex(Idx);
2756 return result;
2757}
2758
2759static int index_compile_db(int argc, const char **argv) {
2760 const char *check_prefix;
2761 CXIndex Idx;
2762 CXIndexAction idxAction;
2763 int errorCode = 0;
2764
2765 check_prefix = 0;
2766 if (argc > 0) {
2767 if (strstr(argv[0], "-check-prefix=") == argv[0]) {
2768 check_prefix = argv[0] + strlen("-check-prefix=");
2769 ++argv;
2770 --argc;
2771 }
2772 }
2773
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002774 if (argc == 0) {
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002775 fprintf(stderr, "no compilation database\n");
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00002776 return -1;
2777 }
2778
2779 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
2780 /* displayDiagnosics=*/1))) {
2781 fprintf(stderr, "Could not create Index\n");
2782 return 1;
2783 }
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002784 idxAction = clang_IndexAction_create(Idx);
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002785
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002786 {
2787 const char *database = argv[0];
2788 CXCompilationDatabase db = 0;
2789 CXCompileCommands CCmds = 0;
2790 CXCompileCommand CCmd;
2791 CXCompilationDatabase_Error ec;
2792 CXString wd;
2793#define MAX_COMPILE_ARGS 512
2794 CXString cxargs[MAX_COMPILE_ARGS];
2795 const char *args[MAX_COMPILE_ARGS];
2796 char *tmp;
2797 unsigned len;
2798 char *buildDir;
2799 int i, a, numCmds, numArgs;
2800
2801 len = strlen(database);
2802 tmp = (char *) malloc(len+1);
2803 memcpy(tmp, database, len+1);
2804 buildDir = dirname(tmp);
2805
2806 db = clang_CompilationDatabase_fromDirectory(buildDir, &ec);
2807
2808 if (db) {
2809
2810 if (ec!=CXCompilationDatabase_NoError) {
2811 printf("unexpected error %d code while loading compilation database\n", ec);
2812 errorCode = -1;
2813 goto cdb_end;
2814 }
2815
Argyrios Kyrtzidis2bff7e52012-12-17 20:19:56 +00002816 if (chdir(buildDir) != 0) {
2817 printf("Could not chdir to %s\n", buildDir);
2818 errorCode = -1;
2819 goto cdb_end;
2820 }
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002821
Argyrios Kyrtzidis2bff7e52012-12-17 20:19:56 +00002822 CCmds = clang_CompilationDatabase_getAllCompileCommands(db);
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002823 if (!CCmds) {
2824 printf("compilation db is empty\n");
2825 errorCode = -1;
2826 goto cdb_end;
2827 }
2828
2829 numCmds = clang_CompileCommands_getSize(CCmds);
2830
2831 if (numCmds==0) {
2832 fprintf(stderr, "should not get an empty compileCommand set\n");
2833 errorCode = -1;
2834 goto cdb_end;
2835 }
2836
2837 for (i=0; i<numCmds && errorCode == 0; ++i) {
2838 CCmd = clang_CompileCommands_getCommand(CCmds, i);
2839
2840 wd = clang_CompileCommand_getDirectory(CCmd);
Argyrios Kyrtzidis2bff7e52012-12-17 20:19:56 +00002841 if (chdir(clang_getCString(wd)) != 0) {
2842 printf("Could not chdir to %s\n", clang_getCString(wd));
2843 errorCode = -1;
2844 goto cdb_end;
2845 }
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002846 clang_disposeString(wd);
2847
2848 numArgs = clang_CompileCommand_getNumArgs(CCmd);
2849 if (numArgs > MAX_COMPILE_ARGS){
2850 fprintf(stderr, "got more compile arguments than maximum\n");
2851 errorCode = -1;
2852 goto cdb_end;
2853 }
2854 for (a=0; a<numArgs; ++a) {
2855 cxargs[a] = clang_CompileCommand_getArg(CCmd, a);
2856 args[a] = clang_getCString(cxargs[a]);
2857 }
2858
2859 errorCode = index_compile_args(numArgs, args, idxAction,
2860 /*importedASTs=*/0, check_prefix);
2861
2862 for (a=0; a<numArgs; ++a)
2863 clang_disposeString(cxargs[a]);
2864 }
2865 } else {
2866 printf("database loading failed with error code %d.\n", ec);
2867 errorCode = -1;
2868 }
2869
2870 cdb_end:
2871 clang_CompileCommands_dispose(CCmds);
2872 clang_CompilationDatabase_dispose(db);
2873 free(tmp);
2874
2875 }
2876
Argyrios Kyrtzidis2957e6f2011-11-22 07:24:51 +00002877 clang_IndexAction_dispose(idxAction);
2878 clang_disposeIndex(Idx);
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00002879 return errorCode;
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00002880}
2881
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002882int perform_token_annotation(int argc, const char **argv) {
2883 const char *input = argv[1];
2884 char *filename = 0;
2885 unsigned line, second_line;
2886 unsigned column, second_column;
2887 CXIndex CIdx;
2888 CXTranslationUnit TU = 0;
2889 int errorCode;
2890 struct CXUnsavedFile *unsaved_files = 0;
2891 int num_unsaved_files = 0;
2892 CXToken *tokens;
2893 unsigned num_tokens;
2894 CXSourceRange range;
2895 CXSourceLocation startLoc, endLoc;
2896 CXFile file = 0;
2897 CXCursor *cursors = 0;
2898 unsigned i;
2899
2900 input += strlen("-test-annotate-tokens=");
2901 if ((errorCode = parse_file_line_column(input, &filename, &line, &column,
2902 &second_line, &second_column)))
2903 return errorCode;
2904
Richard Smithe07c5f82012-07-05 08:20:49 +00002905 if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files)) {
2906 free(filename);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002907 return -1;
Richard Smithe07c5f82012-07-05 08:20:49 +00002908 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002909
Douglas Gregor0a812cf2010-02-18 23:07:20 +00002910 CIdx = clang_createIndex(0, 1);
Douglas Gregordca8ee82011-05-06 16:33:08 +00002911 TU = clang_parseTranslationUnit(CIdx, argv[argc - 1],
2912 argv + num_unsaved_files + 2,
2913 argc - num_unsaved_files - 3,
2914 unsaved_files,
2915 num_unsaved_files,
2916 getDefaultParsingOptions());
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002917 if (!TU) {
2918 fprintf(stderr, "unable to parse input\n");
2919 clang_disposeIndex(CIdx);
2920 free(filename);
2921 free_remapped_files(unsaved_files, num_unsaved_files);
2922 return -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00002923 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002924 errorCode = 0;
2925
Richard Smithe07c5f82012-07-05 08:20:49 +00002926 if (checkForErrors(TU) != 0) {
2927 errorCode = -1;
2928 goto teardown;
2929 }
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002930
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00002931 if (getenv("CINDEXTEST_EDITING")) {
2932 for (i = 0; i < 5; ++i) {
2933 if (clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
2934 clang_defaultReparseOptions(TU))) {
2935 fprintf(stderr, "Unable to reparse translation unit!\n");
2936 errorCode = -1;
2937 goto teardown;
2938 }
2939 }
2940 }
2941
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002942 if (checkForErrors(TU) != 0) {
2943 errorCode = -1;
2944 goto teardown;
2945 }
2946
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002947 file = clang_getFile(TU, filename);
2948 if (!file) {
2949 fprintf(stderr, "file %s is not in this translation unit\n", filename);
2950 errorCode = -1;
2951 goto teardown;
2952 }
2953
2954 startLoc = clang_getLocation(TU, file, line, column);
2955 if (clang_equalLocations(clang_getNullLocation(), startLoc)) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00002956 fprintf(stderr, "invalid source location %s:%d:%d\n", filename, line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002957 column);
2958 errorCode = -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00002959 goto teardown;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002960 }
2961
2962 endLoc = clang_getLocation(TU, file, second_line, second_column);
2963 if (clang_equalLocations(clang_getNullLocation(), endLoc)) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00002964 fprintf(stderr, "invalid source location %s:%d:%d\n", filename,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002965 second_line, second_column);
2966 errorCode = -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00002967 goto teardown;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002968 }
2969
2970 range = clang_getRange(startLoc, endLoc);
2971 clang_tokenize(TU, range, &tokens, &num_tokens);
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002972
2973 if (checkForErrors(TU) != 0) {
2974 errorCode = -1;
2975 goto teardown;
2976 }
2977
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002978 cursors = (CXCursor *)malloc(num_tokens * sizeof(CXCursor));
2979 clang_annotateTokens(TU, tokens, num_tokens, cursors);
Argyrios Kyrtzidisdfca64d2011-10-28 22:54:36 +00002980
2981 if (checkForErrors(TU) != 0) {
2982 errorCode = -1;
2983 goto teardown;
2984 }
2985
Douglas Gregorfc8ea232010-01-26 17:06:03 +00002986 for (i = 0; i != num_tokens; ++i) {
2987 const char *kind = "<unknown>";
2988 CXString spelling = clang_getTokenSpelling(TU, tokens[i]);
2989 CXSourceRange extent = clang_getTokenExtent(TU, tokens[i]);
2990 unsigned start_line, start_column, end_line, end_column;
2991
2992 switch (clang_getTokenKind(tokens[i])) {
2993 case CXToken_Punctuation: kind = "Punctuation"; break;
2994 case CXToken_Keyword: kind = "Keyword"; break;
2995 case CXToken_Identifier: kind = "Identifier"; break;
2996 case CXToken_Literal: kind = "Literal"; break;
2997 case CXToken_Comment: kind = "Comment"; break;
2998 }
Douglas Gregora9b06d42010-11-09 06:24:54 +00002999 clang_getSpellingLocation(clang_getRangeStart(extent),
3000 0, &start_line, &start_column, 0);
3001 clang_getSpellingLocation(clang_getRangeEnd(extent),
3002 0, &end_line, &end_column, 0);
Daniel Dunbar51b058c2010-02-14 08:32:24 +00003003 printf("%s: \"%s\" ", kind, clang_getCString(spelling));
Benjamin Kramer342742a2012-04-14 09:11:51 +00003004 clang_disposeString(spelling);
Daniel Dunbar51b058c2010-02-14 08:32:24 +00003005 PrintExtent(stdout, start_line, start_column, end_line, end_column);
Douglas Gregor0045e9f2010-01-26 18:31:56 +00003006 if (!clang_isInvalid(cursors[i].kind)) {
3007 printf(" ");
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00003008 PrintCursor(cursors[i], NULL);
Douglas Gregor0045e9f2010-01-26 18:31:56 +00003009 }
3010 printf("\n");
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003011 }
3012 free(cursors);
Ted Kremenek93f5e6a2010-10-20 21:22:15 +00003013 clang_disposeTokens(TU, tokens, num_tokens);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003014
3015 teardown:
Douglas Gregora88084b2010-02-18 18:08:43 +00003016 PrintDiagnostics(TU);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003017 clang_disposeTranslationUnit(TU);
3018 clang_disposeIndex(CIdx);
3019 free(filename);
3020 free_remapped_files(unsaved_files, num_unsaved_files);
3021 return errorCode;
3022}
3023
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003024static int
3025perform_test_compilation_db(const char *database, int argc, const char **argv) {
3026 CXCompilationDatabase db;
3027 CXCompileCommands CCmds;
3028 CXCompileCommand CCmd;
3029 CXCompilationDatabase_Error ec;
3030 CXString wd;
3031 CXString arg;
3032 int errorCode = 0;
3033 char *tmp;
3034 unsigned len;
3035 char *buildDir;
3036 int i, j, a, numCmds, numArgs;
3037
3038 len = strlen(database);
3039 tmp = (char *) malloc(len+1);
3040 memcpy(tmp, database, len+1);
3041 buildDir = dirname(tmp);
3042
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003043 db = clang_CompilationDatabase_fromDirectory(buildDir, &ec);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003044
3045 if (db) {
3046
3047 if (ec!=CXCompilationDatabase_NoError) {
3048 printf("unexpected error %d code while loading compilation database\n", ec);
3049 errorCode = -1;
3050 goto cdb_end;
3051 }
3052
3053 for (i=0; i<argc && errorCode==0; ) {
3054 if (strcmp(argv[i],"lookup")==0){
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003055 CCmds = clang_CompilationDatabase_getCompileCommands(db, argv[i+1]);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003056
3057 if (!CCmds) {
3058 printf("file %s not found in compilation db\n", argv[i+1]);
3059 errorCode = -1;
3060 break;
3061 }
3062
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003063 numCmds = clang_CompileCommands_getSize(CCmds);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003064
3065 if (numCmds==0) {
3066 fprintf(stderr, "should not get an empty compileCommand set for file"
3067 " '%s'\n", argv[i+1]);
3068 errorCode = -1;
3069 break;
3070 }
3071
3072 for (j=0; j<numCmds; ++j) {
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003073 CCmd = clang_CompileCommands_getCommand(CCmds, j);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003074
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003075 wd = clang_CompileCommand_getDirectory(CCmd);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003076 printf("workdir:'%s'", clang_getCString(wd));
3077 clang_disposeString(wd);
3078
3079 printf(" cmdline:'");
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003080 numArgs = clang_CompileCommand_getNumArgs(CCmd);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003081 for (a=0; a<numArgs; ++a) {
3082 if (a) printf(" ");
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003083 arg = clang_CompileCommand_getArg(CCmd, a);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003084 printf("%s", clang_getCString(arg));
3085 clang_disposeString(arg);
3086 }
3087 printf("'\n");
3088 }
3089
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003090 clang_CompileCommands_dispose(CCmds);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003091
3092 i += 2;
3093 }
3094 }
Arnaud A. de Grandmaisonc70851b2012-07-03 20:38:12 +00003095 clang_CompilationDatabase_dispose(db);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003096 } else {
3097 printf("database loading failed with error code %d.\n", ec);
3098 errorCode = -1;
3099 }
3100
3101cdb_end:
3102 free(tmp);
3103
3104 return errorCode;
3105}
3106
Ted Kremenek0d435192009-11-17 18:13:31 +00003107/******************************************************************************/
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003108/* USR printing. */
3109/******************************************************************************/
3110
3111static int insufficient_usr(const char *kind, const char *usage) {
3112 fprintf(stderr, "USR for '%s' requires: %s\n", kind, usage);
3113 return 1;
3114}
3115
3116static unsigned isUSR(const char *s) {
3117 return s[0] == 'c' && s[1] == ':';
3118}
3119
3120static int not_usr(const char *s, const char *arg) {
3121 fprintf(stderr, "'%s' argument ('%s') is not a USR\n", s, arg);
3122 return 1;
3123}
3124
3125static void print_usr(CXString usr) {
3126 const char *s = clang_getCString(usr);
3127 printf("%s\n", s);
3128 clang_disposeString(usr);
3129}
3130
3131static void display_usrs() {
3132 fprintf(stderr, "-print-usrs options:\n"
3133 " ObjCCategory <class name> <category name>\n"
3134 " ObjCClass <class name>\n"
3135 " ObjCIvar <ivar name> <class USR>\n"
3136 " ObjCMethod <selector> [0=class method|1=instance method] "
3137 "<class USR>\n"
3138 " ObjCProperty <property name> <class USR>\n"
3139 " ObjCProtocol <protocol name>\n");
3140}
3141
3142int print_usrs(const char **I, const char **E) {
3143 while (I != E) {
3144 const char *kind = *I;
3145 unsigned len = strlen(kind);
3146 switch (len) {
3147 case 8:
3148 if (memcmp(kind, "ObjCIvar", 8) == 0) {
3149 if (I + 2 >= E)
3150 return insufficient_usr(kind, "<ivar name> <class USR>");
3151 if (!isUSR(I[2]))
3152 return not_usr("<class USR>", I[2]);
3153 else {
3154 CXString x;
Ted Kremeneka60ed472010-11-16 08:15:36 +00003155 x.data = (void*) I[2];
Ted Kremeneked122732010-11-16 01:56:27 +00003156 x.private_flags = 0;
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003157 print_usr(clang_constructUSR_ObjCIvar(I[1], x));
3158 }
3159
3160 I += 3;
3161 continue;
3162 }
3163 break;
3164 case 9:
3165 if (memcmp(kind, "ObjCClass", 9) == 0) {
3166 if (I + 1 >= E)
3167 return insufficient_usr(kind, "<class name>");
3168 print_usr(clang_constructUSR_ObjCClass(I[1]));
3169 I += 2;
3170 continue;
3171 }
3172 break;
3173 case 10:
3174 if (memcmp(kind, "ObjCMethod", 10) == 0) {
3175 if (I + 3 >= E)
3176 return insufficient_usr(kind, "<method selector> "
3177 "[0=class method|1=instance method] <class USR>");
3178 if (!isUSR(I[3]))
3179 return not_usr("<class USR>", I[3]);
3180 else {
3181 CXString x;
Ted Kremeneka60ed472010-11-16 08:15:36 +00003182 x.data = (void*) I[3];
Ted Kremeneked122732010-11-16 01:56:27 +00003183 x.private_flags = 0;
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003184 print_usr(clang_constructUSR_ObjCMethod(I[1], atoi(I[2]), x));
3185 }
3186 I += 4;
3187 continue;
3188 }
3189 break;
3190 case 12:
3191 if (memcmp(kind, "ObjCCategory", 12) == 0) {
3192 if (I + 2 >= E)
3193 return insufficient_usr(kind, "<class name> <category name>");
3194 print_usr(clang_constructUSR_ObjCCategory(I[1], I[2]));
3195 I += 3;
3196 continue;
3197 }
3198 if (memcmp(kind, "ObjCProtocol", 12) == 0) {
3199 if (I + 1 >= E)
3200 return insufficient_usr(kind, "<protocol name>");
3201 print_usr(clang_constructUSR_ObjCProtocol(I[1]));
3202 I += 2;
3203 continue;
3204 }
3205 if (memcmp(kind, "ObjCProperty", 12) == 0) {
3206 if (I + 2 >= E)
3207 return insufficient_usr(kind, "<property name> <class USR>");
3208 if (!isUSR(I[2]))
3209 return not_usr("<class USR>", I[2]);
3210 else {
3211 CXString x;
Ted Kremeneka60ed472010-11-16 08:15:36 +00003212 x.data = (void*) I[2];
Ted Kremeneked122732010-11-16 01:56:27 +00003213 x.private_flags = 0;
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003214 print_usr(clang_constructUSR_ObjCProperty(I[1], x));
3215 }
3216 I += 3;
3217 continue;
3218 }
3219 break;
3220 default:
3221 break;
3222 }
3223 break;
3224 }
3225
3226 if (I != E) {
3227 fprintf(stderr, "Invalid USR kind: %s\n", *I);
3228 display_usrs();
3229 return 1;
3230 }
3231 return 0;
3232}
3233
3234int print_usrs_file(const char *file_name) {
3235 char line[2048];
3236 const char *args[128];
3237 unsigned numChars = 0;
3238
3239 FILE *fp = fopen(file_name, "r");
3240 if (!fp) {
3241 fprintf(stderr, "error: cannot open '%s'\n", file_name);
3242 return 1;
3243 }
3244
3245 /* This code is not really all that safe, but it works fine for testing. */
3246 while (!feof(fp)) {
3247 char c = fgetc(fp);
3248 if (c == '\n') {
3249 unsigned i = 0;
3250 const char *s = 0;
3251
3252 if (numChars == 0)
3253 continue;
3254
3255 line[numChars] = '\0';
3256 numChars = 0;
3257
3258 if (line[0] == '/' && line[1] == '/')
3259 continue;
3260
3261 s = strtok(line, " ");
3262 while (s) {
3263 args[i] = s;
3264 ++i;
3265 s = strtok(0, " ");
3266 }
3267 if (print_usrs(&args[0], &args[i]))
3268 return 1;
3269 }
3270 else
3271 line[numChars++] = c;
3272 }
3273
3274 fclose(fp);
3275 return 0;
3276}
3277
3278/******************************************************************************/
Ted Kremenek0d435192009-11-17 18:13:31 +00003279/* Command line processing. */
3280/******************************************************************************/
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003281int write_pch_file(const char *filename, int argc, const char *argv[]) {
3282 CXIndex Idx;
3283 CXTranslationUnit TU;
3284 struct CXUnsavedFile *unsaved_files = 0;
3285 int num_unsaved_files = 0;
Francois Pichet08aa6222011-07-06 22:09:44 +00003286 int result = 0;
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003287
3288 Idx = clang_createIndex(/* excludeDeclsFromPCH */1, /* displayDiagnosics=*/1);
3289
3290 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
3291 clang_disposeIndex(Idx);
3292 return -1;
3293 }
3294
3295 TU = clang_parseTranslationUnit(Idx, 0,
3296 argv + num_unsaved_files,
3297 argc - num_unsaved_files,
3298 unsaved_files,
3299 num_unsaved_files,
Argyrios Kyrtzidis900ab952012-10-11 16:05:00 +00003300 CXTranslationUnit_Incomplete |
3301 CXTranslationUnit_ForSerialization);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003302 if (!TU) {
3303 fprintf(stderr, "Unable to load translation unit!\n");
3304 free_remapped_files(unsaved_files, num_unsaved_files);
3305 clang_disposeIndex(Idx);
3306 return 1;
3307 }
3308
Douglas Gregor39c411f2011-07-06 16:43:36 +00003309 switch (clang_saveTranslationUnit(TU, filename,
3310 clang_defaultSaveOptions(TU))) {
3311 case CXSaveError_None:
3312 break;
3313
3314 case CXSaveError_TranslationErrors:
3315 fprintf(stderr, "Unable to write PCH file %s: translation errors\n",
3316 filename);
3317 result = 2;
3318 break;
3319
3320 case CXSaveError_InvalidTU:
3321 fprintf(stderr, "Unable to write PCH file %s: invalid translation unit\n",
3322 filename);
3323 result = 3;
3324 break;
3325
3326 case CXSaveError_Unknown:
3327 default:
3328 fprintf(stderr, "Unable to write PCH file %s: unknown error \n", filename);
3329 result = 1;
3330 break;
3331 }
3332
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003333 clang_disposeTranslationUnit(TU);
3334 free_remapped_files(unsaved_files, num_unsaved_files);
3335 clang_disposeIndex(Idx);
Douglas Gregor39c411f2011-07-06 16:43:36 +00003336 return result;
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003337}
3338
3339/******************************************************************************/
Ted Kremenek15322172011-11-10 08:43:12 +00003340/* Serialized diagnostics. */
3341/******************************************************************************/
3342
3343static const char *getDiagnosticCodeStr(enum CXLoadDiag_Error error) {
3344 switch (error) {
3345 case CXLoadDiag_CannotLoad: return "Cannot Load File";
3346 case CXLoadDiag_None: break;
3347 case CXLoadDiag_Unknown: return "Unknown";
3348 case CXLoadDiag_InvalidFile: return "Invalid File";
3349 }
3350 return "None";
3351}
3352
3353static const char *getSeverityString(enum CXDiagnosticSeverity severity) {
3354 switch (severity) {
3355 case CXDiagnostic_Note: return "note";
3356 case CXDiagnostic_Error: return "error";
3357 case CXDiagnostic_Fatal: return "fatal";
3358 case CXDiagnostic_Ignored: return "ignored";
3359 case CXDiagnostic_Warning: return "warning";
3360 }
3361 return "unknown";
3362}
3363
3364static void printIndent(unsigned indent) {
Ted Kremeneka7e8a832011-11-11 00:46:43 +00003365 if (indent == 0)
3366 return;
3367 fprintf(stderr, "+");
3368 --indent;
Ted Kremenek15322172011-11-10 08:43:12 +00003369 while (indent > 0) {
Ted Kremeneka7e8a832011-11-11 00:46:43 +00003370 fprintf(stderr, "-");
Ted Kremenek15322172011-11-10 08:43:12 +00003371 --indent;
3372 }
3373}
3374
3375static void printLocation(CXSourceLocation L) {
3376 CXFile File;
3377 CXString FileName;
3378 unsigned line, column, offset;
3379
3380 clang_getExpansionLocation(L, &File, &line, &column, &offset);
3381 FileName = clang_getFileName(File);
3382
3383 fprintf(stderr, "%s:%d:%d", clang_getCString(FileName), line, column);
3384 clang_disposeString(FileName);
3385}
3386
3387static void printRanges(CXDiagnostic D, unsigned indent) {
3388 unsigned i, n = clang_getDiagnosticNumRanges(D);
3389
3390 for (i = 0; i < n; ++i) {
3391 CXSourceLocation Start, End;
3392 CXSourceRange SR = clang_getDiagnosticRange(D, i);
3393 Start = clang_getRangeStart(SR);
3394 End = clang_getRangeEnd(SR);
3395
3396 printIndent(indent);
3397 fprintf(stderr, "Range: ");
3398 printLocation(Start);
3399 fprintf(stderr, " ");
3400 printLocation(End);
3401 fprintf(stderr, "\n");
3402 }
3403}
3404
3405static void printFixIts(CXDiagnostic D, unsigned indent) {
3406 unsigned i, n = clang_getDiagnosticNumFixIts(D);
Ted Kremenek3739b322012-03-20 20:49:45 +00003407 fprintf(stderr, "Number FIXITs = %d\n", n);
Ted Kremenek15322172011-11-10 08:43:12 +00003408 for (i = 0 ; i < n; ++i) {
3409 CXSourceRange ReplacementRange;
3410 CXString text;
3411 text = clang_getDiagnosticFixIt(D, i, &ReplacementRange);
3412
3413 printIndent(indent);
3414 fprintf(stderr, "FIXIT: (");
3415 printLocation(clang_getRangeStart(ReplacementRange));
3416 fprintf(stderr, " - ");
3417 printLocation(clang_getRangeEnd(ReplacementRange));
3418 fprintf(stderr, "): \"%s\"\n", clang_getCString(text));
3419 clang_disposeString(text);
3420 }
3421}
3422
3423static void printDiagnosticSet(CXDiagnosticSet Diags, unsigned indent) {
NAKAMURA Takumi91909432011-11-10 09:30:15 +00003424 unsigned i, n;
3425
Ted Kremenek15322172011-11-10 08:43:12 +00003426 if (!Diags)
3427 return;
3428
NAKAMURA Takumi91909432011-11-10 09:30:15 +00003429 n = clang_getNumDiagnosticsInSet(Diags);
Ted Kremenek15322172011-11-10 08:43:12 +00003430 for (i = 0; i < n; ++i) {
3431 CXSourceLocation DiagLoc;
3432 CXDiagnostic D;
3433 CXFile File;
Ted Kremenek78d5d3b2012-04-12 00:03:31 +00003434 CXString FileName, DiagSpelling, DiagOption, DiagCat;
Ted Kremenek15322172011-11-10 08:43:12 +00003435 unsigned line, column, offset;
Ted Kremenek78d5d3b2012-04-12 00:03:31 +00003436 const char *DiagOptionStr = 0, *DiagCatStr = 0;
Ted Kremenek15322172011-11-10 08:43:12 +00003437
3438 D = clang_getDiagnosticInSet(Diags, i);
3439 DiagLoc = clang_getDiagnosticLocation(D);
3440 clang_getExpansionLocation(DiagLoc, &File, &line, &column, &offset);
3441 FileName = clang_getFileName(File);
3442 DiagSpelling = clang_getDiagnosticSpelling(D);
3443
3444 printIndent(indent);
3445
3446 fprintf(stderr, "%s:%d:%d: %s: %s",
3447 clang_getCString(FileName),
3448 line,
3449 column,
3450 getSeverityString(clang_getDiagnosticSeverity(D)),
3451 clang_getCString(DiagSpelling));
3452
3453 DiagOption = clang_getDiagnosticOption(D, 0);
3454 DiagOptionStr = clang_getCString(DiagOption);
3455 if (DiagOptionStr) {
3456 fprintf(stderr, " [%s]", DiagOptionStr);
3457 }
3458
Ted Kremenek78d5d3b2012-04-12 00:03:31 +00003459 DiagCat = clang_getDiagnosticCategoryText(D);
3460 DiagCatStr = clang_getCString(DiagCat);
3461 if (DiagCatStr) {
3462 fprintf(stderr, " [%s]", DiagCatStr);
3463 }
3464
Ted Kremenek15322172011-11-10 08:43:12 +00003465 fprintf(stderr, "\n");
3466
3467 printRanges(D, indent);
3468 printFixIts(D, indent);
3469
NAKAMURA Takumia4ca95a2011-11-10 10:07:57 +00003470 /* Print subdiagnostics. */
Ted Kremenek15322172011-11-10 08:43:12 +00003471 printDiagnosticSet(clang_getChildDiagnostics(D), indent+2);
3472
3473 clang_disposeString(FileName);
3474 clang_disposeString(DiagSpelling);
3475 clang_disposeString(DiagOption);
3476 }
3477}
3478
3479static int read_diagnostics(const char *filename) {
3480 enum CXLoadDiag_Error error;
3481 CXString errorString;
3482 CXDiagnosticSet Diags = 0;
3483
3484 Diags = clang_loadDiagnostics(filename, &error, &errorString);
3485 if (!Diags) {
3486 fprintf(stderr, "Trouble deserializing file (%s): %s\n",
3487 getDiagnosticCodeStr(error),
3488 clang_getCString(errorString));
3489 clang_disposeString(errorString);
3490 return 1;
3491 }
3492
3493 printDiagnosticSet(Diags, 0);
Ted Kremeneka7e8a832011-11-11 00:46:43 +00003494 fprintf(stderr, "Number of diagnostics: %d\n",
3495 clang_getNumDiagnosticsInSet(Diags));
Ted Kremenek15322172011-11-10 08:43:12 +00003496 clang_disposeDiagnosticSet(Diags);
3497 return 0;
3498}
3499
3500/******************************************************************************/
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003501/* Command line processing. */
3502/******************************************************************************/
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003503
Douglas Gregore5b72ba2010-01-20 21:32:04 +00003504static CXCursorVisitor GetVisitor(const char *s) {
Ted Kremenek7d405622010-01-12 23:34:26 +00003505 if (s[0] == '\0')
Douglas Gregore5b72ba2010-01-20 21:32:04 +00003506 return FilteredPrintingVisitor;
Ted Kremenek7d405622010-01-12 23:34:26 +00003507 if (strcmp(s, "-usrs") == 0)
3508 return USRVisitor;
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003509 if (strncmp(s, "-memory-usage", 13) == 0)
3510 return GetVisitor(s + 13);
Ted Kremenek7d405622010-01-12 23:34:26 +00003511 return NULL;
3512}
3513
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003514static void print_usage(void) {
3515 fprintf(stderr,
Ted Kremenek0d435192009-11-17 18:13:31 +00003516 "usage: c-index-test -code-completion-at=<site> <compiler arguments>\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00003517 " c-index-test -code-completion-timing=<site> <compiler arguments>\n"
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00003518 " c-index-test -cursor-at=<site> <compiler arguments>\n"
NAKAMURA Takumi35849722012-10-24 22:52:04 +00003519 " c-index-test -file-refs-at=<site> <compiler arguments>\n");
3520 fprintf(stderr,
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00003521 " c-index-test -index-file [-check-prefix=<FileCheck prefix>] <compiler arguments>\n"
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00003522 " c-index-test -index-file-full [-check-prefix=<FileCheck prefix>] <compiler arguments>\n"
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00003523 " c-index-test -index-tu [-check-prefix=<FileCheck prefix>] <AST file>\n"
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00003524 " c-index-test -index-compile-db [-check-prefix=<FileCheck prefix>] <compilation database>\n"
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00003525 " c-index-test -test-file-scan <AST file> <source file> "
Erik Verbruggen26fc0f92011-10-06 11:38:08 +00003526 "[FileCheck prefix]\n");
3527 fprintf(stderr,
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +00003528 " c-index-test -test-load-tu <AST file> <symbol filter> "
3529 "[FileCheck prefix]\n"
Ted Kremenek7d405622010-01-12 23:34:26 +00003530 " c-index-test -test-load-tu-usrs <AST file> <symbol filter> "
3531 "[FileCheck prefix]\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00003532 " c-index-test -test-load-source <symbol filter> {<args>}*\n");
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00003533 fprintf(stderr,
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003534 " c-index-test -test-load-source-memory-usage "
3535 "<symbol filter> {<args>}*\n"
Douglas Gregorabc563f2010-07-19 21:46:24 +00003536 " c-index-test -test-load-source-reparse <trials> <symbol filter> "
3537 " {<args>}*\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00003538 " c-index-test -test-load-source-usrs <symbol filter> {<args>}*\n"
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003539 " c-index-test -test-load-source-usrs-memory-usage "
3540 "<symbol filter> {<args>}*\n"
Ted Kremenek16b55a72010-01-26 19:31:51 +00003541 " c-index-test -test-annotate-tokens=<range> {<args>}*\n"
3542 " c-index-test -test-inclusion-stack-source {<args>}*\n"
Ted Kremenek4e6a3f72011-04-18 23:42:53 +00003543 " c-index-test -test-inclusion-stack-tu <AST file>\n");
Chandler Carruth53513d22010-07-22 06:29:13 +00003544 fprintf(stderr,
Ted Kremenek4e6a3f72011-04-18 23:42:53 +00003545 " c-index-test -test-print-linkage-source {<args>}*\n"
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003546 " c-index-test -test-print-typekind {<args>}*\n"
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00003547 " c-index-test -test-print-bitwidth {<args>}*\n"
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003548 " c-index-test -print-usr [<CursorKind> {<args>}]*\n"
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003549 " c-index-test -print-usr-file <file>\n"
Ted Kremenek15322172011-11-10 08:43:12 +00003550 " c-index-test -write-pch <file> <compiler arguments>\n");
3551 fprintf(stderr,
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003552 " c-index-test -compilation-db [lookup <filename>] database\n");
3553 fprintf(stderr,
Ted Kremenek15322172011-11-10 08:43:12 +00003554 " c-index-test -read-diagnostics <file>\n\n");
Douglas Gregorcaf4bd32010-07-20 14:34:35 +00003555 fprintf(stderr,
Ted Kremenek7d405622010-01-12 23:34:26 +00003556 " <symbol filter> values:\n%s",
Ted Kremenek0d435192009-11-17 18:13:31 +00003557 " all - load all symbols, including those from PCH\n"
3558 " local - load all symbols except those in PCH\n"
3559 " category - only load ObjC categories (non-PCH)\n"
3560 " interface - only load ObjC interfaces (non-PCH)\n"
3561 " protocol - only load ObjC protocols (non-PCH)\n"
3562 " function - only load functions (non-PCH)\n"
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00003563 " typedef - only load typdefs (non-PCH)\n"
3564 " scan-function - scan function bodies (non-PCH)\n\n");
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003565}
3566
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003567/***/
3568
3569int cindextest_main(int argc, const char **argv) {
Douglas Gregor0a812cf2010-02-18 23:07:20 +00003570 clang_enableStackTraces();
Ted Kremenek15322172011-11-10 08:43:12 +00003571 if (argc > 2 && strcmp(argv[1], "-read-diagnostics") == 0)
3572 return read_diagnostics(argv[2]);
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003573 if (argc > 2 && strstr(argv[1], "-code-completion-at=") == argv[1])
Douglas Gregor1982c182010-07-12 18:38:41 +00003574 return perform_code_completion(argc, argv, 0);
3575 if (argc > 2 && strstr(argv[1], "-code-completion-timing=") == argv[1])
3576 return perform_code_completion(argc, argv, 1);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00003577 if (argc > 2 && strstr(argv[1], "-cursor-at=") == argv[1])
3578 return inspect_cursor_at(argc, argv);
Argyrios Kyrtzidisaed123e2011-10-06 07:00:54 +00003579 if (argc > 2 && strstr(argv[1], "-file-refs-at=") == argv[1])
3580 return find_file_refs_at(argc, argv);
Argyrios Kyrtzidis4e7064f2011-10-17 19:48:19 +00003581 if (argc > 2 && strcmp(argv[1], "-index-file") == 0)
Argyrios Kyrtzidis11db1822012-10-24 18:29:15 +00003582 return index_file(argc - 2, argv + 2, /*full=*/0);
3583 if (argc > 2 && strcmp(argv[1], "-index-file-full") == 0)
3584 return index_file(argc - 2, argv + 2, /*full=*/1);
Argyrios Kyrtzidis21ee5702011-11-15 06:20:16 +00003585 if (argc > 2 && strcmp(argv[1], "-index-tu") == 0)
3586 return index_tu(argc - 2, argv + 2);
Argyrios Kyrtzidisd10682f2012-12-05 21:53:37 +00003587 if (argc > 2 && strcmp(argv[1], "-index-compile-db") == 0)
3588 return index_compile_db(argc - 2, argv + 2);
Ted Kremenek7d405622010-01-12 23:34:26 +00003589 else if (argc >= 4 && strncmp(argv[1], "-test-load-tu", 13) == 0) {
Douglas Gregore5b72ba2010-01-20 21:32:04 +00003590 CXCursorVisitor I = GetVisitor(argv[1] + 13);
Ted Kremenek7d405622010-01-12 23:34:26 +00003591 if (I)
Ted Kremenekce2ae882010-01-26 17:59:48 +00003592 return perform_test_load_tu(argv[2], argv[3], argc >= 5 ? argv[4] : 0, I,
3593 NULL);
Ted Kremenek7d405622010-01-12 23:34:26 +00003594 }
Douglas Gregorabc563f2010-07-19 21:46:24 +00003595 else if (argc >= 5 && strncmp(argv[1], "-test-load-source-reparse", 25) == 0){
3596 CXCursorVisitor I = GetVisitor(argv[1] + 25);
3597 if (I) {
3598 int trials = atoi(argv[2]);
3599 return perform_test_reparse_source(argc - 4, argv + 4, trials, argv[3], I,
3600 NULL);
3601 }
3602 }
Ted Kremenek7d405622010-01-12 23:34:26 +00003603 else if (argc >= 4 && strncmp(argv[1], "-test-load-source", 17) == 0) {
Douglas Gregore5b72ba2010-01-20 21:32:04 +00003604 CXCursorVisitor I = GetVisitor(argv[1] + 17);
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003605
3606 PostVisitTU postVisit = 0;
3607 if (strstr(argv[1], "-memory-usage"))
3608 postVisit = PrintMemoryUsage;
3609
Ted Kremenek7d405622010-01-12 23:34:26 +00003610 if (I)
Ted Kremenek59fc1e52011-04-18 22:47:10 +00003611 return perform_test_load_source(argc - 3, argv + 3, argv[2], I,
3612 postVisit);
Ted Kremenek7d405622010-01-12 23:34:26 +00003613 }
3614 else if (argc >= 4 && strcmp(argv[1], "-test-file-scan") == 0)
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00003615 return perform_file_scan(argv[2], argv[3],
3616 argc >= 5 ? argv[4] : 0);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00003617 else if (argc > 2 && strstr(argv[1], "-test-annotate-tokens=") == argv[1])
3618 return perform_token_annotation(argc, argv);
Ted Kremenek16b55a72010-01-26 19:31:51 +00003619 else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-source") == 0)
3620 return perform_test_load_source(argc - 2, argv + 2, "all", NULL,
3621 PrintInclusionStack);
3622 else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-tu") == 0)
3623 return perform_test_load_tu(argv[2], "all", NULL, NULL,
3624 PrintInclusionStack);
Ted Kremenek3bed5272010-03-03 06:37:58 +00003625 else if (argc > 2 && strcmp(argv[1], "-test-print-linkage-source") == 0)
3626 return perform_test_load_source(argc - 2, argv + 2, "all", PrintLinkage,
3627 NULL);
Ted Kremenek8e0ac172010-05-14 21:29:26 +00003628 else if (argc > 2 && strcmp(argv[1], "-test-print-typekind") == 0)
3629 return perform_test_load_source(argc - 2, argv + 2, "all",
3630 PrintTypeKind, 0);
Dmitri Gribenko1eb60822012-12-04 15:13:46 +00003631 else if (argc > 2 && strcmp(argv[1], "-test-print-bitwidth") == 0)
3632 return perform_test_load_source(argc - 2, argv + 2, "all",
3633 PrintBitWidth, 0);
Ted Kremenekf7b714d2010-03-25 02:00:39 +00003634 else if (argc > 1 && strcmp(argv[1], "-print-usr") == 0) {
3635 if (argc > 2)
3636 return print_usrs(argv + 2, argv + argc);
3637 else {
3638 display_usrs();
3639 return 1;
3640 }
3641 }
3642 else if (argc > 2 && strcmp(argv[1], "-print-usr-file") == 0)
3643 return print_usrs_file(argv[2]);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00003644 else if (argc > 2 && strcmp(argv[1], "-write-pch") == 0)
3645 return write_pch_file(argv[2], argc - 3, argv + 3);
Arnaud A. de Grandmaisondb293182012-06-30 11:27:57 +00003646 else if (argc > 2 && strcmp(argv[1], "-compilation-db") == 0)
3647 return perform_test_compilation_db(argv[argc-1], argc - 3, argv + 2);
3648
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003649 print_usage();
3650 return 1;
Steve Naroff50398192009-08-28 15:28:48 +00003651}
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003652
3653/***/
3654
3655/* We intentionally run in a separate thread to ensure we at least minimal
3656 * testing of a multithreaded environment (for example, having a reduced stack
3657 * size). */
3658
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003659typedef struct thread_info {
3660 int argc;
3661 const char **argv;
3662 int result;
3663} thread_info;
Benjamin Kramer84294912010-11-04 19:11:31 +00003664void thread_runner(void *client_data_v) {
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003665 thread_info *client_data = client_data_v;
3666 client_data->result = cindextest_main(client_data->argc, client_data->argv);
NAKAMURA Takumi3be55cd2012-04-07 06:59:28 +00003667#ifdef __CYGWIN__
3668 fflush(stdout); /* stdout is not flushed on Cygwin. */
3669#endif
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003670}
3671
3672int main(int argc, const char **argv) {
Benjamin Kramerd1a4f682012-08-10 10:06:13 +00003673 thread_info client_data;
3674
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +00003675#ifdef CLANG_HAVE_LIBXML
3676 LIBXML_TEST_VERSION
3677#endif
3678
Douglas Gregor61605982010-10-27 16:00:01 +00003679 if (getenv("CINDEXTEST_NOTHREADS"))
3680 return cindextest_main(argc, argv);
3681
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003682 client_data.argc = argc;
3683 client_data.argv = argv;
Daniel Dunbara32a6e12010-11-04 01:26:31 +00003684 clang_executeOnThread(thread_runner, &client_data, 0);
Daniel Dunbar6edc8002010-09-30 20:39:47 +00003685 return client_data.result;
3686}