Steve Naroff | 2b8ee6c | 2009-09-01 15:55:40 +0000 | [diff] [blame] | 1 | /* c-index-test.c */ |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 2 | |
| 3 | #include "clang-c/Index.h" |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 4 | #include <stdlib.h> |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 5 | #include <stdio.h> |
Steve Naroff | af08ddc | 2009-09-03 15:49:00 +0000 | [diff] [blame] | 6 | #include <string.h> |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 7 | #include <assert.h> |
Steve Naroff | af08ddc | 2009-09-03 15:49:00 +0000 | [diff] [blame] | 8 | |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 9 | /******************************************************************************/ |
| 10 | /* Utility functions. */ |
| 11 | /******************************************************************************/ |
| 12 | |
John Thompson | 2e06fc8 | 2009-10-27 13:42:56 +0000 | [diff] [blame] | 13 | #ifdef _MSC_VER |
| 14 | char *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 Naroff | ff9e18c | 2009-09-24 20:03:06 +0000 | [diff] [blame] | 28 | extern char *basename(const char *); |
John Thompson | 2e06fc8 | 2009-10-27 13:42:56 +0000 | [diff] [blame] | 29 | #endif |
Steve Naroff | ff9e18c | 2009-09-24 20:03:06 +0000 | [diff] [blame] | 30 | |
Douglas Gregor | 45ba9a1 | 2010-07-25 17:39:21 +0000 | [diff] [blame] | 31 | /** \brief Return the default parsing options. */ |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 32 | static unsigned getDefaultParsingOptions() { |
| 33 | unsigned options = CXTranslationUnit_DetailedPreprocessingRecord; |
| 34 | |
| 35 | if (getenv("CINDEXTEST_EDITING")) |
| 36 | options |= CXTranslationUnit_Editing; |
| 37 | |
| 38 | return options; |
| 39 | } |
| 40 | |
Daniel Dunbar | 51b058c | 2010-02-14 08:32:24 +0000 | [diff] [blame] | 41 | static void PrintExtent(FILE *out, unsigned begin_line, unsigned begin_column, |
| 42 | unsigned end_line, unsigned end_column) { |
| 43 | fprintf(out, "[%d:%d - %d:%d]", begin_line, begin_column, |
Daniel Dunbar | d52864b | 2010-02-14 10:02:57 +0000 | [diff] [blame] | 44 | end_line, end_column); |
Daniel Dunbar | 51b058c | 2010-02-14 08:32:24 +0000 | [diff] [blame] | 45 | } |
| 46 | |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 47 | static unsigned CreateTranslationUnit(CXIndex Idx, const char *file, |
| 48 | CXTranslationUnit *TU) { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 49 | |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 50 | *TU = clang_createTranslationUnit(Idx, file); |
Dan Gohman | 6be2a22 | 2010-07-26 21:44:15 +0000 | [diff] [blame^] | 51 | if (!*TU) { |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 52 | fprintf(stderr, "Unable to load translation unit from '%s'!\n", file); |
| 53 | return 0; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 54 | } |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 55 | return 1; |
| 56 | } |
| 57 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 58 | void free_remapped_files(struct CXUnsavedFile *unsaved_files, |
| 59 | int num_unsaved_files) { |
| 60 | int i; |
| 61 | for (i = 0; i != num_unsaved_files; ++i) { |
| 62 | free((char *)unsaved_files[i].Filename); |
| 63 | free((char *)unsaved_files[i].Contents); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | int parse_remapped_files(int argc, const char **argv, int start_arg, |
| 68 | struct CXUnsavedFile **unsaved_files, |
| 69 | int *num_unsaved_files) { |
| 70 | int i; |
| 71 | int arg; |
| 72 | int prefix_len = strlen("-remap-file="); |
| 73 | *unsaved_files = 0; |
| 74 | *num_unsaved_files = 0; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 75 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 76 | /* Count the number of remapped files. */ |
| 77 | for (arg = start_arg; arg < argc; ++arg) { |
| 78 | if (strncmp(argv[arg], "-remap-file=", prefix_len)) |
| 79 | break; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 80 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 81 | ++*num_unsaved_files; |
| 82 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 83 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 84 | if (*num_unsaved_files == 0) |
| 85 | return 0; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 86 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 87 | *unsaved_files |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 88 | = (struct CXUnsavedFile *)malloc(sizeof(struct CXUnsavedFile) * |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 89 | *num_unsaved_files); |
| 90 | for (arg = start_arg, i = 0; i != *num_unsaved_files; ++i, ++arg) { |
| 91 | struct CXUnsavedFile *unsaved = *unsaved_files + i; |
| 92 | const char *arg_string = argv[arg] + prefix_len; |
| 93 | int filename_len; |
| 94 | char *filename; |
| 95 | char *contents; |
| 96 | FILE *to_file; |
| 97 | const char *semi = strchr(arg_string, ';'); |
| 98 | if (!semi) { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 99 | fprintf(stderr, |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 100 | "error: -remap-file=from;to argument is missing semicolon\n"); |
| 101 | free_remapped_files(*unsaved_files, i); |
| 102 | *unsaved_files = 0; |
| 103 | *num_unsaved_files = 0; |
| 104 | return -1; |
| 105 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 106 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 107 | /* Open the file that we're remapping to. */ |
| 108 | to_file = fopen(semi + 1, "r"); |
| 109 | if (!to_file) { |
| 110 | fprintf(stderr, "error: cannot open file %s that we are remapping to\n", |
| 111 | semi + 1); |
| 112 | free_remapped_files(*unsaved_files, i); |
| 113 | *unsaved_files = 0; |
| 114 | *num_unsaved_files = 0; |
| 115 | return -1; |
| 116 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 117 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 118 | /* Determine the length of the file we're remapping to. */ |
| 119 | fseek(to_file, 0, SEEK_END); |
| 120 | unsaved->Length = ftell(to_file); |
| 121 | fseek(to_file, 0, SEEK_SET); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 122 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 123 | /* Read the contents of the file we're remapping to. */ |
| 124 | contents = (char *)malloc(unsaved->Length + 1); |
| 125 | if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) { |
| 126 | fprintf(stderr, "error: unexpected %s reading 'to' file %s\n", |
| 127 | (feof(to_file) ? "EOF" : "error"), semi + 1); |
| 128 | fclose(to_file); |
| 129 | free_remapped_files(*unsaved_files, i); |
| 130 | *unsaved_files = 0; |
| 131 | *num_unsaved_files = 0; |
| 132 | return -1; |
| 133 | } |
| 134 | contents[unsaved->Length] = 0; |
| 135 | unsaved->Contents = contents; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 136 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 137 | /* Close the file. */ |
| 138 | fclose(to_file); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 139 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 140 | /* Copy the file name that we're remapping from. */ |
| 141 | filename_len = semi - arg_string; |
| 142 | filename = (char *)malloc(filename_len + 1); |
| 143 | memcpy(filename, arg_string, filename_len); |
| 144 | filename[filename_len] = 0; |
| 145 | unsaved->Filename = filename; |
| 146 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 147 | |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 148 | return 0; |
| 149 | } |
| 150 | |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 151 | /******************************************************************************/ |
| 152 | /* Pretty-printing. */ |
| 153 | /******************************************************************************/ |
| 154 | |
Steve Naroff | af08ddc | 2009-09-03 15:49:00 +0000 | [diff] [blame] | 155 | static void PrintCursor(CXCursor Cursor) { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 156 | if (clang_isInvalid(Cursor.kind)) { |
| 157 | CXString ks = clang_getCursorKindSpelling(Cursor.kind); |
| 158 | printf("Invalid Cursor => %s", clang_getCString(ks)); |
| 159 | clang_disposeString(ks); |
| 160 | } |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 161 | else { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 162 | CXString string, ks; |
Douglas Gregor | c5d1e93 | 2010-01-19 01:20:04 +0000 | [diff] [blame] | 163 | CXCursor Referenced; |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 164 | unsigned line, column; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 165 | |
| 166 | ks = clang_getCursorKindSpelling(Cursor.kind); |
Steve Naroff | ef0cef6 | 2009-11-09 17:45:52 +0000 | [diff] [blame] | 167 | string = clang_getCursorSpelling(Cursor); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 168 | printf("%s=%s", clang_getCString(ks), |
| 169 | clang_getCString(string)); |
| 170 | clang_disposeString(ks); |
Steve Naroff | ef0cef6 | 2009-11-09 17:45:52 +0000 | [diff] [blame] | 171 | clang_disposeString(string); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 172 | |
Douglas Gregor | c5d1e93 | 2010-01-19 01:20:04 +0000 | [diff] [blame] | 173 | Referenced = clang_getCursorReferenced(Cursor); |
| 174 | if (!clang_equalCursors(Referenced, clang_getNullCursor())) { |
| 175 | CXSourceLocation Loc = clang_getCursorLocation(Referenced); |
Douglas Gregor | 46766dc | 2010-01-26 19:19:08 +0000 | [diff] [blame] | 176 | clang_getInstantiationLocation(Loc, 0, &line, &column, 0); |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 177 | printf(":%d:%d", line, column); |
Douglas Gregor | c5d1e93 | 2010-01-19 01:20:04 +0000 | [diff] [blame] | 178 | } |
Douglas Gregor | b699866 | 2010-01-19 19:34:47 +0000 | [diff] [blame] | 179 | |
| 180 | if (clang_isCursorDefinition(Cursor)) |
| 181 | printf(" (Definition)"); |
Steve Naroff | 699a07d | 2009-09-25 21:32:34 +0000 | [diff] [blame] | 182 | } |
Steve Naroff | af08ddc | 2009-09-03 15:49:00 +0000 | [diff] [blame] | 183 | } |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 184 | |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 185 | static const char* GetCursorSource(CXCursor Cursor) { |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 186 | CXSourceLocation Loc = clang_getCursorLocation(Cursor); |
Ted Kremenek | 7484407 | 2010-02-17 00:41:20 +0000 | [diff] [blame] | 187 | CXString source; |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 188 | CXFile file; |
Douglas Gregor | 46766dc | 2010-01-26 19:19:08 +0000 | [diff] [blame] | 189 | clang_getInstantiationLocation(Loc, &file, 0, 0, 0); |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 190 | source = clang_getFileName(file); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 191 | if (!clang_getCString(source)) { |
Ted Kremenek | 7484407 | 2010-02-17 00:41:20 +0000 | [diff] [blame] | 192 | clang_disposeString(source); |
| 193 | return "<invalid loc>"; |
| 194 | } |
| 195 | else { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 196 | const char *b = basename(clang_getCString(source)); |
Ted Kremenek | 7484407 | 2010-02-17 00:41:20 +0000 | [diff] [blame] | 197 | clang_disposeString(source); |
| 198 | return b; |
| 199 | } |
Ted Kremenek | 9298cfc | 2009-11-17 05:31:58 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 202 | /******************************************************************************/ |
Ted Kremenek | ce2ae88 | 2010-01-26 17:59:48 +0000 | [diff] [blame] | 203 | /* Callbacks. */ |
| 204 | /******************************************************************************/ |
| 205 | |
| 206 | typedef void (*PostVisitTU)(CXTranslationUnit); |
| 207 | |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 208 | void PrintDiagnostic(CXDiagnostic Diagnostic) { |
| 209 | FILE *out = stderr; |
Douglas Gregor | 5352ac0 | 2010-01-28 00:27:43 +0000 | [diff] [blame] | 210 | CXFile file; |
Douglas Gregor | 274f190 | 2010-02-22 23:17:23 +0000 | [diff] [blame] | 211 | CXString Msg; |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 212 | unsigned display_opts = CXDiagnostic_DisplaySourceLocation |
| 213 | | CXDiagnostic_DisplayColumn | CXDiagnostic_DisplaySourceRanges; |
| 214 | unsigned i, num_fixits; |
Ted Kremenek | f7b714d | 2010-03-25 02:00:39 +0000 | [diff] [blame] | 215 | |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 216 | if (clang_getDiagnosticSeverity(Diagnostic) == CXDiagnostic_Ignored) |
Douglas Gregor | 5352ac0 | 2010-01-28 00:27:43 +0000 | [diff] [blame] | 217 | return; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 218 | |
Douglas Gregor | 274f190 | 2010-02-22 23:17:23 +0000 | [diff] [blame] | 219 | Msg = clang_formatDiagnostic(Diagnostic, display_opts); |
| 220 | fprintf(stderr, "%s\n", clang_getCString(Msg)); |
| 221 | clang_disposeString(Msg); |
Ted Kremenek | f7b714d | 2010-03-25 02:00:39 +0000 | [diff] [blame] | 222 | |
Douglas Gregor | 5352ac0 | 2010-01-28 00:27:43 +0000 | [diff] [blame] | 223 | clang_getInstantiationLocation(clang_getDiagnosticLocation(Diagnostic), |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 224 | &file, 0, 0, 0); |
| 225 | if (!file) |
| 226 | return; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 227 | |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 228 | num_fixits = clang_getDiagnosticNumFixIts(Diagnostic); |
| 229 | for (i = 0; i != num_fixits; ++i) { |
Douglas Gregor | 473d701 | 2010-02-19 18:16:06 +0000 | [diff] [blame] | 230 | CXSourceRange range; |
| 231 | CXString insertion_text = clang_getDiagnosticFixIt(Diagnostic, i, &range); |
| 232 | CXSourceLocation start = clang_getRangeStart(range); |
| 233 | CXSourceLocation end = clang_getRangeEnd(range); |
| 234 | unsigned start_line, start_column, end_line, end_column; |
| 235 | CXFile start_file, end_file; |
Ted Kremenek | f7b714d | 2010-03-25 02:00:39 +0000 | [diff] [blame] | 236 | clang_getInstantiationLocation(start, &start_file, &start_line, |
Douglas Gregor | 473d701 | 2010-02-19 18:16:06 +0000 | [diff] [blame] | 237 | &start_column, 0); |
| 238 | clang_getInstantiationLocation(end, &end_file, &end_line, &end_column, 0); |
| 239 | if (clang_equalLocations(start, end)) { |
| 240 | /* Insertion. */ |
| 241 | if (start_file == file) |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 242 | fprintf(out, "FIX-IT: Insert \"%s\" at %d:%d\n", |
Douglas Gregor | 473d701 | 2010-02-19 18:16:06 +0000 | [diff] [blame] | 243 | clang_getCString(insertion_text), start_line, start_column); |
| 244 | } else if (strcmp(clang_getCString(insertion_text), "") == 0) { |
| 245 | /* Removal. */ |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 246 | if (start_file == file && end_file == file) { |
| 247 | fprintf(out, "FIX-IT: Remove "); |
| 248 | PrintExtent(out, start_line, start_column, end_line, end_column); |
| 249 | fprintf(out, "\n"); |
Douglas Gregor | 51c6d38 | 2010-01-29 00:41:11 +0000 | [diff] [blame] | 250 | } |
Douglas Gregor | 473d701 | 2010-02-19 18:16:06 +0000 | [diff] [blame] | 251 | } else { |
| 252 | /* Replacement. */ |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 253 | if (start_file == end_file) { |
| 254 | fprintf(out, "FIX-IT: Replace "); |
| 255 | PrintExtent(out, start_line, start_column, end_line, end_column); |
Douglas Gregor | 473d701 | 2010-02-19 18:16:06 +0000 | [diff] [blame] | 256 | fprintf(out, " with \"%s\"\n", clang_getCString(insertion_text)); |
Douglas Gregor | 436f3f0 | 2010-02-18 22:27:07 +0000 | [diff] [blame] | 257 | } |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 258 | break; |
| 259 | } |
Douglas Gregor | 473d701 | 2010-02-19 18:16:06 +0000 | [diff] [blame] | 260 | clang_disposeString(insertion_text); |
Douglas Gregor | 51c6d38 | 2010-01-29 00:41:11 +0000 | [diff] [blame] | 261 | } |
Douglas Gregor | 5352ac0 | 2010-01-28 00:27:43 +0000 | [diff] [blame] | 262 | } |
| 263 | |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 264 | void PrintDiagnostics(CXTranslationUnit TU) { |
| 265 | int i, n = clang_getNumDiagnostics(TU); |
| 266 | for (i = 0; i != n; ++i) { |
| 267 | CXDiagnostic Diag = clang_getDiagnostic(TU, i); |
| 268 | PrintDiagnostic(Diag); |
| 269 | clang_disposeDiagnostic(Diag); |
| 270 | } |
| 271 | } |
| 272 | |
Ted Kremenek | ce2ae88 | 2010-01-26 17:59:48 +0000 | [diff] [blame] | 273 | /******************************************************************************/ |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 274 | /* Logic for testing traversal. */ |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 275 | /******************************************************************************/ |
| 276 | |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 277 | static const char *FileCheckPrefix = "CHECK"; |
| 278 | |
Douglas Gregor | a7bde20 | 2010-01-19 00:34:46 +0000 | [diff] [blame] | 279 | static void PrintCursorExtent(CXCursor C) { |
| 280 | CXSourceRange extent = clang_getCursorExtent(C); |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 281 | CXFile begin_file, end_file; |
| 282 | unsigned begin_line, begin_column, end_line, end_column; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 283 | |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 284 | clang_getInstantiationLocation(clang_getRangeStart(extent), |
Douglas Gregor | 46766dc | 2010-01-26 19:19:08 +0000 | [diff] [blame] | 285 | &begin_file, &begin_line, &begin_column, 0); |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 286 | clang_getInstantiationLocation(clang_getRangeEnd(extent), |
Douglas Gregor | 46766dc | 2010-01-26 19:19:08 +0000 | [diff] [blame] | 287 | &end_file, &end_line, &end_column, 0); |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 288 | if (!begin_file || !end_file) |
Ted Kremenek | 70ee542 | 2010-01-16 01:44:12 +0000 | [diff] [blame] | 289 | return; |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 290 | |
Daniel Dunbar | 51b058c | 2010-02-14 08:32:24 +0000 | [diff] [blame] | 291 | printf(" Extent="); |
| 292 | PrintExtent(stdout, begin_line, begin_column, end_line, end_column); |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 293 | } |
| 294 | |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 295 | /* Data used by all of the visitors. */ |
| 296 | typedef struct { |
| 297 | CXTranslationUnit TU; |
| 298 | enum CXCursorKind *Filter; |
| 299 | } VisitorData; |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 300 | |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 301 | |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 302 | enum CXChildVisitResult FilteredPrintingVisitor(CXCursor Cursor, |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 303 | CXCursor Parent, |
| 304 | CXClientData ClientData) { |
| 305 | VisitorData *Data = (VisitorData *)ClientData; |
| 306 | if (!Data->Filter || (Cursor.kind == *(enum CXCursorKind *)Data->Filter)) { |
Douglas Gregor | 98258af | 2010-01-18 22:46:11 +0000 | [diff] [blame] | 307 | CXSourceLocation Loc = clang_getCursorLocation(Cursor); |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 308 | unsigned line, column; |
Douglas Gregor | 46766dc | 2010-01-26 19:19:08 +0000 | [diff] [blame] | 309 | clang_getInstantiationLocation(Loc, 0, &line, &column, 0); |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 310 | printf("// %s: %s:%d:%d: ", FileCheckPrefix, |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 311 | GetCursorSource(Cursor), line, column); |
Steve Naroff | af08ddc | 2009-09-03 15:49:00 +0000 | [diff] [blame] | 312 | PrintCursor(Cursor); |
Douglas Gregor | a7bde20 | 2010-01-19 00:34:46 +0000 | [diff] [blame] | 313 | PrintCursorExtent(Cursor); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 314 | printf("\n"); |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 315 | return CXChildVisit_Recurse; |
Steve Naroff | 2d4d629 | 2009-08-31 14:26:51 +0000 | [diff] [blame] | 316 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 317 | |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 318 | return CXChildVisit_Continue; |
Steve Naroff | 89922f8 | 2009-08-31 00:59:03 +0000 | [diff] [blame] | 319 | } |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 320 | |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 321 | static enum CXChildVisitResult FunctionScanVisitor(CXCursor Cursor, |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 322 | CXCursor Parent, |
| 323 | CXClientData ClientData) { |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 324 | const char *startBuf, *endBuf; |
| 325 | unsigned startLine, startColumn, endLine, endColumn, curLine, curColumn; |
| 326 | CXCursor Ref; |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 327 | VisitorData *Data = (VisitorData *)ClientData; |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 328 | |
Douglas Gregor | b699866 | 2010-01-19 19:34:47 +0000 | [diff] [blame] | 329 | if (Cursor.kind != CXCursor_FunctionDecl || |
| 330 | !clang_isCursorDefinition(Cursor)) |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 331 | return CXChildVisit_Continue; |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 332 | |
| 333 | clang_getDefinitionSpellingAndExtent(Cursor, &startBuf, &endBuf, |
| 334 | &startLine, &startColumn, |
| 335 | &endLine, &endColumn); |
| 336 | /* Probe the entire body, looking for both decls and refs. */ |
| 337 | curLine = startLine; |
| 338 | curColumn = startColumn; |
| 339 | |
| 340 | while (startBuf < endBuf) { |
Douglas Gregor | 98258af | 2010-01-18 22:46:11 +0000 | [diff] [blame] | 341 | CXSourceLocation Loc; |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 342 | CXFile file; |
Ted Kremenek | 7484407 | 2010-02-17 00:41:20 +0000 | [diff] [blame] | 343 | CXString source; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 344 | |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 345 | if (*startBuf == '\n') { |
| 346 | startBuf++; |
| 347 | curLine++; |
| 348 | curColumn = 1; |
| 349 | } else if (*startBuf != '\t') |
| 350 | curColumn++; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 351 | |
Douglas Gregor | 98258af | 2010-01-18 22:46:11 +0000 | [diff] [blame] | 352 | Loc = clang_getCursorLocation(Cursor); |
Douglas Gregor | 46766dc | 2010-01-26 19:19:08 +0000 | [diff] [blame] | 353 | clang_getInstantiationLocation(Loc, &file, 0, 0, 0); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 354 | |
Douglas Gregor | 1db19de | 2010-01-19 21:36:55 +0000 | [diff] [blame] | 355 | source = clang_getFileName(file); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 356 | if (clang_getCString(source)) { |
Douglas Gregor | b979034 | 2010-01-22 21:44:22 +0000 | [diff] [blame] | 357 | CXSourceLocation RefLoc |
| 358 | = clang_getLocation(Data->TU, file, curLine, curColumn); |
| 359 | Ref = clang_getCursor(Data->TU, RefLoc); |
Douglas Gregor | 98258af | 2010-01-18 22:46:11 +0000 | [diff] [blame] | 360 | if (Ref.kind == CXCursor_NoDeclFound) { |
| 361 | /* Nothing found here; that's fine. */ |
| 362 | } else if (Ref.kind != CXCursor_FunctionDecl) { |
| 363 | printf("// %s: %s:%d:%d: ", FileCheckPrefix, GetCursorSource(Ref), |
| 364 | curLine, curColumn); |
| 365 | PrintCursor(Ref); |
| 366 | printf("\n"); |
| 367 | } |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 368 | } |
Ted Kremenek | 7484407 | 2010-02-17 00:41:20 +0000 | [diff] [blame] | 369 | clang_disposeString(source); |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 370 | startBuf++; |
| 371 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 372 | |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 373 | return CXChildVisit_Continue; |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 374 | } |
| 375 | |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 376 | /******************************************************************************/ |
| 377 | /* USR testing. */ |
| 378 | /******************************************************************************/ |
| 379 | |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 380 | enum CXChildVisitResult USRVisitor(CXCursor C, CXCursor parent, |
| 381 | CXClientData ClientData) { |
| 382 | VisitorData *Data = (VisitorData *)ClientData; |
| 383 | if (!Data->Filter || (C.kind == *(enum CXCursorKind *)Data->Filter)) { |
Ted Kremenek | cf84aa4 | 2010-01-18 20:23:29 +0000 | [diff] [blame] | 384 | CXString USR = clang_getCursorUSR(C); |
Ted Kremenek | e542f77 | 2010-04-20 23:15:40 +0000 | [diff] [blame] | 385 | const char *cstr = clang_getCString(USR); |
| 386 | if (!cstr || cstr[0] == '\0') { |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 387 | clang_disposeString(USR); |
Ted Kremenek | e74ef12 | 2010-04-16 21:31:52 +0000 | [diff] [blame] | 388 | return CXChildVisit_Recurse; |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 389 | } |
Ted Kremenek | e542f77 | 2010-04-20 23:15:40 +0000 | [diff] [blame] | 390 | printf("// %s: %s %s", FileCheckPrefix, GetCursorSource(C), cstr); |
| 391 | |
Douglas Gregor | a7bde20 | 2010-01-19 00:34:46 +0000 | [diff] [blame] | 392 | PrintCursorExtent(C); |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 393 | printf("\n"); |
| 394 | clang_disposeString(USR); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 395 | |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 396 | return CXChildVisit_Recurse; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 397 | } |
| 398 | |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 399 | return CXChildVisit_Continue; |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | /******************************************************************************/ |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 403 | /* Inclusion stack testing. */ |
| 404 | /******************************************************************************/ |
| 405 | |
| 406 | void InclusionVisitor(CXFile includedFile, CXSourceLocation *includeStack, |
| 407 | unsigned includeStackLen, CXClientData data) { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 408 | |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 409 | unsigned i; |
Ted Kremenek | 7484407 | 2010-02-17 00:41:20 +0000 | [diff] [blame] | 410 | CXString fname; |
| 411 | |
| 412 | fname = clang_getFileName(includedFile); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 413 | printf("file: %s\nincluded by:\n", clang_getCString(fname)); |
Ted Kremenek | 7484407 | 2010-02-17 00:41:20 +0000 | [diff] [blame] | 414 | clang_disposeString(fname); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 415 | |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 416 | for (i = 0; i < includeStackLen; ++i) { |
| 417 | CXFile includingFile; |
| 418 | unsigned line, column; |
| 419 | clang_getInstantiationLocation(includeStack[i], &includingFile, &line, |
| 420 | &column, 0); |
Ted Kremenek | 7484407 | 2010-02-17 00:41:20 +0000 | [diff] [blame] | 421 | fname = clang_getFileName(includingFile); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 422 | printf(" %s:%d:%d\n", clang_getCString(fname), line, column); |
Ted Kremenek | 7484407 | 2010-02-17 00:41:20 +0000 | [diff] [blame] | 423 | clang_disposeString(fname); |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 424 | } |
| 425 | printf("\n"); |
| 426 | } |
| 427 | |
| 428 | void PrintInclusionStack(CXTranslationUnit TU) { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 429 | clang_getInclusions(TU, InclusionVisitor, NULL); |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | /******************************************************************************/ |
Ted Kremenek | 3bed527 | 2010-03-03 06:37:58 +0000 | [diff] [blame] | 433 | /* Linkage testing. */ |
| 434 | /******************************************************************************/ |
| 435 | |
| 436 | static enum CXChildVisitResult PrintLinkage(CXCursor cursor, CXCursor p, |
| 437 | CXClientData d) { |
| 438 | const char *linkage = 0; |
| 439 | |
| 440 | if (clang_isInvalid(clang_getCursorKind(cursor))) |
| 441 | return CXChildVisit_Recurse; |
| 442 | |
| 443 | switch (clang_getCursorLinkage(cursor)) { |
| 444 | case CXLinkage_Invalid: break; |
Douglas Gregor | c2a2b3c | 2010-03-04 19:36:27 +0000 | [diff] [blame] | 445 | case CXLinkage_NoLinkage: linkage = "NoLinkage"; break; |
| 446 | case CXLinkage_Internal: linkage = "Internal"; break; |
| 447 | case CXLinkage_UniqueExternal: linkage = "UniqueExternal"; break; |
| 448 | case CXLinkage_External: linkage = "External"; break; |
Ted Kremenek | 3bed527 | 2010-03-03 06:37:58 +0000 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | if (linkage) { |
| 452 | PrintCursor(cursor); |
| 453 | printf("linkage=%s\n", linkage); |
| 454 | } |
| 455 | |
| 456 | return CXChildVisit_Recurse; |
| 457 | } |
| 458 | |
| 459 | /******************************************************************************/ |
Ted Kremenek | 8e0ac17 | 2010-05-14 21:29:26 +0000 | [diff] [blame] | 460 | /* Typekind testing. */ |
| 461 | /******************************************************************************/ |
| 462 | |
| 463 | static enum CXChildVisitResult PrintTypeKind(CXCursor cursor, CXCursor p, |
| 464 | CXClientData d) { |
| 465 | |
| 466 | if (!clang_isInvalid(clang_getCursorKind(cursor))) { |
| 467 | CXType T = clang_getCursorType(cursor); |
Ted Kremenek | 8e0ac17 | 2010-05-14 21:29:26 +0000 | [diff] [blame] | 468 | CXString S = clang_getTypeKindSpelling(T.kind); |
| 469 | PrintCursor(cursor); |
| 470 | printf(" typekind=%s", clang_getCString(S)); |
Ted Kremenek | 8e0ac17 | 2010-05-14 21:29:26 +0000 | [diff] [blame] | 471 | clang_disposeString(S); |
Benjamin Kramer | e1403d2 | 2010-06-22 09:29:44 +0000 | [diff] [blame] | 472 | /* Print the canonical type if it is different. */ |
Ted Kremenek | 04c3cf3 | 2010-06-21 20:15:39 +0000 | [diff] [blame] | 473 | { |
| 474 | CXType CT = clang_getCanonicalType(T); |
| 475 | if (!clang_equalTypes(T, CT)) { |
| 476 | CXString CS = clang_getTypeKindSpelling(CT.kind); |
| 477 | printf(" [canonical=%s]", clang_getCString(CS)); |
| 478 | clang_disposeString(CS); |
| 479 | } |
| 480 | } |
Benjamin Kramer | e1403d2 | 2010-06-22 09:29:44 +0000 | [diff] [blame] | 481 | /* Print the return type if it exists. */ |
Ted Kremenek | 04c3cf3 | 2010-06-21 20:15:39 +0000 | [diff] [blame] | 482 | { |
Ted Kremenek | 9a14084 | 2010-06-21 20:48:56 +0000 | [diff] [blame] | 483 | CXType RT = clang_getCursorResultType(cursor); |
Ted Kremenek | 04c3cf3 | 2010-06-21 20:15:39 +0000 | [diff] [blame] | 484 | if (RT.kind != CXType_Invalid) { |
| 485 | CXString RS = clang_getTypeKindSpelling(RT.kind); |
| 486 | printf(" [result=%s]", clang_getCString(RS)); |
| 487 | clang_disposeString(RS); |
| 488 | } |
| 489 | } |
| 490 | |
Ted Kremenek | 8e0ac17 | 2010-05-14 21:29:26 +0000 | [diff] [blame] | 491 | printf("\n"); |
| 492 | } |
| 493 | return CXChildVisit_Recurse; |
| 494 | } |
| 495 | |
| 496 | |
| 497 | /******************************************************************************/ |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 498 | /* Loading ASTs/source. */ |
| 499 | /******************************************************************************/ |
| 500 | |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 501 | static int perform_test_load(CXIndex Idx, CXTranslationUnit TU, |
Ted Kremenek | 9827156 | 2010-01-12 18:53:15 +0000 | [diff] [blame] | 502 | const char *filter, const char *prefix, |
Ted Kremenek | ce2ae88 | 2010-01-26 17:59:48 +0000 | [diff] [blame] | 503 | CXCursorVisitor Visitor, |
| 504 | PostVisitTU PV) { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 505 | |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 506 | if (prefix) |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 507 | FileCheckPrefix = prefix; |
Ted Kremenek | e3ee02a | 2010-01-26 17:55:33 +0000 | [diff] [blame] | 508 | |
| 509 | if (Visitor) { |
| 510 | enum CXCursorKind K = CXCursor_NotImplemented; |
| 511 | enum CXCursorKind *ck = &K; |
| 512 | VisitorData Data; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 513 | |
Ted Kremenek | e3ee02a | 2010-01-26 17:55:33 +0000 | [diff] [blame] | 514 | /* Perform some simple filtering. */ |
| 515 | if (!strcmp(filter, "all") || !strcmp(filter, "local")) ck = NULL; |
Daniel Dunbar | b1ffee6 | 2010-02-10 20:42:40 +0000 | [diff] [blame] | 516 | else if (!strcmp(filter, "none")) K = (enum CXCursorKind) ~0; |
Ted Kremenek | e3ee02a | 2010-01-26 17:55:33 +0000 | [diff] [blame] | 517 | else if (!strcmp(filter, "category")) K = CXCursor_ObjCCategoryDecl; |
| 518 | else if (!strcmp(filter, "interface")) K = CXCursor_ObjCInterfaceDecl; |
| 519 | else if (!strcmp(filter, "protocol")) K = CXCursor_ObjCProtocolDecl; |
| 520 | else if (!strcmp(filter, "function")) K = CXCursor_FunctionDecl; |
| 521 | else if (!strcmp(filter, "typedef")) K = CXCursor_TypedefDecl; |
| 522 | else if (!strcmp(filter, "scan-function")) Visitor = FunctionScanVisitor; |
| 523 | else { |
| 524 | fprintf(stderr, "Unknown filter for -test-load-tu: %s\n", filter); |
| 525 | return 1; |
| 526 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 527 | |
Ted Kremenek | e3ee02a | 2010-01-26 17:55:33 +0000 | [diff] [blame] | 528 | Data.TU = TU; |
| 529 | Data.Filter = ck; |
| 530 | clang_visitChildren(clang_getTranslationUnitCursor(TU), Visitor, &Data); |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 531 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 532 | |
Ted Kremenek | ce2ae88 | 2010-01-26 17:59:48 +0000 | [diff] [blame] | 533 | if (PV) |
| 534 | PV(TU); |
Ted Kremenek | e3ee02a | 2010-01-26 17:55:33 +0000 | [diff] [blame] | 535 | |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 536 | PrintDiagnostics(TU); |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 537 | clang_disposeTranslationUnit(TU); |
| 538 | return 0; |
| 539 | } |
| 540 | |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 541 | int perform_test_load_tu(const char *file, const char *filter, |
Ted Kremenek | ce2ae88 | 2010-01-26 17:59:48 +0000 | [diff] [blame] | 542 | const char *prefix, CXCursorVisitor Visitor, |
| 543 | PostVisitTU PV) { |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 544 | CXIndex Idx; |
| 545 | CXTranslationUnit TU; |
Ted Kremenek | 020a095 | 2010-02-11 07:41:25 +0000 | [diff] [blame] | 546 | int result; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 547 | Idx = clang_createIndex(/* excludeDeclsFromPCH */ |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 548 | !strcmp(filter, "local") ? 1 : 0, |
| 549 | /* displayDiagnosics=*/1); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 550 | |
Ted Kremenek | 020a095 | 2010-02-11 07:41:25 +0000 | [diff] [blame] | 551 | if (!CreateTranslationUnit(Idx, file, &TU)) { |
| 552 | clang_disposeIndex(Idx); |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 553 | return 1; |
Ted Kremenek | 020a095 | 2010-02-11 07:41:25 +0000 | [diff] [blame] | 554 | } |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 555 | |
Ted Kremenek | 020a095 | 2010-02-11 07:41:25 +0000 | [diff] [blame] | 556 | result = perform_test_load(Idx, TU, filter, prefix, Visitor, PV); |
| 557 | clang_disposeIndex(Idx); |
| 558 | return result; |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 559 | } |
| 560 | |
Ted Kremenek | ce2ae88 | 2010-01-26 17:59:48 +0000 | [diff] [blame] | 561 | int perform_test_load_source(int argc, const char **argv, |
| 562 | const char *filter, CXCursorVisitor Visitor, |
| 563 | PostVisitTU PV) { |
Daniel Dunbar | 8506dde | 2009-12-03 01:54:28 +0000 | [diff] [blame] | 564 | const char *UseExternalASTs = |
| 565 | getenv("CINDEXTEST_USE_EXTERNAL_AST_GENERATION"); |
Daniel Dunbar | ada487d | 2009-12-01 02:03:10 +0000 | [diff] [blame] | 566 | CXIndex Idx; |
| 567 | CXTranslationUnit TU; |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 568 | struct CXUnsavedFile *unsaved_files = 0; |
| 569 | int num_unsaved_files = 0; |
| 570 | int result; |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 571 | |
Daniel Dunbar | ada487d | 2009-12-01 02:03:10 +0000 | [diff] [blame] | 572 | Idx = clang_createIndex(/* excludeDeclsFromPCH */ |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 573 | !strcmp(filter, "local") ? 1 : 0, |
| 574 | /* displayDiagnosics=*/1); |
Daniel Dunbar | ada487d | 2009-12-01 02:03:10 +0000 | [diff] [blame] | 575 | |
Daniel Dunbar | 8506dde | 2009-12-03 01:54:28 +0000 | [diff] [blame] | 576 | if (UseExternalASTs && strlen(UseExternalASTs)) |
| 577 | clang_setUseExternalASTGeneration(Idx, 1); |
| 578 | |
Ted Kremenek | 020a095 | 2010-02-11 07:41:25 +0000 | [diff] [blame] | 579 | if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) { |
| 580 | clang_disposeIndex(Idx); |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 581 | return -1; |
Ted Kremenek | 020a095 | 2010-02-11 07:41:25 +0000 | [diff] [blame] | 582 | } |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 583 | |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 584 | TU = clang_createTranslationUnitFromSourceFile(Idx, 0, |
| 585 | argc - num_unsaved_files, |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 586 | argv + num_unsaved_files, |
| 587 | num_unsaved_files, |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 588 | unsaved_files); |
Daniel Dunbar | ada487d | 2009-12-01 02:03:10 +0000 | [diff] [blame] | 589 | if (!TU) { |
| 590 | fprintf(stderr, "Unable to load translation unit!\n"); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 591 | free_remapped_files(unsaved_files, num_unsaved_files); |
Ted Kremenek | 020a095 | 2010-02-11 07:41:25 +0000 | [diff] [blame] | 592 | clang_disposeIndex(Idx); |
Daniel Dunbar | ada487d | 2009-12-01 02:03:10 +0000 | [diff] [blame] | 593 | return 1; |
| 594 | } |
| 595 | |
Ted Kremenek | ce2ae88 | 2010-01-26 17:59:48 +0000 | [diff] [blame] | 596 | result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV); |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 597 | free_remapped_files(unsaved_files, num_unsaved_files); |
Ted Kremenek | 020a095 | 2010-02-11 07:41:25 +0000 | [diff] [blame] | 598 | clang_disposeIndex(Idx); |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 599 | return result; |
Daniel Dunbar | ada487d | 2009-12-01 02:03:10 +0000 | [diff] [blame] | 600 | } |
| 601 | |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 602 | int perform_test_reparse_source(int argc, const char **argv, int trials, |
| 603 | const char *filter, CXCursorVisitor Visitor, |
| 604 | PostVisitTU PV) { |
| 605 | const char *UseExternalASTs = |
| 606 | getenv("CINDEXTEST_USE_EXTERNAL_AST_GENERATION"); |
| 607 | CXIndex Idx; |
| 608 | CXTranslationUnit TU; |
| 609 | struct CXUnsavedFile *unsaved_files = 0; |
| 610 | int num_unsaved_files = 0; |
| 611 | int result; |
| 612 | int trial; |
| 613 | |
| 614 | Idx = clang_createIndex(/* excludeDeclsFromPCH */ |
| 615 | !strcmp(filter, "local") ? 1 : 0, |
| 616 | /* displayDiagnosics=*/1); |
| 617 | |
| 618 | if (UseExternalASTs && strlen(UseExternalASTs)) |
| 619 | clang_setUseExternalASTGeneration(Idx, 1); |
| 620 | |
| 621 | if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) { |
| 622 | clang_disposeIndex(Idx); |
| 623 | return -1; |
| 624 | } |
| 625 | |
Douglas Gregor | 44c181a | 2010-07-23 00:33:23 +0000 | [diff] [blame] | 626 | TU = clang_parseTranslationUnit(Idx, 0, |
| 627 | argv + num_unsaved_files, |
| 628 | argc - num_unsaved_files, |
| 629 | unsaved_files, |
| 630 | num_unsaved_files, |
| 631 | getDefaultParsingOptions()); |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 632 | if (!TU) { |
| 633 | fprintf(stderr, "Unable to load translation unit!\n"); |
| 634 | free_remapped_files(unsaved_files, num_unsaved_files); |
| 635 | clang_disposeIndex(Idx); |
| 636 | return 1; |
| 637 | } |
| 638 | |
| 639 | for (trial = 0; trial < trials; ++trial) { |
| 640 | if (clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files)) { |
| 641 | clang_disposeTranslationUnit(TU); |
| 642 | free_remapped_files(unsaved_files, num_unsaved_files); |
| 643 | clang_disposeIndex(Idx); |
| 644 | return -1; |
| 645 | } |
| 646 | } |
| 647 | |
| 648 | result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV); |
| 649 | free_remapped_files(unsaved_files, num_unsaved_files); |
| 650 | clang_disposeIndex(Idx); |
| 651 | return result; |
| 652 | } |
| 653 | |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 654 | /******************************************************************************/ |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 655 | /* Logic for testing clang_getCursor(). */ |
| 656 | /******************************************************************************/ |
| 657 | |
| 658 | static void print_cursor_file_scan(CXCursor cursor, |
| 659 | unsigned start_line, unsigned start_col, |
Ted Kremenek | 1d5fdf3 | 2009-11-18 02:02:52 +0000 | [diff] [blame] | 660 | unsigned end_line, unsigned end_col, |
| 661 | const char *prefix) { |
Ted Kremenek | 9096a20 | 2010-01-07 01:17:12 +0000 | [diff] [blame] | 662 | printf("// %s: ", FileCheckPrefix); |
Ted Kremenek | 1d5fdf3 | 2009-11-18 02:02:52 +0000 | [diff] [blame] | 663 | if (prefix) |
| 664 | printf("-%s", prefix); |
Daniel Dunbar | 51b058c | 2010-02-14 08:32:24 +0000 | [diff] [blame] | 665 | PrintExtent(stdout, start_line, start_col, end_line, end_col); |
| 666 | printf(" "); |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 667 | PrintCursor(cursor); |
| 668 | printf("\n"); |
| 669 | } |
| 670 | |
Ted Kremenek | 1d5fdf3 | 2009-11-18 02:02:52 +0000 | [diff] [blame] | 671 | static int perform_file_scan(const char *ast_file, const char *source_file, |
| 672 | const char *prefix) { |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 673 | CXIndex Idx; |
| 674 | CXTranslationUnit TU; |
| 675 | FILE *fp; |
Daniel Dunbar | 2389eff | 2010-02-14 08:32:32 +0000 | [diff] [blame] | 676 | CXCursor prevCursor = clang_getNullCursor(); |
Douglas Gregor | b979034 | 2010-01-22 21:44:22 +0000 | [diff] [blame] | 677 | CXFile file; |
Daniel Dunbar | 2389eff | 2010-02-14 08:32:32 +0000 | [diff] [blame] | 678 | unsigned line = 1, col = 1; |
Daniel Dunbar | 8f0bf81 | 2010-02-14 08:32:51 +0000 | [diff] [blame] | 679 | unsigned start_line = 1, start_col = 1; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 680 | |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 681 | if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1, |
| 682 | /* displayDiagnosics=*/1))) { |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 683 | fprintf(stderr, "Could not create Index\n"); |
| 684 | return 1; |
| 685 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 686 | |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 687 | if (!CreateTranslationUnit(Idx, ast_file, &TU)) |
| 688 | return 1; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 689 | |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 690 | if ((fp = fopen(source_file, "r")) == NULL) { |
| 691 | fprintf(stderr, "Could not open '%s'\n", source_file); |
| 692 | return 1; |
| 693 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 694 | |
Douglas Gregor | b979034 | 2010-01-22 21:44:22 +0000 | [diff] [blame] | 695 | file = clang_getFile(TU, source_file); |
Daniel Dunbar | 2389eff | 2010-02-14 08:32:32 +0000 | [diff] [blame] | 696 | for (;;) { |
| 697 | CXCursor cursor; |
| 698 | int c = fgetc(fp); |
Benjamin Kramer | a9933b9 | 2009-11-17 20:51:40 +0000 | [diff] [blame] | 699 | |
Daniel Dunbar | 2389eff | 2010-02-14 08:32:32 +0000 | [diff] [blame] | 700 | if (c == '\n') { |
| 701 | ++line; |
| 702 | col = 1; |
| 703 | } else |
| 704 | ++col; |
| 705 | |
| 706 | /* Check the cursor at this position, and dump the previous one if we have |
| 707 | * found something new. |
| 708 | */ |
| 709 | cursor = clang_getCursor(TU, clang_getLocation(TU, file, line, col)); |
| 710 | if ((c == EOF || !clang_equalCursors(cursor, prevCursor)) && |
| 711 | prevCursor.kind != CXCursor_InvalidFile) { |
| 712 | print_cursor_file_scan(prevCursor, start_line, start_col, |
Daniel Dunbar | d52864b | 2010-02-14 10:02:57 +0000 | [diff] [blame] | 713 | line, col, prefix); |
Daniel Dunbar | 2389eff | 2010-02-14 08:32:32 +0000 | [diff] [blame] | 714 | start_line = line; |
| 715 | start_col = col; |
Benjamin Kramer | a9933b9 | 2009-11-17 20:51:40 +0000 | [diff] [blame] | 716 | } |
Daniel Dunbar | 2389eff | 2010-02-14 08:32:32 +0000 | [diff] [blame] | 717 | if (c == EOF) |
| 718 | break; |
Benjamin Kramer | a9933b9 | 2009-11-17 20:51:40 +0000 | [diff] [blame] | 719 | |
Daniel Dunbar | 2389eff | 2010-02-14 08:32:32 +0000 | [diff] [blame] | 720 | prevCursor = cursor; |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 721 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 722 | |
Ted Kremenek | 1c6da17 | 2009-11-17 19:37:36 +0000 | [diff] [blame] | 723 | fclose(fp); |
| 724 | return 0; |
| 725 | } |
| 726 | |
| 727 | /******************************************************************************/ |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 728 | /* Logic for testing clang_codeComplete(). */ |
| 729 | /******************************************************************************/ |
| 730 | |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 731 | /* Parse file:line:column from the input string. Returns 0 on success, non-zero |
| 732 | on failure. If successful, the pointer *filename will contain newly-allocated |
| 733 | memory (that will be owned by the caller) to store the file name. */ |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 734 | int parse_file_line_column(const char *input, char **filename, unsigned *line, |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 735 | unsigned *column, unsigned *second_line, |
| 736 | unsigned *second_column) { |
Douglas Gregor | 88d2395 | 2009-11-09 18:19:57 +0000 | [diff] [blame] | 737 | /* Find the second colon. */ |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 738 | const char *last_colon = strrchr(input, ':'); |
| 739 | unsigned values[4], i; |
| 740 | unsigned num_values = (second_line && second_column)? 4 : 2; |
| 741 | |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 742 | char *endptr = 0; |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 743 | if (!last_colon || last_colon == input) { |
| 744 | if (num_values == 4) |
| 745 | fprintf(stderr, "could not parse filename:line:column:line:column in " |
| 746 | "'%s'\n", input); |
| 747 | else |
| 748 | fprintf(stderr, "could not parse filename:line:column in '%s'\n", input); |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 749 | return 1; |
| 750 | } |
| 751 | |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 752 | for (i = 0; i != num_values; ++i) { |
| 753 | const char *prev_colon; |
| 754 | |
| 755 | /* Parse the next line or column. */ |
| 756 | values[num_values - i - 1] = strtol(last_colon + 1, &endptr, 10); |
| 757 | if (*endptr != 0 && *endptr != ':') { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 758 | fprintf(stderr, "could not parse %s in '%s'\n", |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 759 | (i % 2 ? "column" : "line"), input); |
| 760 | return 1; |
| 761 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 762 | |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 763 | if (i + 1 == num_values) |
| 764 | break; |
| 765 | |
| 766 | /* Find the previous colon. */ |
| 767 | prev_colon = last_colon - 1; |
| 768 | while (prev_colon != input && *prev_colon != ':') |
| 769 | --prev_colon; |
| 770 | if (prev_colon == input) { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 771 | fprintf(stderr, "could not parse %s in '%s'\n", |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 772 | (i % 2 == 0? "column" : "line"), input); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 773 | return 1; |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 774 | } |
| 775 | |
| 776 | last_colon = prev_colon; |
Douglas Gregor | 88d2395 | 2009-11-09 18:19:57 +0000 | [diff] [blame] | 777 | } |
| 778 | |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 779 | *line = values[0]; |
| 780 | *column = values[1]; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 781 | |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 782 | if (second_line && second_column) { |
| 783 | *second_line = values[2]; |
| 784 | *second_column = values[3]; |
| 785 | } |
| 786 | |
Douglas Gregor | 88d2395 | 2009-11-09 18:19:57 +0000 | [diff] [blame] | 787 | /* Copy the file name. */ |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 788 | *filename = (char*)malloc(last_colon - input + 1); |
| 789 | memcpy(*filename, input, last_colon - input); |
| 790 | (*filename)[last_colon - input] = 0; |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 791 | return 0; |
| 792 | } |
| 793 | |
| 794 | const char * |
| 795 | clang_getCompletionChunkKindSpelling(enum CXCompletionChunkKind Kind) { |
| 796 | switch (Kind) { |
| 797 | case CXCompletionChunk_Optional: return "Optional"; |
| 798 | case CXCompletionChunk_TypedText: return "TypedText"; |
| 799 | case CXCompletionChunk_Text: return "Text"; |
| 800 | case CXCompletionChunk_Placeholder: return "Placeholder"; |
| 801 | case CXCompletionChunk_Informative: return "Informative"; |
| 802 | case CXCompletionChunk_CurrentParameter: return "CurrentParameter"; |
| 803 | case CXCompletionChunk_LeftParen: return "LeftParen"; |
| 804 | case CXCompletionChunk_RightParen: return "RightParen"; |
| 805 | case CXCompletionChunk_LeftBracket: return "LeftBracket"; |
| 806 | case CXCompletionChunk_RightBracket: return "RightBracket"; |
| 807 | case CXCompletionChunk_LeftBrace: return "LeftBrace"; |
| 808 | case CXCompletionChunk_RightBrace: return "RightBrace"; |
| 809 | case CXCompletionChunk_LeftAngle: return "LeftAngle"; |
| 810 | case CXCompletionChunk_RightAngle: return "RightAngle"; |
| 811 | case CXCompletionChunk_Comma: return "Comma"; |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 812 | case CXCompletionChunk_ResultType: return "ResultType"; |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 813 | case CXCompletionChunk_Colon: return "Colon"; |
| 814 | case CXCompletionChunk_SemiColon: return "SemiColon"; |
| 815 | case CXCompletionChunk_Equal: return "Equal"; |
| 816 | case CXCompletionChunk_HorizontalSpace: return "HorizontalSpace"; |
| 817 | case CXCompletionChunk_VerticalSpace: return "VerticalSpace"; |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 818 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 819 | |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 820 | return "Unknown"; |
| 821 | } |
| 822 | |
Douglas Gregor | 3ac7385 | 2009-11-09 16:04:45 +0000 | [diff] [blame] | 823 | void print_completion_string(CXCompletionString completion_string, FILE *file) { |
Daniel Dunbar | f8297f1 | 2009-11-07 18:34:24 +0000 | [diff] [blame] | 824 | int I, N; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 825 | |
Douglas Gregor | 3ac7385 | 2009-11-09 16:04:45 +0000 | [diff] [blame] | 826 | N = clang_getNumCompletionChunks(completion_string); |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 827 | for (I = 0; I != N; ++I) { |
Ted Kremenek | 2ef6f8f | 2010-02-17 01:42:24 +0000 | [diff] [blame] | 828 | CXString text; |
| 829 | const char *cstr; |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 830 | enum CXCompletionChunkKind Kind |
Douglas Gregor | 3ac7385 | 2009-11-09 16:04:45 +0000 | [diff] [blame] | 831 | = clang_getCompletionChunkKind(completion_string, I); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 832 | |
Douglas Gregor | 3ac7385 | 2009-11-09 16:04:45 +0000 | [diff] [blame] | 833 | if (Kind == CXCompletionChunk_Optional) { |
| 834 | fprintf(file, "{Optional "); |
| 835 | print_completion_string( |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 836 | clang_getCompletionChunkCompletionString(completion_string, I), |
Douglas Gregor | 3ac7385 | 2009-11-09 16:04:45 +0000 | [diff] [blame] | 837 | file); |
| 838 | fprintf(file, "}"); |
| 839 | continue; |
| 840 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 841 | |
Douglas Gregor | d5a2089 | 2009-11-09 17:05:28 +0000 | [diff] [blame] | 842 | text = clang_getCompletionChunkText(completion_string, I); |
Ted Kremenek | 2ef6f8f | 2010-02-17 01:42:24 +0000 | [diff] [blame] | 843 | cstr = clang_getCString(text); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 844 | fprintf(file, "{%s %s}", |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 845 | clang_getCompletionChunkKindSpelling(Kind), |
Ted Kremenek | 2ef6f8f | 2010-02-17 01:42:24 +0000 | [diff] [blame] | 846 | cstr ? cstr : ""); |
| 847 | clang_disposeString(text); |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 848 | } |
Ted Kremenek | 2ef6f8f | 2010-02-17 01:42:24 +0000 | [diff] [blame] | 849 | |
Douglas Gregor | 3ac7385 | 2009-11-09 16:04:45 +0000 | [diff] [blame] | 850 | } |
| 851 | |
| 852 | void print_completion_result(CXCompletionResult *completion_result, |
| 853 | CXClientData client_data) { |
| 854 | FILE *file = (FILE *)client_data; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 855 | CXString ks = clang_getCursorKindSpelling(completion_result->CursorKind); |
| 856 | |
| 857 | fprintf(file, "%s:", clang_getCString(ks)); |
| 858 | clang_disposeString(ks); |
| 859 | |
Douglas Gregor | 3ac7385 | 2009-11-09 16:04:45 +0000 | [diff] [blame] | 860 | print_completion_string(completion_result->CompletionString, file); |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 861 | fprintf(file, " (%u)\n", |
| 862 | clang_getCompletionPriority(completion_result->CompletionString)); |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 863 | } |
| 864 | |
Douglas Gregor | 1982c18 | 2010-07-12 18:38:41 +0000 | [diff] [blame] | 865 | int perform_code_completion(int argc, const char **argv, int timing_only) { |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 866 | const char *input = argv[1]; |
| 867 | char *filename = 0; |
| 868 | unsigned line; |
| 869 | unsigned column; |
Daniel Dunbar | f8297f1 | 2009-11-07 18:34:24 +0000 | [diff] [blame] | 870 | CXIndex CIdx; |
Ted Kremenek | f5d9c93 | 2009-11-17 18:09:14 +0000 | [diff] [blame] | 871 | int errorCode; |
Douglas Gregor | 735df88 | 2009-12-02 09:21:34 +0000 | [diff] [blame] | 872 | struct CXUnsavedFile *unsaved_files = 0; |
| 873 | int num_unsaved_files = 0; |
Douglas Gregor | ec6762c | 2009-12-18 16:20:58 +0000 | [diff] [blame] | 874 | CXCodeCompleteResults *results = 0; |
Daniel Dunbar | f8297f1 | 2009-11-07 18:34:24 +0000 | [diff] [blame] | 875 | |
Douglas Gregor | 1982c18 | 2010-07-12 18:38:41 +0000 | [diff] [blame] | 876 | if (timing_only) |
| 877 | input += strlen("-code-completion-timing="); |
| 878 | else |
| 879 | input += strlen("-code-completion-at="); |
| 880 | |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 881 | if ((errorCode = parse_file_line_column(input, &filename, &line, &column, |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 882 | 0, 0))) |
Ted Kremenek | f5d9c93 | 2009-11-17 18:09:14 +0000 | [diff] [blame] | 883 | return errorCode; |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 884 | |
Douglas Gregor | 735df88 | 2009-12-02 09:21:34 +0000 | [diff] [blame] | 885 | if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files)) |
| 886 | return -1; |
| 887 | |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 888 | CIdx = clang_createIndex(0, 1); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 889 | results = clang_codeComplete(CIdx, |
| 890 | argv[argc - 1], argc - num_unsaved_files - 3, |
| 891 | argv + num_unsaved_files + 2, |
Douglas Gregor | ec6762c | 2009-12-18 16:20:58 +0000 | [diff] [blame] | 892 | num_unsaved_files, unsaved_files, |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 893 | filename, line, column); |
Douglas Gregor | 936ea3b | 2010-01-28 00:56:43 +0000 | [diff] [blame] | 894 | |
Douglas Gregor | ec6762c | 2009-12-18 16:20:58 +0000 | [diff] [blame] | 895 | if (results) { |
| 896 | unsigned i, n = results->NumResults; |
Douglas Gregor | 1982c18 | 2010-07-12 18:38:41 +0000 | [diff] [blame] | 897 | if (!timing_only) |
| 898 | for (i = 0; i != n; ++i) |
| 899 | print_completion_result(results->Results + i, stdout); |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 900 | n = clang_codeCompleteGetNumDiagnostics(results); |
| 901 | for (i = 0; i != n; ++i) { |
| 902 | CXDiagnostic diag = clang_codeCompleteGetDiagnostic(results, i); |
| 903 | PrintDiagnostic(diag); |
| 904 | clang_disposeDiagnostic(diag); |
| 905 | } |
Douglas Gregor | ec6762c | 2009-12-18 16:20:58 +0000 | [diff] [blame] | 906 | clang_disposeCodeCompleteResults(results); |
| 907 | } |
| 908 | |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 909 | clang_disposeIndex(CIdx); |
| 910 | free(filename); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 911 | |
Douglas Gregor | 735df88 | 2009-12-02 09:21:34 +0000 | [diff] [blame] | 912 | free_remapped_files(unsaved_files, num_unsaved_files); |
| 913 | |
Ted Kremenek | f5d9c93 | 2009-11-17 18:09:14 +0000 | [diff] [blame] | 914 | return 0; |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 915 | } |
| 916 | |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 917 | typedef struct { |
| 918 | char *filename; |
| 919 | unsigned line; |
| 920 | unsigned column; |
| 921 | } CursorSourceLocation; |
| 922 | |
| 923 | int inspect_cursor_at(int argc, const char **argv) { |
| 924 | CXIndex CIdx; |
| 925 | int errorCode; |
| 926 | struct CXUnsavedFile *unsaved_files = 0; |
| 927 | int num_unsaved_files = 0; |
| 928 | CXTranslationUnit TU; |
| 929 | CXCursor Cursor; |
| 930 | CursorSourceLocation *Locations = 0; |
| 931 | unsigned NumLocations = 0, Loc; |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 932 | |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 933 | /* Count the number of locations. */ |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 934 | while (strstr(argv[NumLocations+1], "-cursor-at=") == argv[NumLocations+1]) |
| 935 | ++NumLocations; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 936 | |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 937 | /* Parse the locations. */ |
| 938 | assert(NumLocations > 0 && "Unable to count locations?"); |
| 939 | Locations = (CursorSourceLocation *)malloc( |
| 940 | NumLocations * sizeof(CursorSourceLocation)); |
| 941 | for (Loc = 0; Loc < NumLocations; ++Loc) { |
| 942 | const char *input = argv[Loc + 1] + strlen("-cursor-at="); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 943 | if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename, |
| 944 | &Locations[Loc].line, |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 945 | &Locations[Loc].column, 0, 0))) |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 946 | return errorCode; |
| 947 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 948 | |
| 949 | if (parse_remapped_files(argc, argv, NumLocations + 1, &unsaved_files, |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 950 | &num_unsaved_files)) |
| 951 | return -1; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 952 | |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 953 | CIdx = clang_createIndex(0, 1); |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 954 | TU = clang_createTranslationUnitFromSourceFile(CIdx, argv[argc - 1], |
| 955 | argc - num_unsaved_files - 2 - NumLocations, |
Douglas Gregor | 4db64a4 | 2010-01-23 00:14:00 +0000 | [diff] [blame] | 956 | argv + num_unsaved_files + 1 + NumLocations, |
| 957 | num_unsaved_files, |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 958 | unsaved_files); |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 959 | if (!TU) { |
| 960 | fprintf(stderr, "unable to parse input\n"); |
| 961 | return -1; |
| 962 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 963 | |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 964 | for (Loc = 0; Loc < NumLocations; ++Loc) { |
Douglas Gregor | b979034 | 2010-01-22 21:44:22 +0000 | [diff] [blame] | 965 | CXFile file = clang_getFile(TU, Locations[Loc].filename); |
| 966 | if (!file) |
| 967 | continue; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 968 | |
| 969 | Cursor = clang_getCursor(TU, |
| 970 | clang_getLocation(TU, file, Locations[Loc].line, |
| 971 | Locations[Loc].column)); |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 972 | PrintCursor(Cursor); |
| 973 | printf("\n"); |
| 974 | free(Locations[Loc].filename); |
| 975 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 976 | |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 977 | PrintDiagnostics(TU); |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 978 | clang_disposeTranslationUnit(TU); |
| 979 | clang_disposeIndex(CIdx); |
| 980 | free(Locations); |
| 981 | free_remapped_files(unsaved_files, num_unsaved_files); |
| 982 | return 0; |
| 983 | } |
| 984 | |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 985 | int perform_token_annotation(int argc, const char **argv) { |
| 986 | const char *input = argv[1]; |
| 987 | char *filename = 0; |
| 988 | unsigned line, second_line; |
| 989 | unsigned column, second_column; |
| 990 | CXIndex CIdx; |
| 991 | CXTranslationUnit TU = 0; |
| 992 | int errorCode; |
| 993 | struct CXUnsavedFile *unsaved_files = 0; |
| 994 | int num_unsaved_files = 0; |
| 995 | CXToken *tokens; |
| 996 | unsigned num_tokens; |
| 997 | CXSourceRange range; |
| 998 | CXSourceLocation startLoc, endLoc; |
| 999 | CXFile file = 0; |
| 1000 | CXCursor *cursors = 0; |
| 1001 | unsigned i; |
| 1002 | |
| 1003 | input += strlen("-test-annotate-tokens="); |
| 1004 | if ((errorCode = parse_file_line_column(input, &filename, &line, &column, |
| 1005 | &second_line, &second_column))) |
| 1006 | return errorCode; |
| 1007 | |
| 1008 | if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files)) |
| 1009 | return -1; |
| 1010 | |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 1011 | CIdx = clang_createIndex(0, 1); |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1012 | TU = clang_createTranslationUnitFromSourceFile(CIdx, argv[argc - 1], |
| 1013 | argc - num_unsaved_files - 3, |
| 1014 | argv + num_unsaved_files + 2, |
| 1015 | num_unsaved_files, |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 1016 | unsaved_files); |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1017 | if (!TU) { |
| 1018 | fprintf(stderr, "unable to parse input\n"); |
| 1019 | clang_disposeIndex(CIdx); |
| 1020 | free(filename); |
| 1021 | free_remapped_files(unsaved_files, num_unsaved_files); |
| 1022 | return -1; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 1023 | } |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1024 | errorCode = 0; |
| 1025 | |
| 1026 | file = clang_getFile(TU, filename); |
| 1027 | if (!file) { |
| 1028 | fprintf(stderr, "file %s is not in this translation unit\n", filename); |
| 1029 | errorCode = -1; |
| 1030 | goto teardown; |
| 1031 | } |
| 1032 | |
| 1033 | startLoc = clang_getLocation(TU, file, line, column); |
| 1034 | if (clang_equalLocations(clang_getNullLocation(), startLoc)) { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 1035 | fprintf(stderr, "invalid source location %s:%d:%d\n", filename, line, |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1036 | column); |
| 1037 | errorCode = -1; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 1038 | goto teardown; |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1039 | } |
| 1040 | |
| 1041 | endLoc = clang_getLocation(TU, file, second_line, second_column); |
| 1042 | if (clang_equalLocations(clang_getNullLocation(), endLoc)) { |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 1043 | fprintf(stderr, "invalid source location %s:%d:%d\n", filename, |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1044 | second_line, second_column); |
| 1045 | errorCode = -1; |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 1046 | goto teardown; |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | range = clang_getRange(startLoc, endLoc); |
| 1050 | clang_tokenize(TU, range, &tokens, &num_tokens); |
| 1051 | cursors = (CXCursor *)malloc(num_tokens * sizeof(CXCursor)); |
| 1052 | clang_annotateTokens(TU, tokens, num_tokens, cursors); |
| 1053 | for (i = 0; i != num_tokens; ++i) { |
| 1054 | const char *kind = "<unknown>"; |
| 1055 | CXString spelling = clang_getTokenSpelling(TU, tokens[i]); |
| 1056 | CXSourceRange extent = clang_getTokenExtent(TU, tokens[i]); |
| 1057 | unsigned start_line, start_column, end_line, end_column; |
| 1058 | |
| 1059 | switch (clang_getTokenKind(tokens[i])) { |
| 1060 | case CXToken_Punctuation: kind = "Punctuation"; break; |
| 1061 | case CXToken_Keyword: kind = "Keyword"; break; |
| 1062 | case CXToken_Identifier: kind = "Identifier"; break; |
| 1063 | case CXToken_Literal: kind = "Literal"; break; |
| 1064 | case CXToken_Comment: kind = "Comment"; break; |
| 1065 | } |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 1066 | clang_getInstantiationLocation(clang_getRangeStart(extent), |
Douglas Gregor | 46766dc | 2010-01-26 19:19:08 +0000 | [diff] [blame] | 1067 | 0, &start_line, &start_column, 0); |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1068 | clang_getInstantiationLocation(clang_getRangeEnd(extent), |
Douglas Gregor | 46766dc | 2010-01-26 19:19:08 +0000 | [diff] [blame] | 1069 | 0, &end_line, &end_column, 0); |
Daniel Dunbar | 51b058c | 2010-02-14 08:32:24 +0000 | [diff] [blame] | 1070 | printf("%s: \"%s\" ", kind, clang_getCString(spelling)); |
| 1071 | PrintExtent(stdout, start_line, start_column, end_line, end_column); |
Douglas Gregor | 0045e9f | 2010-01-26 18:31:56 +0000 | [diff] [blame] | 1072 | if (!clang_isInvalid(cursors[i].kind)) { |
| 1073 | printf(" "); |
| 1074 | PrintCursor(cursors[i]); |
| 1075 | } |
| 1076 | printf("\n"); |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1077 | } |
| 1078 | free(cursors); |
| 1079 | |
| 1080 | teardown: |
Douglas Gregor | a88084b | 2010-02-18 18:08:43 +0000 | [diff] [blame] | 1081 | PrintDiagnostics(TU); |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1082 | clang_disposeTranslationUnit(TU); |
| 1083 | clang_disposeIndex(CIdx); |
| 1084 | free(filename); |
| 1085 | free_remapped_files(unsaved_files, num_unsaved_files); |
| 1086 | return errorCode; |
| 1087 | } |
| 1088 | |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 1089 | /******************************************************************************/ |
Ted Kremenek | f7b714d | 2010-03-25 02:00:39 +0000 | [diff] [blame] | 1090 | /* USR printing. */ |
| 1091 | /******************************************************************************/ |
| 1092 | |
| 1093 | static int insufficient_usr(const char *kind, const char *usage) { |
| 1094 | fprintf(stderr, "USR for '%s' requires: %s\n", kind, usage); |
| 1095 | return 1; |
| 1096 | } |
| 1097 | |
| 1098 | static unsigned isUSR(const char *s) { |
| 1099 | return s[0] == 'c' && s[1] == ':'; |
| 1100 | } |
| 1101 | |
| 1102 | static int not_usr(const char *s, const char *arg) { |
| 1103 | fprintf(stderr, "'%s' argument ('%s') is not a USR\n", s, arg); |
| 1104 | return 1; |
| 1105 | } |
| 1106 | |
| 1107 | static void print_usr(CXString usr) { |
| 1108 | const char *s = clang_getCString(usr); |
| 1109 | printf("%s\n", s); |
| 1110 | clang_disposeString(usr); |
| 1111 | } |
| 1112 | |
| 1113 | static void display_usrs() { |
| 1114 | fprintf(stderr, "-print-usrs options:\n" |
| 1115 | " ObjCCategory <class name> <category name>\n" |
| 1116 | " ObjCClass <class name>\n" |
| 1117 | " ObjCIvar <ivar name> <class USR>\n" |
| 1118 | " ObjCMethod <selector> [0=class method|1=instance method] " |
| 1119 | "<class USR>\n" |
| 1120 | " ObjCProperty <property name> <class USR>\n" |
| 1121 | " ObjCProtocol <protocol name>\n"); |
| 1122 | } |
| 1123 | |
| 1124 | int print_usrs(const char **I, const char **E) { |
| 1125 | while (I != E) { |
| 1126 | const char *kind = *I; |
| 1127 | unsigned len = strlen(kind); |
| 1128 | switch (len) { |
| 1129 | case 8: |
| 1130 | if (memcmp(kind, "ObjCIvar", 8) == 0) { |
| 1131 | if (I + 2 >= E) |
| 1132 | return insufficient_usr(kind, "<ivar name> <class USR>"); |
| 1133 | if (!isUSR(I[2])) |
| 1134 | return not_usr("<class USR>", I[2]); |
| 1135 | else { |
| 1136 | CXString x; |
| 1137 | x.Spelling = I[2]; |
| 1138 | x.MustFreeString = 0; |
| 1139 | print_usr(clang_constructUSR_ObjCIvar(I[1], x)); |
| 1140 | } |
| 1141 | |
| 1142 | I += 3; |
| 1143 | continue; |
| 1144 | } |
| 1145 | break; |
| 1146 | case 9: |
| 1147 | if (memcmp(kind, "ObjCClass", 9) == 0) { |
| 1148 | if (I + 1 >= E) |
| 1149 | return insufficient_usr(kind, "<class name>"); |
| 1150 | print_usr(clang_constructUSR_ObjCClass(I[1])); |
| 1151 | I += 2; |
| 1152 | continue; |
| 1153 | } |
| 1154 | break; |
| 1155 | case 10: |
| 1156 | if (memcmp(kind, "ObjCMethod", 10) == 0) { |
| 1157 | if (I + 3 >= E) |
| 1158 | return insufficient_usr(kind, "<method selector> " |
| 1159 | "[0=class method|1=instance method] <class USR>"); |
| 1160 | if (!isUSR(I[3])) |
| 1161 | return not_usr("<class USR>", I[3]); |
| 1162 | else { |
| 1163 | CXString x; |
| 1164 | x.Spelling = I[3]; |
| 1165 | x.MustFreeString = 0; |
| 1166 | print_usr(clang_constructUSR_ObjCMethod(I[1], atoi(I[2]), x)); |
| 1167 | } |
| 1168 | I += 4; |
| 1169 | continue; |
| 1170 | } |
| 1171 | break; |
| 1172 | case 12: |
| 1173 | if (memcmp(kind, "ObjCCategory", 12) == 0) { |
| 1174 | if (I + 2 >= E) |
| 1175 | return insufficient_usr(kind, "<class name> <category name>"); |
| 1176 | print_usr(clang_constructUSR_ObjCCategory(I[1], I[2])); |
| 1177 | I += 3; |
| 1178 | continue; |
| 1179 | } |
| 1180 | if (memcmp(kind, "ObjCProtocol", 12) == 0) { |
| 1181 | if (I + 1 >= E) |
| 1182 | return insufficient_usr(kind, "<protocol name>"); |
| 1183 | print_usr(clang_constructUSR_ObjCProtocol(I[1])); |
| 1184 | I += 2; |
| 1185 | continue; |
| 1186 | } |
| 1187 | if (memcmp(kind, "ObjCProperty", 12) == 0) { |
| 1188 | if (I + 2 >= E) |
| 1189 | return insufficient_usr(kind, "<property name> <class USR>"); |
| 1190 | if (!isUSR(I[2])) |
| 1191 | return not_usr("<class USR>", I[2]); |
| 1192 | else { |
| 1193 | CXString x; |
| 1194 | x.Spelling = I[2]; |
| 1195 | x.MustFreeString = 0; |
| 1196 | print_usr(clang_constructUSR_ObjCProperty(I[1], x)); |
| 1197 | } |
| 1198 | I += 3; |
| 1199 | continue; |
| 1200 | } |
| 1201 | break; |
| 1202 | default: |
| 1203 | break; |
| 1204 | } |
| 1205 | break; |
| 1206 | } |
| 1207 | |
| 1208 | if (I != E) { |
| 1209 | fprintf(stderr, "Invalid USR kind: %s\n", *I); |
| 1210 | display_usrs(); |
| 1211 | return 1; |
| 1212 | } |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
| 1216 | int print_usrs_file(const char *file_name) { |
| 1217 | char line[2048]; |
| 1218 | const char *args[128]; |
| 1219 | unsigned numChars = 0; |
| 1220 | |
| 1221 | FILE *fp = fopen(file_name, "r"); |
| 1222 | if (!fp) { |
| 1223 | fprintf(stderr, "error: cannot open '%s'\n", file_name); |
| 1224 | return 1; |
| 1225 | } |
| 1226 | |
| 1227 | /* This code is not really all that safe, but it works fine for testing. */ |
| 1228 | while (!feof(fp)) { |
| 1229 | char c = fgetc(fp); |
| 1230 | if (c == '\n') { |
| 1231 | unsigned i = 0; |
| 1232 | const char *s = 0; |
| 1233 | |
| 1234 | if (numChars == 0) |
| 1235 | continue; |
| 1236 | |
| 1237 | line[numChars] = '\0'; |
| 1238 | numChars = 0; |
| 1239 | |
| 1240 | if (line[0] == '/' && line[1] == '/') |
| 1241 | continue; |
| 1242 | |
| 1243 | s = strtok(line, " "); |
| 1244 | while (s) { |
| 1245 | args[i] = s; |
| 1246 | ++i; |
| 1247 | s = strtok(0, " "); |
| 1248 | } |
| 1249 | if (print_usrs(&args[0], &args[i])) |
| 1250 | return 1; |
| 1251 | } |
| 1252 | else |
| 1253 | line[numChars++] = c; |
| 1254 | } |
| 1255 | |
| 1256 | fclose(fp); |
| 1257 | return 0; |
| 1258 | } |
| 1259 | |
| 1260 | /******************************************************************************/ |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 1261 | /* Command line processing. */ |
| 1262 | /******************************************************************************/ |
Ted Kremenek | f5d9c93 | 2009-11-17 18:09:14 +0000 | [diff] [blame] | 1263 | |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 1264 | static CXCursorVisitor GetVisitor(const char *s) { |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1265 | if (s[0] == '\0') |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 1266 | return FilteredPrintingVisitor; |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1267 | if (strcmp(s, "-usrs") == 0) |
| 1268 | return USRVisitor; |
| 1269 | return NULL; |
| 1270 | } |
| 1271 | |
Ted Kremenek | f5d9c93 | 2009-11-17 18:09:14 +0000 | [diff] [blame] | 1272 | static void print_usage(void) { |
| 1273 | fprintf(stderr, |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 1274 | "usage: c-index-test -code-completion-at=<site> <compiler arguments>\n" |
Douglas Gregor | 1982c18 | 2010-07-12 18:38:41 +0000 | [diff] [blame] | 1275 | " c-index-test -code-completion-timing=<site> <compiler arguments>\n" |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 1276 | " c-index-test -cursor-at=<site> <compiler arguments>\n" |
Ted Kremenek | 1d5fdf3 | 2009-11-18 02:02:52 +0000 | [diff] [blame] | 1277 | " c-index-test -test-file-scan <AST file> <source file> " |
| 1278 | "[FileCheck prefix]\n" |
Ted Kremenek | fe6fd3d | 2010-01-05 23:18:49 +0000 | [diff] [blame] | 1279 | " c-index-test -test-load-tu <AST file> <symbol filter> " |
| 1280 | "[FileCheck prefix]\n" |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1281 | " c-index-test -test-load-tu-usrs <AST file> <symbol filter> " |
| 1282 | "[FileCheck prefix]\n" |
Douglas Gregor | 1982c18 | 2010-07-12 18:38:41 +0000 | [diff] [blame] | 1283 | " c-index-test -test-load-source <symbol filter> {<args>}*\n"); |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 1284 | fprintf(stderr, |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1285 | " c-index-test -test-load-source-reparse <trials> <symbol filter> " |
| 1286 | " {<args>}*\n" |
Douglas Gregor | 1982c18 | 2010-07-12 18:38:41 +0000 | [diff] [blame] | 1287 | " c-index-test -test-load-source-usrs <symbol filter> {<args>}*\n" |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 1288 | " c-index-test -test-annotate-tokens=<range> {<args>}*\n" |
| 1289 | " c-index-test -test-inclusion-stack-source {<args>}*\n" |
Ted Kremenek | 3bed527 | 2010-03-03 06:37:58 +0000 | [diff] [blame] | 1290 | " c-index-test -test-inclusion-stack-tu <AST file>\n" |
Ted Kremenek | f7b714d | 2010-03-25 02:00:39 +0000 | [diff] [blame] | 1291 | " c-index-test -test-print-linkage-source {<args>}*\n" |
Ted Kremenek | 8e0ac17 | 2010-05-14 21:29:26 +0000 | [diff] [blame] | 1292 | " c-index-test -test-print-typekind {<args>}*\n" |
Chandler Carruth | 53513d2 | 2010-07-22 06:29:13 +0000 | [diff] [blame] | 1293 | " c-index-test -print-usr [<CursorKind> {<args>}]*\n"); |
| 1294 | fprintf(stderr, |
Douglas Gregor | caf4bd3 | 2010-07-20 14:34:35 +0000 | [diff] [blame] | 1295 | " c-index-test -print-usr-file <file>\n\n"); |
| 1296 | fprintf(stderr, |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1297 | " <symbol filter> values:\n%s", |
Ted Kremenek | 0d43519 | 2009-11-17 18:13:31 +0000 | [diff] [blame] | 1298 | " all - load all symbols, including those from PCH\n" |
| 1299 | " local - load all symbols except those in PCH\n" |
| 1300 | " category - only load ObjC categories (non-PCH)\n" |
| 1301 | " interface - only load ObjC interfaces (non-PCH)\n" |
| 1302 | " protocol - only load ObjC protocols (non-PCH)\n" |
| 1303 | " function - only load functions (non-PCH)\n" |
Daniel Dunbar | 625e4ef | 2009-12-01 02:35:37 +0000 | [diff] [blame] | 1304 | " typedef - only load typdefs (non-PCH)\n" |
| 1305 | " scan-function - scan function bodies (non-PCH)\n\n"); |
Ted Kremenek | f5d9c93 | 2009-11-17 18:09:14 +0000 | [diff] [blame] | 1306 | } |
| 1307 | |
| 1308 | int main(int argc, const char **argv) { |
Douglas Gregor | 0a812cf | 2010-02-18 23:07:20 +0000 | [diff] [blame] | 1309 | clang_enableStackTraces(); |
Ted Kremenek | f5d9c93 | 2009-11-17 18:09:14 +0000 | [diff] [blame] | 1310 | if (argc > 2 && strstr(argv[1], "-code-completion-at=") == argv[1]) |
Douglas Gregor | 1982c18 | 2010-07-12 18:38:41 +0000 | [diff] [blame] | 1311 | return perform_code_completion(argc, argv, 0); |
| 1312 | if (argc > 2 && strstr(argv[1], "-code-completion-timing=") == argv[1]) |
| 1313 | return perform_code_completion(argc, argv, 1); |
Douglas Gregor | f2c87bd | 2010-01-15 19:40:17 +0000 | [diff] [blame] | 1314 | if (argc > 2 && strstr(argv[1], "-cursor-at=") == argv[1]) |
| 1315 | return inspect_cursor_at(argc, argv); |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1316 | else if (argc >= 4 && strncmp(argv[1], "-test-load-tu", 13) == 0) { |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 1317 | CXCursorVisitor I = GetVisitor(argv[1] + 13); |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1318 | if (I) |
Ted Kremenek | ce2ae88 | 2010-01-26 17:59:48 +0000 | [diff] [blame] | 1319 | return perform_test_load_tu(argv[2], argv[3], argc >= 5 ? argv[4] : 0, I, |
| 1320 | NULL); |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1321 | } |
Douglas Gregor | abc563f | 2010-07-19 21:46:24 +0000 | [diff] [blame] | 1322 | else if (argc >= 5 && strncmp(argv[1], "-test-load-source-reparse", 25) == 0){ |
| 1323 | CXCursorVisitor I = GetVisitor(argv[1] + 25); |
| 1324 | if (I) { |
| 1325 | int trials = atoi(argv[2]); |
| 1326 | return perform_test_reparse_source(argc - 4, argv + 4, trials, argv[3], I, |
| 1327 | NULL); |
| 1328 | } |
| 1329 | } |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1330 | else if (argc >= 4 && strncmp(argv[1], "-test-load-source", 17) == 0) { |
Douglas Gregor | e5b72ba | 2010-01-20 21:32:04 +0000 | [diff] [blame] | 1331 | CXCursorVisitor I = GetVisitor(argv[1] + 17); |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1332 | if (I) |
Ted Kremenek | ce2ae88 | 2010-01-26 17:59:48 +0000 | [diff] [blame] | 1333 | return perform_test_load_source(argc - 3, argv + 3, argv[2], I, NULL); |
Ted Kremenek | 7d40562 | 2010-01-12 23:34:26 +0000 | [diff] [blame] | 1334 | } |
| 1335 | else if (argc >= 4 && strcmp(argv[1], "-test-file-scan") == 0) |
Ted Kremenek | 1d5fdf3 | 2009-11-18 02:02:52 +0000 | [diff] [blame] | 1336 | return perform_file_scan(argv[2], argv[3], |
| 1337 | argc >= 5 ? argv[4] : 0); |
Douglas Gregor | fc8ea23 | 2010-01-26 17:06:03 +0000 | [diff] [blame] | 1338 | else if (argc > 2 && strstr(argv[1], "-test-annotate-tokens=") == argv[1]) |
| 1339 | return perform_token_annotation(argc, argv); |
Ted Kremenek | 16b55a7 | 2010-01-26 19:31:51 +0000 | [diff] [blame] | 1340 | else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-source") == 0) |
| 1341 | return perform_test_load_source(argc - 2, argv + 2, "all", NULL, |
| 1342 | PrintInclusionStack); |
| 1343 | else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-tu") == 0) |
| 1344 | return perform_test_load_tu(argv[2], "all", NULL, NULL, |
| 1345 | PrintInclusionStack); |
Ted Kremenek | 3bed527 | 2010-03-03 06:37:58 +0000 | [diff] [blame] | 1346 | else if (argc > 2 && strcmp(argv[1], "-test-print-linkage-source") == 0) |
| 1347 | return perform_test_load_source(argc - 2, argv + 2, "all", PrintLinkage, |
| 1348 | NULL); |
Ted Kremenek | 8e0ac17 | 2010-05-14 21:29:26 +0000 | [diff] [blame] | 1349 | else if (argc > 2 && strcmp(argv[1], "-test-print-typekind") == 0) |
| 1350 | return perform_test_load_source(argc - 2, argv + 2, "all", |
| 1351 | PrintTypeKind, 0); |
Ted Kremenek | f7b714d | 2010-03-25 02:00:39 +0000 | [diff] [blame] | 1352 | else if (argc > 1 && strcmp(argv[1], "-print-usr") == 0) { |
| 1353 | if (argc > 2) |
| 1354 | return print_usrs(argv + 2, argv + argc); |
| 1355 | else { |
| 1356 | display_usrs(); |
| 1357 | return 1; |
| 1358 | } |
| 1359 | } |
| 1360 | else if (argc > 2 && strcmp(argv[1], "-print-usr-file") == 0) |
| 1361 | return print_usrs_file(argv[2]); |
Ted Kremenek | e68fff6 | 2010-02-17 00:41:32 +0000 | [diff] [blame] | 1362 | |
Ted Kremenek | f5d9c93 | 2009-11-17 18:09:14 +0000 | [diff] [blame] | 1363 | print_usage(); |
| 1364 | return 1; |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 1365 | } |