aboutsummaryrefslogtreecommitdiff
path: root/tools/c-index-test/c-index-test.c
blob: b40386399297cb04a485cf9a46eb485cc2ca6814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* c-index-test.c */

#include "clang-c/Index.h"
#include <stdio.h>
#include <string.h>

static void PrintCursor(CXCursor Cursor) {
  if (clang_isInvalid(Cursor.kind))
    printf("Invalid Cursor => %s\n", clang_getCursorKindSpelling(Cursor.kind));
  else
    printf("%s => %s ", clang_getCursorKindSpelling(Cursor.kind),
                        clang_getCursorSpelling(Cursor));
}

static void DeclVisitor(CXDecl Dcl, CXCursor Cursor, CXClientData Filter) 
{
  if (!Filter || (Cursor.kind == *(enum CXCursorKind *)Filter)) {
    PrintCursor(Cursor);
    printf("(Context: %s", clang_getDeclSpelling(Dcl));
    printf(" Source:  %s (%d:%d))\n", clang_getCursorSource(Cursor),
                                      clang_getCursorLine(Cursor),
                                      clang_getCursorColumn(Cursor));
  }
}
static void TranslationUnitVisitor(CXTranslationUnit Unit, CXCursor Cursor,
                                   CXClientData Filter) 
{
  if (!Filter || (Cursor.kind == *(enum CXCursorKind *)Filter)) {
    PrintCursor(Cursor);
    printf("(Context: %s", clang_getTranslationUnitSpelling(Unit));
    printf(" Source:  %s (%d:%d))\n", clang_getCursorSource(Cursor),
                                      clang_getCursorLine(Cursor),
                                      clang_getCursorColumn(Cursor));

    if (Cursor.kind == CXCursor_FunctionDefn) {
      const char *startBuf, *endBuf;
      unsigned startLine, startColumn, endLine, endColumn;
      clang_getDefinitionSpellingAndExtent(Cursor, &startBuf, &endBuf,
                                           &startLine, &startColumn,
                                           &endLine, &endColumn);
      /* Probe the entire body, looking for "refs". */
      unsigned curLine = startLine, curColumn = startColumn;
      while (startBuf <= endBuf) {
        if (*startBuf == '\n') {
          startBuf++;
          curLine++;
          curColumn = 1;
        }
        CXCursor Ref = clang_getCursor(Unit, clang_getCursorSource(Cursor), 
                                       curLine, curColumn);
        if (Ref.kind != CXCursor_FunctionDecl) {
          PrintCursor(Ref);
          printf("(Context: %s", clang_getDeclSpelling(Ref.decl));
          printf(" Source:  %s (%d:%d))\n", clang_getCursorSource(Ref),
                                            curLine, curColumn);
        }
        startBuf++;
        curColumn++;
      }
    }
    clang_loadDeclaration(Cursor.decl, DeclVisitor, 0);
  }
}

/*
 * First sign of life:-)
 */
int main(int argc, char **argv) {
  CXIndex Idx = clang_createIndex();
  CXTranslationUnit TU = clang_createTranslationUnit(Idx, argv[1]);

  if (argc == 2) {
    /* malloc - returns a cursor of type CXCursor_FunctionDecl */
    CXCursor C = clang_getCursor(TU, "/usr/include/stdlib.h", 169, 7);
    PrintCursor(C);
    /* methodSignature - returns a cursor of type ObjCInstanceMethodDecl */
    C = clang_getCursor(TU, "/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h", 22, 1);
    PrintCursor(C);
    C = clang_getCursor(TU, "Large.m", 5, 18);
    PrintCursor(C);
  } else if (argc == 3) {
    enum CXCursorKind K = CXCursor_NotImplemented;
    
    if (!strcmp(argv[2], "all")) {
      clang_loadTranslationUnit(TU, TranslationUnitVisitor, 0);
      return 1;
    } 
    if (!strcmp(argv[2], "category")) K = CXCursor_ObjCCategoryDecl;
    else if (!strcmp(argv[2], "interface")) K = CXCursor_ObjCInterfaceDecl;
    else if (!strcmp(argv[2], "protocol")) K = CXCursor_ObjCProtocolDecl;
    else if (!strcmp(argv[2], "function")) K = CXCursor_FunctionDecl;
    else if (!strcmp(argv[2], "typedef")) K = CXCursor_TypedefDecl;
    
    clang_loadTranslationUnit(TU, TranslationUnitVisitor, &K);
  }
  return 1;
}