blob: 9d56eec8eb60a3b1a746795629a64d17fc256c42 [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"
Douglas Gregor0c8296d2009-11-07 00:00:49 +00004#include <stdlib.h>
Steve Naroff89922f82009-08-31 00:59:03 +00005#include <stdio.h>
Steve Naroffaf08ddc2009-09-03 15:49:00 +00006#include <string.h>
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00007#include <assert.h>
Steve Naroffaf08ddc2009-09-03 15:49:00 +00008
Ted Kremenek0d435192009-11-17 18:13:31 +00009/******************************************************************************/
10/* Utility functions. */
11/******************************************************************************/
12
John Thompson2e06fc82009-10-27 13:42:56 +000013#ifdef _MSC_VER
14char *basename(const char* path)
15{
16 char* base1 = (char*)strrchr(path, '/');
17 char* base2 = (char*)strrchr(path, '\\');
18 if (base1 && base2)
19 return((base1 > base2) ? base1 + 1 : base2 + 1);
20 else if (base1)
21 return(base1 + 1);
22 else if (base2)
23 return(base2 + 1);
24
25 return((char*)path);
26}
27#else
Steve Naroffff9e18c2009-09-24 20:03:06 +000028extern char *basename(const char *);
John Thompson2e06fc82009-10-27 13:42:56 +000029#endif
Steve Naroffff9e18c2009-09-24 20:03:06 +000030
Daniel Dunbar51b058c2010-02-14 08:32:24 +000031static void PrintExtent(FILE *out, unsigned begin_line, unsigned begin_column,
32 unsigned end_line, unsigned end_column) {
33 fprintf(out, "[%d:%d - %d:%d]", begin_line, begin_column,
Daniel Dunbard52864b2010-02-14 10:02:57 +000034 end_line, end_column);
Daniel Dunbar51b058c2010-02-14 08:32:24 +000035}
36
Ted Kremenek1c6da172009-11-17 19:37:36 +000037static unsigned CreateTranslationUnit(CXIndex Idx, const char *file,
38 CXTranslationUnit *TU) {
Ted Kremeneke68fff62010-02-17 00:41:32 +000039
Douglas Gregora88084b2010-02-18 18:08:43 +000040 *TU = clang_createTranslationUnit(Idx, file);
Ted Kremenek1c6da172009-11-17 19:37:36 +000041 if (!TU) {
42 fprintf(stderr, "Unable to load translation unit from '%s'!\n", file);
43 return 0;
Ted Kremeneke68fff62010-02-17 00:41:32 +000044 }
Ted Kremenek1c6da172009-11-17 19:37:36 +000045 return 1;
46}
47
Douglas Gregor4db64a42010-01-23 00:14:00 +000048void free_remapped_files(struct CXUnsavedFile *unsaved_files,
49 int num_unsaved_files) {
50 int i;
51 for (i = 0; i != num_unsaved_files; ++i) {
52 free((char *)unsaved_files[i].Filename);
53 free((char *)unsaved_files[i].Contents);
54 }
55}
56
57int parse_remapped_files(int argc, const char **argv, int start_arg,
58 struct CXUnsavedFile **unsaved_files,
59 int *num_unsaved_files) {
60 int i;
61 int arg;
62 int prefix_len = strlen("-remap-file=");
63 *unsaved_files = 0;
64 *num_unsaved_files = 0;
Ted Kremeneke68fff62010-02-17 00:41:32 +000065
Douglas Gregor4db64a42010-01-23 00:14:00 +000066 /* Count the number of remapped files. */
67 for (arg = start_arg; arg < argc; ++arg) {
68 if (strncmp(argv[arg], "-remap-file=", prefix_len))
69 break;
Ted Kremeneke68fff62010-02-17 00:41:32 +000070
Douglas Gregor4db64a42010-01-23 00:14:00 +000071 ++*num_unsaved_files;
72 }
Ted Kremeneke68fff62010-02-17 00:41:32 +000073
Douglas Gregor4db64a42010-01-23 00:14:00 +000074 if (*num_unsaved_files == 0)
75 return 0;
Ted Kremeneke68fff62010-02-17 00:41:32 +000076
Douglas Gregor4db64a42010-01-23 00:14:00 +000077 *unsaved_files
Ted Kremeneke68fff62010-02-17 00:41:32 +000078 = (struct CXUnsavedFile *)malloc(sizeof(struct CXUnsavedFile) *
Douglas Gregor4db64a42010-01-23 00:14:00 +000079 *num_unsaved_files);
80 for (arg = start_arg, i = 0; i != *num_unsaved_files; ++i, ++arg) {
81 struct CXUnsavedFile *unsaved = *unsaved_files + i;
82 const char *arg_string = argv[arg] + prefix_len;
83 int filename_len;
84 char *filename;
85 char *contents;
86 FILE *to_file;
87 const char *semi = strchr(arg_string, ';');
88 if (!semi) {
Ted Kremeneke68fff62010-02-17 00:41:32 +000089 fprintf(stderr,
Douglas Gregor4db64a42010-01-23 00:14:00 +000090 "error: -remap-file=from;to argument is missing semicolon\n");
91 free_remapped_files(*unsaved_files, i);
92 *unsaved_files = 0;
93 *num_unsaved_files = 0;
94 return -1;
95 }
Ted Kremeneke68fff62010-02-17 00:41:32 +000096
Douglas Gregor4db64a42010-01-23 00:14:00 +000097 /* Open the file that we're remapping to. */
98 to_file = fopen(semi + 1, "r");
99 if (!to_file) {
100 fprintf(stderr, "error: cannot open file %s that we are remapping to\n",
101 semi + 1);
102 free_remapped_files(*unsaved_files, i);
103 *unsaved_files = 0;
104 *num_unsaved_files = 0;
105 return -1;
106 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000107
Douglas Gregor4db64a42010-01-23 00:14:00 +0000108 /* Determine the length of the file we're remapping to. */
109 fseek(to_file, 0, SEEK_END);
110 unsaved->Length = ftell(to_file);
111 fseek(to_file, 0, SEEK_SET);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000112
Douglas Gregor4db64a42010-01-23 00:14:00 +0000113 /* Read the contents of the file we're remapping to. */
114 contents = (char *)malloc(unsaved->Length + 1);
115 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) {
116 fprintf(stderr, "error: unexpected %s reading 'to' file %s\n",
117 (feof(to_file) ? "EOF" : "error"), semi + 1);
118 fclose(to_file);
119 free_remapped_files(*unsaved_files, i);
120 *unsaved_files = 0;
121 *num_unsaved_files = 0;
122 return -1;
123 }
124 contents[unsaved->Length] = 0;
125 unsaved->Contents = contents;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000126
Douglas Gregor4db64a42010-01-23 00:14:00 +0000127 /* Close the file. */
128 fclose(to_file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000129
Douglas Gregor4db64a42010-01-23 00:14:00 +0000130 /* Copy the file name that we're remapping from. */
131 filename_len = semi - arg_string;
132 filename = (char *)malloc(filename_len + 1);
133 memcpy(filename, arg_string, filename_len);
134 filename[filename_len] = 0;
135 unsaved->Filename = filename;
136 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000137
Douglas Gregor4db64a42010-01-23 00:14:00 +0000138 return 0;
139}
140
Ted Kremenek0d435192009-11-17 18:13:31 +0000141/******************************************************************************/
142/* Pretty-printing. */
143/******************************************************************************/
144
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000145static void PrintCursor(CXCursor Cursor) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000146 if (clang_isInvalid(Cursor.kind)) {
147 CXString ks = clang_getCursorKindSpelling(Cursor.kind);
148 printf("Invalid Cursor => %s", clang_getCString(ks));
149 clang_disposeString(ks);
150 }
Steve Naroff699a07d2009-09-25 21:32:34 +0000151 else {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000152 CXString string, ks;
Douglas Gregorc5d1e932010-01-19 01:20:04 +0000153 CXCursor Referenced;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000154 unsigned line, column;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000155
156 ks = clang_getCursorKindSpelling(Cursor.kind);
Steve Naroffef0cef62009-11-09 17:45:52 +0000157 string = clang_getCursorSpelling(Cursor);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000158 printf("%s=%s", clang_getCString(ks),
159 clang_getCString(string));
160 clang_disposeString(ks);
Steve Naroffef0cef62009-11-09 17:45:52 +0000161 clang_disposeString(string);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000162
Douglas Gregorc5d1e932010-01-19 01:20:04 +0000163 Referenced = clang_getCursorReferenced(Cursor);
164 if (!clang_equalCursors(Referenced, clang_getNullCursor())) {
165 CXSourceLocation Loc = clang_getCursorLocation(Referenced);
Douglas Gregor46766dc2010-01-26 19:19:08 +0000166 clang_getInstantiationLocation(Loc, 0, &line, &column, 0);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000167 printf(":%d:%d", line, column);
Douglas Gregorc5d1e932010-01-19 01:20:04 +0000168 }
Douglas Gregorb6998662010-01-19 19:34:47 +0000169
170 if (clang_isCursorDefinition(Cursor))
171 printf(" (Definition)");
Steve Naroff699a07d2009-09-25 21:32:34 +0000172 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000173}
Steve Naroff89922f82009-08-31 00:59:03 +0000174
Ted Kremeneke68fff62010-02-17 00:41:32 +0000175static const char* GetCursorSource(CXCursor Cursor) {
Douglas Gregor1db19de2010-01-19 21:36:55 +0000176 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
Ted Kremenek74844072010-02-17 00:41:20 +0000177 CXString source;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000178 CXFile file;
Douglas Gregor46766dc2010-01-26 19:19:08 +0000179 clang_getInstantiationLocation(Loc, &file, 0, 0, 0);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000180 source = clang_getFileName(file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000181 if (!clang_getCString(source)) {
Ted Kremenek74844072010-02-17 00:41:20 +0000182 clang_disposeString(source);
183 return "<invalid loc>";
184 }
185 else {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000186 const char *b = basename(clang_getCString(source));
Ted Kremenek74844072010-02-17 00:41:20 +0000187 clang_disposeString(source);
188 return b;
189 }
Ted Kremenek9298cfc2009-11-17 05:31:58 +0000190}
191
Ted Kremenek0d435192009-11-17 18:13:31 +0000192/******************************************************************************/
Ted Kremenekce2ae882010-01-26 17:59:48 +0000193/* Callbacks. */
194/******************************************************************************/
195
196typedef void (*PostVisitTU)(CXTranslationUnit);
197
Douglas Gregora88084b2010-02-18 18:08:43 +0000198void PrintDiagnostic(CXDiagnostic Diagnostic) {
199 FILE *out = stderr;
Douglas Gregor5352ac02010-01-28 00:27:43 +0000200 CXFile file;
Douglas Gregor274f1902010-02-22 23:17:23 +0000201 CXString Msg;
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000202 unsigned display_opts = CXDiagnostic_DisplaySourceLocation
203 | CXDiagnostic_DisplayColumn | CXDiagnostic_DisplaySourceRanges;
204 unsigned i, num_fixits;
Ted Kremenekf7b714d2010-03-25 02:00:39 +0000205
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000206 if (clang_getDiagnosticSeverity(Diagnostic) == CXDiagnostic_Ignored)
Douglas Gregor5352ac02010-01-28 00:27:43 +0000207 return;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000208
Douglas Gregor274f1902010-02-22 23:17:23 +0000209 Msg = clang_formatDiagnostic(Diagnostic, display_opts);
210 fprintf(stderr, "%s\n", clang_getCString(Msg));
211 clang_disposeString(Msg);
Ted Kremenekf7b714d2010-03-25 02:00:39 +0000212
Douglas Gregor5352ac02010-01-28 00:27:43 +0000213 clang_getInstantiationLocation(clang_getDiagnosticLocation(Diagnostic),
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000214 &file, 0, 0, 0);
215 if (!file)
216 return;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000217
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000218 num_fixits = clang_getDiagnosticNumFixIts(Diagnostic);
219 for (i = 0; i != num_fixits; ++i) {
Douglas Gregor473d7012010-02-19 18:16:06 +0000220 CXSourceRange range;
221 CXString insertion_text = clang_getDiagnosticFixIt(Diagnostic, i, &range);
222 CXSourceLocation start = clang_getRangeStart(range);
223 CXSourceLocation end = clang_getRangeEnd(range);
224 unsigned start_line, start_column, end_line, end_column;
225 CXFile start_file, end_file;
Ted Kremenekf7b714d2010-03-25 02:00:39 +0000226 clang_getInstantiationLocation(start, &start_file, &start_line,
Douglas Gregor473d7012010-02-19 18:16:06 +0000227 &start_column, 0);
228 clang_getInstantiationLocation(end, &end_file, &end_line, &end_column, 0);
229 if (clang_equalLocations(start, end)) {
230 /* Insertion. */
231 if (start_file == file)
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000232 fprintf(out, "FIX-IT: Insert \"%s\" at %d:%d\n",
Douglas Gregor473d7012010-02-19 18:16:06 +0000233 clang_getCString(insertion_text), start_line, start_column);
234 } else if (strcmp(clang_getCString(insertion_text), "") == 0) {
235 /* Removal. */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000236 if (start_file == file && end_file == file) {
237 fprintf(out, "FIX-IT: Remove ");
238 PrintExtent(out, start_line, start_column, end_line, end_column);
239 fprintf(out, "\n");
Douglas Gregor51c6d382010-01-29 00:41:11 +0000240 }
Douglas Gregor473d7012010-02-19 18:16:06 +0000241 } else {
242 /* Replacement. */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000243 if (start_file == end_file) {
244 fprintf(out, "FIX-IT: Replace ");
245 PrintExtent(out, start_line, start_column, end_line, end_column);
Douglas Gregor473d7012010-02-19 18:16:06 +0000246 fprintf(out, " with \"%s\"\n", clang_getCString(insertion_text));
Douglas Gregor436f3f02010-02-18 22:27:07 +0000247 }
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000248 break;
249 }
Douglas Gregor473d7012010-02-19 18:16:06 +0000250 clang_disposeString(insertion_text);
Douglas Gregor51c6d382010-01-29 00:41:11 +0000251 }
Douglas Gregor5352ac02010-01-28 00:27:43 +0000252}
253
Douglas Gregora88084b2010-02-18 18:08:43 +0000254void PrintDiagnostics(CXTranslationUnit TU) {
255 int i, n = clang_getNumDiagnostics(TU);
256 for (i = 0; i != n; ++i) {
257 CXDiagnostic Diag = clang_getDiagnostic(TU, i);
258 PrintDiagnostic(Diag);
259 clang_disposeDiagnostic(Diag);
260 }
261}
262
Ted Kremenekce2ae882010-01-26 17:59:48 +0000263/******************************************************************************/
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000264/* Logic for testing traversal. */
Ted Kremenek0d435192009-11-17 18:13:31 +0000265/******************************************************************************/
266
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000267static const char *FileCheckPrefix = "CHECK";
268
Douglas Gregora7bde202010-01-19 00:34:46 +0000269static void PrintCursorExtent(CXCursor C) {
270 CXSourceRange extent = clang_getCursorExtent(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000271 CXFile begin_file, end_file;
272 unsigned begin_line, begin_column, end_line, end_column;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000273
Douglas Gregor1db19de2010-01-19 21:36:55 +0000274 clang_getInstantiationLocation(clang_getRangeStart(extent),
Douglas Gregor46766dc2010-01-26 19:19:08 +0000275 &begin_file, &begin_line, &begin_column, 0);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000276 clang_getInstantiationLocation(clang_getRangeEnd(extent),
Douglas Gregor46766dc2010-01-26 19:19:08 +0000277 &end_file, &end_line, &end_column, 0);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000278 if (!begin_file || !end_file)
Ted Kremenek70ee5422010-01-16 01:44:12 +0000279 return;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000280
Daniel Dunbar51b058c2010-02-14 08:32:24 +0000281 printf(" Extent=");
282 PrintExtent(stdout, begin_line, begin_column, end_line, end_column);
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000283}
284
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000285/* Data used by all of the visitors. */
286typedef struct {
287 CXTranslationUnit TU;
288 enum CXCursorKind *Filter;
289} VisitorData;
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000290
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000291
Ted Kremeneke68fff62010-02-17 00:41:32 +0000292enum CXChildVisitResult FilteredPrintingVisitor(CXCursor Cursor,
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000293 CXCursor Parent,
294 CXClientData ClientData) {
295 VisitorData *Data = (VisitorData *)ClientData;
296 if (!Data->Filter || (Cursor.kind == *(enum CXCursorKind *)Data->Filter)) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000297 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000298 unsigned line, column;
Douglas Gregor46766dc2010-01-26 19:19:08 +0000299 clang_getInstantiationLocation(Loc, 0, &line, &column, 0);
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000300 printf("// %s: %s:%d:%d: ", FileCheckPrefix,
Douglas Gregor1db19de2010-01-19 21:36:55 +0000301 GetCursorSource(Cursor), line, column);
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000302 PrintCursor(Cursor);
Douglas Gregora7bde202010-01-19 00:34:46 +0000303 PrintCursorExtent(Cursor);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000304 printf("\n");
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000305 return CXChildVisit_Recurse;
Steve Naroff2d4d6292009-08-31 14:26:51 +0000306 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000307
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000308 return CXChildVisit_Continue;
Steve Naroff89922f82009-08-31 00:59:03 +0000309}
Steve Naroff50398192009-08-28 15:28:48 +0000310
Ted Kremeneke68fff62010-02-17 00:41:32 +0000311static enum CXChildVisitResult FunctionScanVisitor(CXCursor Cursor,
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000312 CXCursor Parent,
313 CXClientData ClientData) {
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000314 const char *startBuf, *endBuf;
315 unsigned startLine, startColumn, endLine, endColumn, curLine, curColumn;
316 CXCursor Ref;
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000317 VisitorData *Data = (VisitorData *)ClientData;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000318
Douglas Gregorb6998662010-01-19 19:34:47 +0000319 if (Cursor.kind != CXCursor_FunctionDecl ||
320 !clang_isCursorDefinition(Cursor))
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000321 return CXChildVisit_Continue;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000322
323 clang_getDefinitionSpellingAndExtent(Cursor, &startBuf, &endBuf,
324 &startLine, &startColumn,
325 &endLine, &endColumn);
326 /* Probe the entire body, looking for both decls and refs. */
327 curLine = startLine;
328 curColumn = startColumn;
329
330 while (startBuf < endBuf) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000331 CXSourceLocation Loc;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000332 CXFile file;
Ted Kremenek74844072010-02-17 00:41:20 +0000333 CXString source;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000334
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000335 if (*startBuf == '\n') {
336 startBuf++;
337 curLine++;
338 curColumn = 1;
339 } else if (*startBuf != '\t')
340 curColumn++;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000341
Douglas Gregor98258af2010-01-18 22:46:11 +0000342 Loc = clang_getCursorLocation(Cursor);
Douglas Gregor46766dc2010-01-26 19:19:08 +0000343 clang_getInstantiationLocation(Loc, &file, 0, 0, 0);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000344
Douglas Gregor1db19de2010-01-19 21:36:55 +0000345 source = clang_getFileName(file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000346 if (clang_getCString(source)) {
Douglas Gregorb9790342010-01-22 21:44:22 +0000347 CXSourceLocation RefLoc
348 = clang_getLocation(Data->TU, file, curLine, curColumn);
349 Ref = clang_getCursor(Data->TU, RefLoc);
Douglas Gregor98258af2010-01-18 22:46:11 +0000350 if (Ref.kind == CXCursor_NoDeclFound) {
351 /* Nothing found here; that's fine. */
352 } else if (Ref.kind != CXCursor_FunctionDecl) {
353 printf("// %s: %s:%d:%d: ", FileCheckPrefix, GetCursorSource(Ref),
354 curLine, curColumn);
355 PrintCursor(Ref);
356 printf("\n");
357 }
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000358 }
Ted Kremenek74844072010-02-17 00:41:20 +0000359 clang_disposeString(source);
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000360 startBuf++;
361 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000362
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000363 return CXChildVisit_Continue;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000364}
365
Ted Kremenek7d405622010-01-12 23:34:26 +0000366/******************************************************************************/
367/* USR testing. */
368/******************************************************************************/
369
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000370enum CXChildVisitResult USRVisitor(CXCursor C, CXCursor parent,
371 CXClientData ClientData) {
372 VisitorData *Data = (VisitorData *)ClientData;
373 if (!Data->Filter || (C.kind == *(enum CXCursorKind *)Data->Filter)) {
Ted Kremenekcf84aa42010-01-18 20:23:29 +0000374 CXString USR = clang_getCursorUSR(C);
Ted Kremeneke542f772010-04-20 23:15:40 +0000375 const char *cstr = clang_getCString(USR);
376 if (!cstr || cstr[0] == '\0') {
Ted Kremenek7d405622010-01-12 23:34:26 +0000377 clang_disposeString(USR);
Ted Kremeneke74ef122010-04-16 21:31:52 +0000378 return CXChildVisit_Recurse;
Ted Kremenek7d405622010-01-12 23:34:26 +0000379 }
Ted Kremeneke542f772010-04-20 23:15:40 +0000380 printf("// %s: %s %s", FileCheckPrefix, GetCursorSource(C), cstr);
381
Douglas Gregora7bde202010-01-19 00:34:46 +0000382 PrintCursorExtent(C);
Ted Kremenek7d405622010-01-12 23:34:26 +0000383 printf("\n");
384 clang_disposeString(USR);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000385
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000386 return CXChildVisit_Recurse;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000387 }
388
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000389 return CXChildVisit_Continue;
Ted Kremenek7d405622010-01-12 23:34:26 +0000390}
391
392/******************************************************************************/
Ted Kremenek16b55a72010-01-26 19:31:51 +0000393/* Inclusion stack testing. */
394/******************************************************************************/
395
396void InclusionVisitor(CXFile includedFile, CXSourceLocation *includeStack,
397 unsigned includeStackLen, CXClientData data) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000398
Ted Kremenek16b55a72010-01-26 19:31:51 +0000399 unsigned i;
Ted Kremenek74844072010-02-17 00:41:20 +0000400 CXString fname;
401
402 fname = clang_getFileName(includedFile);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000403 printf("file: %s\nincluded by:\n", clang_getCString(fname));
Ted Kremenek74844072010-02-17 00:41:20 +0000404 clang_disposeString(fname);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000405
Ted Kremenek16b55a72010-01-26 19:31:51 +0000406 for (i = 0; i < includeStackLen; ++i) {
407 CXFile includingFile;
408 unsigned line, column;
409 clang_getInstantiationLocation(includeStack[i], &includingFile, &line,
410 &column, 0);
Ted Kremenek74844072010-02-17 00:41:20 +0000411 fname = clang_getFileName(includingFile);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000412 printf(" %s:%d:%d\n", clang_getCString(fname), line, column);
Ted Kremenek74844072010-02-17 00:41:20 +0000413 clang_disposeString(fname);
Ted Kremenek16b55a72010-01-26 19:31:51 +0000414 }
415 printf("\n");
416}
417
418void PrintInclusionStack(CXTranslationUnit TU) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000419 clang_getInclusions(TU, InclusionVisitor, NULL);
Ted Kremenek16b55a72010-01-26 19:31:51 +0000420}
421
422/******************************************************************************/
Ted Kremenek3bed5272010-03-03 06:37:58 +0000423/* Linkage testing. */
424/******************************************************************************/
425
426static enum CXChildVisitResult PrintLinkage(CXCursor cursor, CXCursor p,
427 CXClientData d) {
428 const char *linkage = 0;
429
430 if (clang_isInvalid(clang_getCursorKind(cursor)))
431 return CXChildVisit_Recurse;
432
433 switch (clang_getCursorLinkage(cursor)) {
434 case CXLinkage_Invalid: break;
Douglas Gregorc2a2b3c2010-03-04 19:36:27 +0000435 case CXLinkage_NoLinkage: linkage = "NoLinkage"; break;
436 case CXLinkage_Internal: linkage = "Internal"; break;
437 case CXLinkage_UniqueExternal: linkage = "UniqueExternal"; break;
438 case CXLinkage_External: linkage = "External"; break;
Ted Kremenek3bed5272010-03-03 06:37:58 +0000439 }
440
441 if (linkage) {
442 PrintCursor(cursor);
443 printf("linkage=%s\n", linkage);
444 }
445
446 return CXChildVisit_Recurse;
447}
448
449/******************************************************************************/
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000450/* Typekind testing. */
451/******************************************************************************/
452
453static enum CXChildVisitResult PrintTypeKind(CXCursor cursor, CXCursor p,
454 CXClientData d) {
455
456 if (!clang_isInvalid(clang_getCursorKind(cursor))) {
457 CXType T = clang_getCursorType(cursor);
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000458 CXString S = clang_getTypeKindSpelling(T.kind);
459 PrintCursor(cursor);
460 printf(" typekind=%s", clang_getCString(S));
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000461 clang_disposeString(S);
Benjamin Kramere1403d22010-06-22 09:29:44 +0000462 /* Print the canonical type if it is different. */
Ted Kremenek04c3cf32010-06-21 20:15:39 +0000463 {
464 CXType CT = clang_getCanonicalType(T);
465 if (!clang_equalTypes(T, CT)) {
466 CXString CS = clang_getTypeKindSpelling(CT.kind);
467 printf(" [canonical=%s]", clang_getCString(CS));
468 clang_disposeString(CS);
469 }
470 }
Benjamin Kramere1403d22010-06-22 09:29:44 +0000471 /* Print the return type if it exists. */
Ted Kremenek04c3cf32010-06-21 20:15:39 +0000472 {
Ted Kremenek9a140842010-06-21 20:48:56 +0000473 CXType RT = clang_getCursorResultType(cursor);
Ted Kremenek04c3cf32010-06-21 20:15:39 +0000474 if (RT.kind != CXType_Invalid) {
475 CXString RS = clang_getTypeKindSpelling(RT.kind);
476 printf(" [result=%s]", clang_getCString(RS));
477 clang_disposeString(RS);
478 }
479 }
480
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000481 printf("\n");
482 }
483 return CXChildVisit_Recurse;
484}
485
486
487/******************************************************************************/
Ted Kremenek7d405622010-01-12 23:34:26 +0000488/* Loading ASTs/source. */
489/******************************************************************************/
490
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000491static int perform_test_load(CXIndex Idx, CXTranslationUnit TU,
Ted Kremenek98271562010-01-12 18:53:15 +0000492 const char *filter, const char *prefix,
Ted Kremenekce2ae882010-01-26 17:59:48 +0000493 CXCursorVisitor Visitor,
494 PostVisitTU PV) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000495
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000496 if (prefix)
Ted Kremeneke68fff62010-02-17 00:41:32 +0000497 FileCheckPrefix = prefix;
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000498
499 if (Visitor) {
500 enum CXCursorKind K = CXCursor_NotImplemented;
501 enum CXCursorKind *ck = &K;
502 VisitorData Data;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000503
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000504 /* Perform some simple filtering. */
505 if (!strcmp(filter, "all") || !strcmp(filter, "local")) ck = NULL;
Daniel Dunbarb1ffee62010-02-10 20:42:40 +0000506 else if (!strcmp(filter, "none")) K = (enum CXCursorKind) ~0;
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000507 else if (!strcmp(filter, "category")) K = CXCursor_ObjCCategoryDecl;
508 else if (!strcmp(filter, "interface")) K = CXCursor_ObjCInterfaceDecl;
509 else if (!strcmp(filter, "protocol")) K = CXCursor_ObjCProtocolDecl;
510 else if (!strcmp(filter, "function")) K = CXCursor_FunctionDecl;
511 else if (!strcmp(filter, "typedef")) K = CXCursor_TypedefDecl;
512 else if (!strcmp(filter, "scan-function")) Visitor = FunctionScanVisitor;
513 else {
514 fprintf(stderr, "Unknown filter for -test-load-tu: %s\n", filter);
515 return 1;
516 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000517
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000518 Data.TU = TU;
519 Data.Filter = ck;
520 clang_visitChildren(clang_getTranslationUnitCursor(TU), Visitor, &Data);
Ted Kremenek0d435192009-11-17 18:13:31 +0000521 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000522
Ted Kremenekce2ae882010-01-26 17:59:48 +0000523 if (PV)
524 PV(TU);
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000525
Douglas Gregora88084b2010-02-18 18:08:43 +0000526 PrintDiagnostics(TU);
Ted Kremenek0d435192009-11-17 18:13:31 +0000527 clang_disposeTranslationUnit(TU);
528 return 0;
529}
530
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000531int perform_test_load_tu(const char *file, const char *filter,
Ted Kremenekce2ae882010-01-26 17:59:48 +0000532 const char *prefix, CXCursorVisitor Visitor,
533 PostVisitTU PV) {
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000534 CXIndex Idx;
535 CXTranslationUnit TU;
Ted Kremenek020a0952010-02-11 07:41:25 +0000536 int result;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000537 Idx = clang_createIndex(/* excludeDeclsFromPCH */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000538 !strcmp(filter, "local") ? 1 : 0,
539 /* displayDiagnosics=*/1);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000540
Ted Kremenek020a0952010-02-11 07:41:25 +0000541 if (!CreateTranslationUnit(Idx, file, &TU)) {
542 clang_disposeIndex(Idx);
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000543 return 1;
Ted Kremenek020a0952010-02-11 07:41:25 +0000544 }
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000545
Ted Kremenek020a0952010-02-11 07:41:25 +0000546 result = perform_test_load(Idx, TU, filter, prefix, Visitor, PV);
547 clang_disposeIndex(Idx);
548 return result;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000549}
550
Ted Kremenekce2ae882010-01-26 17:59:48 +0000551int perform_test_load_source(int argc, const char **argv,
552 const char *filter, CXCursorVisitor Visitor,
553 PostVisitTU PV) {
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000554 const char *UseExternalASTs =
555 getenv("CINDEXTEST_USE_EXTERNAL_AST_GENERATION");
Daniel Dunbarada487d2009-12-01 02:03:10 +0000556 CXIndex Idx;
557 CXTranslationUnit TU;
Douglas Gregor4db64a42010-01-23 00:14:00 +0000558 struct CXUnsavedFile *unsaved_files = 0;
559 int num_unsaved_files = 0;
560 int result;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000561
Daniel Dunbarada487d2009-12-01 02:03:10 +0000562 Idx = clang_createIndex(/* excludeDeclsFromPCH */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000563 !strcmp(filter, "local") ? 1 : 0,
564 /* displayDiagnosics=*/1);
Daniel Dunbarada487d2009-12-01 02:03:10 +0000565
Daniel Dunbar8506dde2009-12-03 01:54:28 +0000566 if (UseExternalASTs && strlen(UseExternalASTs))
567 clang_setUseExternalASTGeneration(Idx, 1);
568
Ted Kremenek020a0952010-02-11 07:41:25 +0000569 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
570 clang_disposeIndex(Idx);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000571 return -1;
Ted Kremenek020a0952010-02-11 07:41:25 +0000572 }
Douglas Gregor4db64a42010-01-23 00:14:00 +0000573
Ted Kremeneke68fff62010-02-17 00:41:32 +0000574 TU = clang_createTranslationUnitFromSourceFile(Idx, 0,
575 argc - num_unsaved_files,
Douglas Gregor4db64a42010-01-23 00:14:00 +0000576 argv + num_unsaved_files,
577 num_unsaved_files,
Douglas Gregora88084b2010-02-18 18:08:43 +0000578 unsaved_files);
Daniel Dunbarada487d2009-12-01 02:03:10 +0000579 if (!TU) {
580 fprintf(stderr, "Unable to load translation unit!\n");
Douglas Gregorabc563f2010-07-19 21:46:24 +0000581 free_remapped_files(unsaved_files, num_unsaved_files);
Ted Kremenek020a0952010-02-11 07:41:25 +0000582 clang_disposeIndex(Idx);
Daniel Dunbarada487d2009-12-01 02:03:10 +0000583 return 1;
584 }
585
Ted Kremenekce2ae882010-01-26 17:59:48 +0000586 result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000587 free_remapped_files(unsaved_files, num_unsaved_files);
Ted Kremenek020a0952010-02-11 07:41:25 +0000588 clang_disposeIndex(Idx);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000589 return result;
Daniel Dunbarada487d2009-12-01 02:03:10 +0000590}
591
Douglas Gregorabc563f2010-07-19 21:46:24 +0000592int perform_test_reparse_source(int argc, const char **argv, int trials,
593 const char *filter, CXCursorVisitor Visitor,
594 PostVisitTU PV) {
595 const char *UseExternalASTs =
596 getenv("CINDEXTEST_USE_EXTERNAL_AST_GENERATION");
597 CXIndex Idx;
598 CXTranslationUnit TU;
599 struct CXUnsavedFile *unsaved_files = 0;
600 int num_unsaved_files = 0;
601 int result;
602 int trial;
603
604 Idx = clang_createIndex(/* excludeDeclsFromPCH */
605 !strcmp(filter, "local") ? 1 : 0,
606 /* displayDiagnosics=*/1);
607
608 if (UseExternalASTs && strlen(UseExternalASTs))
609 clang_setUseExternalASTGeneration(Idx, 1);
610
611 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
612 clang_disposeIndex(Idx);
613 return -1;
614 }
615
616 TU = clang_createTranslationUnitFromSourceFile(Idx, 0,
617 argc - num_unsaved_files,
618 argv + num_unsaved_files,
619 num_unsaved_files,
620 unsaved_files);
621 if (!TU) {
622 fprintf(stderr, "Unable to load translation unit!\n");
623 free_remapped_files(unsaved_files, num_unsaved_files);
624 clang_disposeIndex(Idx);
625 return 1;
626 }
627
628 for (trial = 0; trial < trials; ++trial) {
629 if (clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files)) {
630 clang_disposeTranslationUnit(TU);
631 free_remapped_files(unsaved_files, num_unsaved_files);
632 clang_disposeIndex(Idx);
633 return -1;
634 }
635 }
636
637 result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV);
638 free_remapped_files(unsaved_files, num_unsaved_files);
639 clang_disposeIndex(Idx);
640 return result;
641}
642
Ted Kremenek0d435192009-11-17 18:13:31 +0000643/******************************************************************************/
Ted Kremenek1c6da172009-11-17 19:37:36 +0000644/* Logic for testing clang_getCursor(). */
645/******************************************************************************/
646
647static void print_cursor_file_scan(CXCursor cursor,
648 unsigned start_line, unsigned start_col,
Ted Kremenek1d5fdf32009-11-18 02:02:52 +0000649 unsigned end_line, unsigned end_col,
650 const char *prefix) {
Ted Kremenek9096a202010-01-07 01:17:12 +0000651 printf("// %s: ", FileCheckPrefix);
Ted Kremenek1d5fdf32009-11-18 02:02:52 +0000652 if (prefix)
653 printf("-%s", prefix);
Daniel Dunbar51b058c2010-02-14 08:32:24 +0000654 PrintExtent(stdout, start_line, start_col, end_line, end_col);
655 printf(" ");
Ted Kremenek1c6da172009-11-17 19:37:36 +0000656 PrintCursor(cursor);
657 printf("\n");
658}
659
Ted Kremenek1d5fdf32009-11-18 02:02:52 +0000660static int perform_file_scan(const char *ast_file, const char *source_file,
661 const char *prefix) {
Ted Kremenek1c6da172009-11-17 19:37:36 +0000662 CXIndex Idx;
663 CXTranslationUnit TU;
664 FILE *fp;
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000665 CXCursor prevCursor = clang_getNullCursor();
Douglas Gregorb9790342010-01-22 21:44:22 +0000666 CXFile file;
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000667 unsigned line = 1, col = 1;
Daniel Dunbar8f0bf812010-02-14 08:32:51 +0000668 unsigned start_line = 1, start_col = 1;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000669
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000670 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
671 /* displayDiagnosics=*/1))) {
Ted Kremenek1c6da172009-11-17 19:37:36 +0000672 fprintf(stderr, "Could not create Index\n");
673 return 1;
674 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000675
Ted Kremenek1c6da172009-11-17 19:37:36 +0000676 if (!CreateTranslationUnit(Idx, ast_file, &TU))
677 return 1;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000678
Ted Kremenek1c6da172009-11-17 19:37:36 +0000679 if ((fp = fopen(source_file, "r")) == NULL) {
680 fprintf(stderr, "Could not open '%s'\n", source_file);
681 return 1;
682 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000683
Douglas Gregorb9790342010-01-22 21:44:22 +0000684 file = clang_getFile(TU, source_file);
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000685 for (;;) {
686 CXCursor cursor;
687 int c = fgetc(fp);
Benjamin Kramera9933b92009-11-17 20:51:40 +0000688
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000689 if (c == '\n') {
690 ++line;
691 col = 1;
692 } else
693 ++col;
694
695 /* Check the cursor at this position, and dump the previous one if we have
696 * found something new.
697 */
698 cursor = clang_getCursor(TU, clang_getLocation(TU, file, line, col));
699 if ((c == EOF || !clang_equalCursors(cursor, prevCursor)) &&
700 prevCursor.kind != CXCursor_InvalidFile) {
701 print_cursor_file_scan(prevCursor, start_line, start_col,
Daniel Dunbard52864b2010-02-14 10:02:57 +0000702 line, col, prefix);
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000703 start_line = line;
704 start_col = col;
Benjamin Kramera9933b92009-11-17 20:51:40 +0000705 }
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000706 if (c == EOF)
707 break;
Benjamin Kramera9933b92009-11-17 20:51:40 +0000708
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000709 prevCursor = cursor;
Ted Kremenek1c6da172009-11-17 19:37:36 +0000710 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000711
Ted Kremenek1c6da172009-11-17 19:37:36 +0000712 fclose(fp);
713 return 0;
714}
715
716/******************************************************************************/
Ted Kremenek0d435192009-11-17 18:13:31 +0000717/* Logic for testing clang_codeComplete(). */
718/******************************************************************************/
719
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000720/* Parse file:line:column from the input string. Returns 0 on success, non-zero
721 on failure. If successful, the pointer *filename will contain newly-allocated
722 memory (that will be owned by the caller) to store the file name. */
Ted Kremeneke68fff62010-02-17 00:41:32 +0000723int parse_file_line_column(const char *input, char **filename, unsigned *line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000724 unsigned *column, unsigned *second_line,
725 unsigned *second_column) {
Douglas Gregor88d23952009-11-09 18:19:57 +0000726 /* Find the second colon. */
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000727 const char *last_colon = strrchr(input, ':');
728 unsigned values[4], i;
729 unsigned num_values = (second_line && second_column)? 4 : 2;
730
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000731 char *endptr = 0;
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000732 if (!last_colon || last_colon == input) {
733 if (num_values == 4)
734 fprintf(stderr, "could not parse filename:line:column:line:column in "
735 "'%s'\n", input);
736 else
737 fprintf(stderr, "could not parse filename:line:column in '%s'\n", input);
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000738 return 1;
739 }
740
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000741 for (i = 0; i != num_values; ++i) {
742 const char *prev_colon;
743
744 /* Parse the next line or column. */
745 values[num_values - i - 1] = strtol(last_colon + 1, &endptr, 10);
746 if (*endptr != 0 && *endptr != ':') {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000747 fprintf(stderr, "could not parse %s in '%s'\n",
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000748 (i % 2 ? "column" : "line"), input);
749 return 1;
750 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000751
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000752 if (i + 1 == num_values)
753 break;
754
755 /* Find the previous colon. */
756 prev_colon = last_colon - 1;
757 while (prev_colon != input && *prev_colon != ':')
758 --prev_colon;
759 if (prev_colon == input) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000760 fprintf(stderr, "could not parse %s in '%s'\n",
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000761 (i % 2 == 0? "column" : "line"), input);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000762 return 1;
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000763 }
764
765 last_colon = prev_colon;
Douglas Gregor88d23952009-11-09 18:19:57 +0000766 }
767
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000768 *line = values[0];
769 *column = values[1];
Ted Kremeneke68fff62010-02-17 00:41:32 +0000770
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000771 if (second_line && second_column) {
772 *second_line = values[2];
773 *second_column = values[3];
774 }
775
Douglas Gregor88d23952009-11-09 18:19:57 +0000776 /* Copy the file name. */
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000777 *filename = (char*)malloc(last_colon - input + 1);
778 memcpy(*filename, input, last_colon - input);
779 (*filename)[last_colon - input] = 0;
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000780 return 0;
781}
782
783const char *
784clang_getCompletionChunkKindSpelling(enum CXCompletionChunkKind Kind) {
785 switch (Kind) {
786 case CXCompletionChunk_Optional: return "Optional";
787 case CXCompletionChunk_TypedText: return "TypedText";
788 case CXCompletionChunk_Text: return "Text";
789 case CXCompletionChunk_Placeholder: return "Placeholder";
790 case CXCompletionChunk_Informative: return "Informative";
791 case CXCompletionChunk_CurrentParameter: return "CurrentParameter";
792 case CXCompletionChunk_LeftParen: return "LeftParen";
793 case CXCompletionChunk_RightParen: return "RightParen";
794 case CXCompletionChunk_LeftBracket: return "LeftBracket";
795 case CXCompletionChunk_RightBracket: return "RightBracket";
796 case CXCompletionChunk_LeftBrace: return "LeftBrace";
797 case CXCompletionChunk_RightBrace: return "RightBrace";
798 case CXCompletionChunk_LeftAngle: return "LeftAngle";
799 case CXCompletionChunk_RightAngle: return "RightAngle";
800 case CXCompletionChunk_Comma: return "Comma";
Douglas Gregorff5ce6e2009-12-18 18:53:37 +0000801 case CXCompletionChunk_ResultType: return "ResultType";
Douglas Gregor01dfea02010-01-10 23:08:15 +0000802 case CXCompletionChunk_Colon: return "Colon";
803 case CXCompletionChunk_SemiColon: return "SemiColon";
804 case CXCompletionChunk_Equal: return "Equal";
805 case CXCompletionChunk_HorizontalSpace: return "HorizontalSpace";
806 case CXCompletionChunk_VerticalSpace: return "VerticalSpace";
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000807 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000808
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000809 return "Unknown";
810}
811
Douglas Gregor3ac73852009-11-09 16:04:45 +0000812void print_completion_string(CXCompletionString completion_string, FILE *file) {
Daniel Dunbarf8297f12009-11-07 18:34:24 +0000813 int I, N;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000814
Douglas Gregor3ac73852009-11-09 16:04:45 +0000815 N = clang_getNumCompletionChunks(completion_string);
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000816 for (I = 0; I != N; ++I) {
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +0000817 CXString text;
818 const char *cstr;
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000819 enum CXCompletionChunkKind Kind
Douglas Gregor3ac73852009-11-09 16:04:45 +0000820 = clang_getCompletionChunkKind(completion_string, I);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000821
Douglas Gregor3ac73852009-11-09 16:04:45 +0000822 if (Kind == CXCompletionChunk_Optional) {
823 fprintf(file, "{Optional ");
824 print_completion_string(
Ted Kremeneke68fff62010-02-17 00:41:32 +0000825 clang_getCompletionChunkCompletionString(completion_string, I),
Douglas Gregor3ac73852009-11-09 16:04:45 +0000826 file);
827 fprintf(file, "}");
828 continue;
829 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000830
Douglas Gregord5a20892009-11-09 17:05:28 +0000831 text = clang_getCompletionChunkText(completion_string, I);
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +0000832 cstr = clang_getCString(text);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000833 fprintf(file, "{%s %s}",
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000834 clang_getCompletionChunkKindSpelling(Kind),
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +0000835 cstr ? cstr : "");
836 clang_disposeString(text);
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000837 }
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +0000838
Douglas Gregor3ac73852009-11-09 16:04:45 +0000839}
840
841void print_completion_result(CXCompletionResult *completion_result,
842 CXClientData client_data) {
843 FILE *file = (FILE *)client_data;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000844 CXString ks = clang_getCursorKindSpelling(completion_result->CursorKind);
845
846 fprintf(file, "%s:", clang_getCString(ks));
847 clang_disposeString(ks);
848
Douglas Gregor3ac73852009-11-09 16:04:45 +0000849 print_completion_string(completion_result->CompletionString, file);
Douglas Gregor12e13132010-05-26 22:00:08 +0000850 fprintf(file, " (%u)\n",
851 clang_getCompletionPriority(completion_result->CompletionString));
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000852}
853
Douglas Gregor1982c182010-07-12 18:38:41 +0000854int perform_code_completion(int argc, const char **argv, int timing_only) {
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000855 const char *input = argv[1];
856 char *filename = 0;
857 unsigned line;
858 unsigned column;
Daniel Dunbarf8297f12009-11-07 18:34:24 +0000859 CXIndex CIdx;
Ted Kremenekf5d9c932009-11-17 18:09:14 +0000860 int errorCode;
Douglas Gregor735df882009-12-02 09:21:34 +0000861 struct CXUnsavedFile *unsaved_files = 0;
862 int num_unsaved_files = 0;
Douglas Gregorec6762c2009-12-18 16:20:58 +0000863 CXCodeCompleteResults *results = 0;
Daniel Dunbarf8297f12009-11-07 18:34:24 +0000864
Douglas Gregor1982c182010-07-12 18:38:41 +0000865 if (timing_only)
866 input += strlen("-code-completion-timing=");
867 else
868 input += strlen("-code-completion-at=");
869
Ted Kremeneke68fff62010-02-17 00:41:32 +0000870 if ((errorCode = parse_file_line_column(input, &filename, &line, &column,
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000871 0, 0)))
Ted Kremenekf5d9c932009-11-17 18:09:14 +0000872 return errorCode;
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000873
Douglas Gregor735df882009-12-02 09:21:34 +0000874 if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files))
875 return -1;
876
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000877 CIdx = clang_createIndex(0, 1);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000878 results = clang_codeComplete(CIdx,
879 argv[argc - 1], argc - num_unsaved_files - 3,
880 argv + num_unsaved_files + 2,
Douglas Gregorec6762c2009-12-18 16:20:58 +0000881 num_unsaved_files, unsaved_files,
Douglas Gregora88084b2010-02-18 18:08:43 +0000882 filename, line, column);
Douglas Gregor936ea3b2010-01-28 00:56:43 +0000883
Douglas Gregorec6762c2009-12-18 16:20:58 +0000884 if (results) {
885 unsigned i, n = results->NumResults;
Douglas Gregor1982c182010-07-12 18:38:41 +0000886 if (!timing_only)
887 for (i = 0; i != n; ++i)
888 print_completion_result(results->Results + i, stdout);
Douglas Gregora88084b2010-02-18 18:08:43 +0000889 n = clang_codeCompleteGetNumDiagnostics(results);
890 for (i = 0; i != n; ++i) {
891 CXDiagnostic diag = clang_codeCompleteGetDiagnostic(results, i);
892 PrintDiagnostic(diag);
893 clang_disposeDiagnostic(diag);
894 }
Douglas Gregorec6762c2009-12-18 16:20:58 +0000895 clang_disposeCodeCompleteResults(results);
896 }
897
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000898 clang_disposeIndex(CIdx);
899 free(filename);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000900
Douglas Gregor735df882009-12-02 09:21:34 +0000901 free_remapped_files(unsaved_files, num_unsaved_files);
902
Ted Kremenekf5d9c932009-11-17 18:09:14 +0000903 return 0;
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000904}
905
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000906typedef struct {
907 char *filename;
908 unsigned line;
909 unsigned column;
910} CursorSourceLocation;
911
912int inspect_cursor_at(int argc, const char **argv) {
913 CXIndex CIdx;
914 int errorCode;
915 struct CXUnsavedFile *unsaved_files = 0;
916 int num_unsaved_files = 0;
917 CXTranslationUnit TU;
918 CXCursor Cursor;
919 CursorSourceLocation *Locations = 0;
920 unsigned NumLocations = 0, Loc;
Douglas Gregor4db64a42010-01-23 00:14:00 +0000921
Ted Kremeneke68fff62010-02-17 00:41:32 +0000922 /* Count the number of locations. */
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000923 while (strstr(argv[NumLocations+1], "-cursor-at=") == argv[NumLocations+1])
924 ++NumLocations;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000925
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000926 /* Parse the locations. */
927 assert(NumLocations > 0 && "Unable to count locations?");
928 Locations = (CursorSourceLocation *)malloc(
929 NumLocations * sizeof(CursorSourceLocation));
930 for (Loc = 0; Loc < NumLocations; ++Loc) {
931 const char *input = argv[Loc + 1] + strlen("-cursor-at=");
Ted Kremeneke68fff62010-02-17 00:41:32 +0000932 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
933 &Locations[Loc].line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000934 &Locations[Loc].column, 0, 0)))
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000935 return errorCode;
936 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000937
938 if (parse_remapped_files(argc, argv, NumLocations + 1, &unsaved_files,
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000939 &num_unsaved_files))
940 return -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000941
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000942 CIdx = clang_createIndex(0, 1);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000943 TU = clang_createTranslationUnitFromSourceFile(CIdx, argv[argc - 1],
944 argc - num_unsaved_files - 2 - NumLocations,
Douglas Gregor4db64a42010-01-23 00:14:00 +0000945 argv + num_unsaved_files + 1 + NumLocations,
946 num_unsaved_files,
Douglas Gregora88084b2010-02-18 18:08:43 +0000947 unsaved_files);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000948 if (!TU) {
949 fprintf(stderr, "unable to parse input\n");
950 return -1;
951 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000952
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000953 for (Loc = 0; Loc < NumLocations; ++Loc) {
Douglas Gregorb9790342010-01-22 21:44:22 +0000954 CXFile file = clang_getFile(TU, Locations[Loc].filename);
955 if (!file)
956 continue;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000957
958 Cursor = clang_getCursor(TU,
959 clang_getLocation(TU, file, Locations[Loc].line,
960 Locations[Loc].column));
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000961 PrintCursor(Cursor);
962 printf("\n");
963 free(Locations[Loc].filename);
964 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000965
Douglas Gregora88084b2010-02-18 18:08:43 +0000966 PrintDiagnostics(TU);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +0000967 clang_disposeTranslationUnit(TU);
968 clang_disposeIndex(CIdx);
969 free(Locations);
970 free_remapped_files(unsaved_files, num_unsaved_files);
971 return 0;
972}
973
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000974int perform_token_annotation(int argc, const char **argv) {
975 const char *input = argv[1];
976 char *filename = 0;
977 unsigned line, second_line;
978 unsigned column, second_column;
979 CXIndex CIdx;
980 CXTranslationUnit TU = 0;
981 int errorCode;
982 struct CXUnsavedFile *unsaved_files = 0;
983 int num_unsaved_files = 0;
984 CXToken *tokens;
985 unsigned num_tokens;
986 CXSourceRange range;
987 CXSourceLocation startLoc, endLoc;
988 CXFile file = 0;
989 CXCursor *cursors = 0;
990 unsigned i;
991
992 input += strlen("-test-annotate-tokens=");
993 if ((errorCode = parse_file_line_column(input, &filename, &line, &column,
994 &second_line, &second_column)))
995 return errorCode;
996
997 if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files))
998 return -1;
999
Douglas Gregor0a812cf2010-02-18 23:07:20 +00001000 CIdx = clang_createIndex(0, 1);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001001 TU = clang_createTranslationUnitFromSourceFile(CIdx, argv[argc - 1],
1002 argc - num_unsaved_files - 3,
1003 argv + num_unsaved_files + 2,
1004 num_unsaved_files,
Douglas Gregora88084b2010-02-18 18:08:43 +00001005 unsaved_files);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001006 if (!TU) {
1007 fprintf(stderr, "unable to parse input\n");
1008 clang_disposeIndex(CIdx);
1009 free(filename);
1010 free_remapped_files(unsaved_files, num_unsaved_files);
1011 return -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001012 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001013 errorCode = 0;
1014
1015 file = clang_getFile(TU, filename);
1016 if (!file) {
1017 fprintf(stderr, "file %s is not in this translation unit\n", filename);
1018 errorCode = -1;
1019 goto teardown;
1020 }
1021
1022 startLoc = clang_getLocation(TU, file, line, column);
1023 if (clang_equalLocations(clang_getNullLocation(), startLoc)) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001024 fprintf(stderr, "invalid source location %s:%d:%d\n", filename, line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001025 column);
1026 errorCode = -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001027 goto teardown;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001028 }
1029
1030 endLoc = clang_getLocation(TU, file, second_line, second_column);
1031 if (clang_equalLocations(clang_getNullLocation(), endLoc)) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001032 fprintf(stderr, "invalid source location %s:%d:%d\n", filename,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001033 second_line, second_column);
1034 errorCode = -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001035 goto teardown;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001036 }
1037
1038 range = clang_getRange(startLoc, endLoc);
1039 clang_tokenize(TU, range, &tokens, &num_tokens);
1040 cursors = (CXCursor *)malloc(num_tokens * sizeof(CXCursor));
1041 clang_annotateTokens(TU, tokens, num_tokens, cursors);
1042 for (i = 0; i != num_tokens; ++i) {
1043 const char *kind = "<unknown>";
1044 CXString spelling = clang_getTokenSpelling(TU, tokens[i]);
1045 CXSourceRange extent = clang_getTokenExtent(TU, tokens[i]);
1046 unsigned start_line, start_column, end_line, end_column;
1047
1048 switch (clang_getTokenKind(tokens[i])) {
1049 case CXToken_Punctuation: kind = "Punctuation"; break;
1050 case CXToken_Keyword: kind = "Keyword"; break;
1051 case CXToken_Identifier: kind = "Identifier"; break;
1052 case CXToken_Literal: kind = "Literal"; break;
1053 case CXToken_Comment: kind = "Comment"; break;
1054 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001055 clang_getInstantiationLocation(clang_getRangeStart(extent),
Douglas Gregor46766dc2010-01-26 19:19:08 +00001056 0, &start_line, &start_column, 0);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001057 clang_getInstantiationLocation(clang_getRangeEnd(extent),
Douglas Gregor46766dc2010-01-26 19:19:08 +00001058 0, &end_line, &end_column, 0);
Daniel Dunbar51b058c2010-02-14 08:32:24 +00001059 printf("%s: \"%s\" ", kind, clang_getCString(spelling));
1060 PrintExtent(stdout, start_line, start_column, end_line, end_column);
Douglas Gregor0045e9f2010-01-26 18:31:56 +00001061 if (!clang_isInvalid(cursors[i].kind)) {
1062 printf(" ");
1063 PrintCursor(cursors[i]);
1064 }
1065 printf("\n");
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001066 }
1067 free(cursors);
1068
1069 teardown:
Douglas Gregora88084b2010-02-18 18:08:43 +00001070 PrintDiagnostics(TU);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001071 clang_disposeTranslationUnit(TU);
1072 clang_disposeIndex(CIdx);
1073 free(filename);
1074 free_remapped_files(unsaved_files, num_unsaved_files);
1075 return errorCode;
1076}
1077
Ted Kremenek0d435192009-11-17 18:13:31 +00001078/******************************************************************************/
Ted Kremenekf7b714d2010-03-25 02:00:39 +00001079/* USR printing. */
1080/******************************************************************************/
1081
1082static int insufficient_usr(const char *kind, const char *usage) {
1083 fprintf(stderr, "USR for '%s' requires: %s\n", kind, usage);
1084 return 1;
1085}
1086
1087static unsigned isUSR(const char *s) {
1088 return s[0] == 'c' && s[1] == ':';
1089}
1090
1091static int not_usr(const char *s, const char *arg) {
1092 fprintf(stderr, "'%s' argument ('%s') is not a USR\n", s, arg);
1093 return 1;
1094}
1095
1096static void print_usr(CXString usr) {
1097 const char *s = clang_getCString(usr);
1098 printf("%s\n", s);
1099 clang_disposeString(usr);
1100}
1101
1102static void display_usrs() {
1103 fprintf(stderr, "-print-usrs options:\n"
1104 " ObjCCategory <class name> <category name>\n"
1105 " ObjCClass <class name>\n"
1106 " ObjCIvar <ivar name> <class USR>\n"
1107 " ObjCMethod <selector> [0=class method|1=instance method] "
1108 "<class USR>\n"
1109 " ObjCProperty <property name> <class USR>\n"
1110 " ObjCProtocol <protocol name>\n");
1111}
1112
1113int print_usrs(const char **I, const char **E) {
1114 while (I != E) {
1115 const char *kind = *I;
1116 unsigned len = strlen(kind);
1117 switch (len) {
1118 case 8:
1119 if (memcmp(kind, "ObjCIvar", 8) == 0) {
1120 if (I + 2 >= E)
1121 return insufficient_usr(kind, "<ivar name> <class USR>");
1122 if (!isUSR(I[2]))
1123 return not_usr("<class USR>", I[2]);
1124 else {
1125 CXString x;
1126 x.Spelling = I[2];
1127 x.MustFreeString = 0;
1128 print_usr(clang_constructUSR_ObjCIvar(I[1], x));
1129 }
1130
1131 I += 3;
1132 continue;
1133 }
1134 break;
1135 case 9:
1136 if (memcmp(kind, "ObjCClass", 9) == 0) {
1137 if (I + 1 >= E)
1138 return insufficient_usr(kind, "<class name>");
1139 print_usr(clang_constructUSR_ObjCClass(I[1]));
1140 I += 2;
1141 continue;
1142 }
1143 break;
1144 case 10:
1145 if (memcmp(kind, "ObjCMethod", 10) == 0) {
1146 if (I + 3 >= E)
1147 return insufficient_usr(kind, "<method selector> "
1148 "[0=class method|1=instance method] <class USR>");
1149 if (!isUSR(I[3]))
1150 return not_usr("<class USR>", I[3]);
1151 else {
1152 CXString x;
1153 x.Spelling = I[3];
1154 x.MustFreeString = 0;
1155 print_usr(clang_constructUSR_ObjCMethod(I[1], atoi(I[2]), x));
1156 }
1157 I += 4;
1158 continue;
1159 }
1160 break;
1161 case 12:
1162 if (memcmp(kind, "ObjCCategory", 12) == 0) {
1163 if (I + 2 >= E)
1164 return insufficient_usr(kind, "<class name> <category name>");
1165 print_usr(clang_constructUSR_ObjCCategory(I[1], I[2]));
1166 I += 3;
1167 continue;
1168 }
1169 if (memcmp(kind, "ObjCProtocol", 12) == 0) {
1170 if (I + 1 >= E)
1171 return insufficient_usr(kind, "<protocol name>");
1172 print_usr(clang_constructUSR_ObjCProtocol(I[1]));
1173 I += 2;
1174 continue;
1175 }
1176 if (memcmp(kind, "ObjCProperty", 12) == 0) {
1177 if (I + 2 >= E)
1178 return insufficient_usr(kind, "<property name> <class USR>");
1179 if (!isUSR(I[2]))
1180 return not_usr("<class USR>", I[2]);
1181 else {
1182 CXString x;
1183 x.Spelling = I[2];
1184 x.MustFreeString = 0;
1185 print_usr(clang_constructUSR_ObjCProperty(I[1], x));
1186 }
1187 I += 3;
1188 continue;
1189 }
1190 break;
1191 default:
1192 break;
1193 }
1194 break;
1195 }
1196
1197 if (I != E) {
1198 fprintf(stderr, "Invalid USR kind: %s\n", *I);
1199 display_usrs();
1200 return 1;
1201 }
1202 return 0;
1203}
1204
1205int print_usrs_file(const char *file_name) {
1206 char line[2048];
1207 const char *args[128];
1208 unsigned numChars = 0;
1209
1210 FILE *fp = fopen(file_name, "r");
1211 if (!fp) {
1212 fprintf(stderr, "error: cannot open '%s'\n", file_name);
1213 return 1;
1214 }
1215
1216 /* This code is not really all that safe, but it works fine for testing. */
1217 while (!feof(fp)) {
1218 char c = fgetc(fp);
1219 if (c == '\n') {
1220 unsigned i = 0;
1221 const char *s = 0;
1222
1223 if (numChars == 0)
1224 continue;
1225
1226 line[numChars] = '\0';
1227 numChars = 0;
1228
1229 if (line[0] == '/' && line[1] == '/')
1230 continue;
1231
1232 s = strtok(line, " ");
1233 while (s) {
1234 args[i] = s;
1235 ++i;
1236 s = strtok(0, " ");
1237 }
1238 if (print_usrs(&args[0], &args[i]))
1239 return 1;
1240 }
1241 else
1242 line[numChars++] = c;
1243 }
1244
1245 fclose(fp);
1246 return 0;
1247}
1248
1249/******************************************************************************/
Ted Kremenek0d435192009-11-17 18:13:31 +00001250/* Command line processing. */
1251/******************************************************************************/
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001252
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001253static CXCursorVisitor GetVisitor(const char *s) {
Ted Kremenek7d405622010-01-12 23:34:26 +00001254 if (s[0] == '\0')
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001255 return FilteredPrintingVisitor;
Ted Kremenek7d405622010-01-12 23:34:26 +00001256 if (strcmp(s, "-usrs") == 0)
1257 return USRVisitor;
1258 return NULL;
1259}
1260
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001261static void print_usage(void) {
1262 fprintf(stderr,
Ted Kremenek0d435192009-11-17 18:13:31 +00001263 "usage: c-index-test -code-completion-at=<site> <compiler arguments>\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00001264 " c-index-test -code-completion-timing=<site> <compiler arguments>\n"
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001265 " c-index-test -cursor-at=<site> <compiler arguments>\n"
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001266 " c-index-test -test-file-scan <AST file> <source file> "
1267 "[FileCheck prefix]\n"
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +00001268 " c-index-test -test-load-tu <AST file> <symbol filter> "
1269 "[FileCheck prefix]\n"
Ted Kremenek7d405622010-01-12 23:34:26 +00001270 " c-index-test -test-load-tu-usrs <AST file> <symbol filter> "
1271 "[FileCheck prefix]\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00001272 " c-index-test -test-load-source <symbol filter> {<args>}*\n");
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001273 fprintf(stderr,
Douglas Gregorabc563f2010-07-19 21:46:24 +00001274 " c-index-test -test-load-source-reparse <trials> <symbol filter> "
1275 " {<args>}*\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00001276 " c-index-test -test-load-source-usrs <symbol filter> {<args>}*\n"
Ted Kremenek16b55a72010-01-26 19:31:51 +00001277 " c-index-test -test-annotate-tokens=<range> {<args>}*\n"
1278 " c-index-test -test-inclusion-stack-source {<args>}*\n"
Ted Kremenek3bed5272010-03-03 06:37:58 +00001279 " c-index-test -test-inclusion-stack-tu <AST file>\n"
Ted Kremenekf7b714d2010-03-25 02:00:39 +00001280 " c-index-test -test-print-linkage-source {<args>}*\n"
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001281 " c-index-test -test-print-typekind {<args>}*\n"
Chandler Carruth53513d22010-07-22 06:29:13 +00001282 " c-index-test -print-usr [<CursorKind> {<args>}]*\n");
1283 fprintf(stderr,
Douglas Gregorcaf4bd32010-07-20 14:34:35 +00001284 " c-index-test -print-usr-file <file>\n\n");
1285 fprintf(stderr,
Ted Kremenek7d405622010-01-12 23:34:26 +00001286 " <symbol filter> values:\n%s",
Ted Kremenek0d435192009-11-17 18:13:31 +00001287 " all - load all symbols, including those from PCH\n"
1288 " local - load all symbols except those in PCH\n"
1289 " category - only load ObjC categories (non-PCH)\n"
1290 " interface - only load ObjC interfaces (non-PCH)\n"
1291 " protocol - only load ObjC protocols (non-PCH)\n"
1292 " function - only load functions (non-PCH)\n"
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001293 " typedef - only load typdefs (non-PCH)\n"
1294 " scan-function - scan function bodies (non-PCH)\n\n");
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001295}
1296
1297int main(int argc, const char **argv) {
Douglas Gregor0a812cf2010-02-18 23:07:20 +00001298 clang_enableStackTraces();
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001299 if (argc > 2 && strstr(argv[1], "-code-completion-at=") == argv[1])
Douglas Gregor1982c182010-07-12 18:38:41 +00001300 return perform_code_completion(argc, argv, 0);
1301 if (argc > 2 && strstr(argv[1], "-code-completion-timing=") == argv[1])
1302 return perform_code_completion(argc, argv, 1);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001303 if (argc > 2 && strstr(argv[1], "-cursor-at=") == argv[1])
1304 return inspect_cursor_at(argc, argv);
Ted Kremenek7d405622010-01-12 23:34:26 +00001305 else if (argc >= 4 && strncmp(argv[1], "-test-load-tu", 13) == 0) {
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001306 CXCursorVisitor I = GetVisitor(argv[1] + 13);
Ted Kremenek7d405622010-01-12 23:34:26 +00001307 if (I)
Ted Kremenekce2ae882010-01-26 17:59:48 +00001308 return perform_test_load_tu(argv[2], argv[3], argc >= 5 ? argv[4] : 0, I,
1309 NULL);
Ted Kremenek7d405622010-01-12 23:34:26 +00001310 }
Douglas Gregorabc563f2010-07-19 21:46:24 +00001311 else if (argc >= 5 && strncmp(argv[1], "-test-load-source-reparse", 25) == 0){
1312 CXCursorVisitor I = GetVisitor(argv[1] + 25);
1313 if (I) {
1314 int trials = atoi(argv[2]);
1315 return perform_test_reparse_source(argc - 4, argv + 4, trials, argv[3], I,
1316 NULL);
1317 }
1318 }
Ted Kremenek7d405622010-01-12 23:34:26 +00001319 else if (argc >= 4 && strncmp(argv[1], "-test-load-source", 17) == 0) {
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001320 CXCursorVisitor I = GetVisitor(argv[1] + 17);
Ted Kremenek7d405622010-01-12 23:34:26 +00001321 if (I)
Ted Kremenekce2ae882010-01-26 17:59:48 +00001322 return perform_test_load_source(argc - 3, argv + 3, argv[2], I, NULL);
Ted Kremenek7d405622010-01-12 23:34:26 +00001323 }
1324 else if (argc >= 4 && strcmp(argv[1], "-test-file-scan") == 0)
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001325 return perform_file_scan(argv[2], argv[3],
1326 argc >= 5 ? argv[4] : 0);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001327 else if (argc > 2 && strstr(argv[1], "-test-annotate-tokens=") == argv[1])
1328 return perform_token_annotation(argc, argv);
Ted Kremenek16b55a72010-01-26 19:31:51 +00001329 else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-source") == 0)
1330 return perform_test_load_source(argc - 2, argv + 2, "all", NULL,
1331 PrintInclusionStack);
1332 else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-tu") == 0)
1333 return perform_test_load_tu(argv[2], "all", NULL, NULL,
1334 PrintInclusionStack);
Ted Kremenek3bed5272010-03-03 06:37:58 +00001335 else if (argc > 2 && strcmp(argv[1], "-test-print-linkage-source") == 0)
1336 return perform_test_load_source(argc - 2, argv + 2, "all", PrintLinkage,
1337 NULL);
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001338 else if (argc > 2 && strcmp(argv[1], "-test-print-typekind") == 0)
1339 return perform_test_load_source(argc - 2, argv + 2, "all",
1340 PrintTypeKind, 0);
Ted Kremenekf7b714d2010-03-25 02:00:39 +00001341 else if (argc > 1 && strcmp(argv[1], "-print-usr") == 0) {
1342 if (argc > 2)
1343 return print_usrs(argv + 2, argv + argc);
1344 else {
1345 display_usrs();
1346 return 1;
1347 }
1348 }
1349 else if (argc > 2 && strcmp(argv[1], "-print-usr-file") == 0)
1350 return print_usrs_file(argv[2]);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001351
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001352 print_usage();
1353 return 1;
Steve Naroff50398192009-08-28 15:28:48 +00001354}