-
Notifications
You must be signed in to change notification settings - Fork 5
/
SCKSourceCollection.m
201 lines (171 loc) · 4.64 KB
/
SCKSourceCollection.m
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#import "SourceCodeKit.h"
#import <Cocoa/Cocoa.h>
#import <EtoileFoundation/EtoileFoundation.h>
#include <objc/runtime.h>
/**
* Mapping from source file extensions to SCKSourceFile subclasses.
*/
static NSDictionary *fileClasses;
@interface SCKClangIndex : NSObject @end
@implementation SCKSourceCollection
{
NSMutableDictionary *indexes;
/** Files that have already been created. */
NSMutableDictionary *files; //TODO: turn back into NSCache
NSMutableDictionary *bundles;
NSMutableDictionary *bundleClasses;
NSMutableDictionary *classes;
NSMutableDictionary *protocols;
NSMutableDictionary *functions;
NSMutableDictionary *globals;
NSMutableDictionary *enumerations;
NSMutableDictionary *enumerationValues;
BOOL ignoresIncludedSymbols;
}
@synthesize files, bundles, classes, protocols, globals, functions, enumerations, enumerationValues, ignoresIncludedSymbols;
+ (void)initialize
{
Class clang = NSClassFromString(@"SCKClangSourceFile");
fileClasses = [D(clang, @"m",
clang, @"cc",
clang, @"c",
clang, @"h",
clang, @"cpp") copy];
}
- (NSMutableDictionary *)newIndexes
{
NSMutableDictionary *newIndexes = [NSMutableDictionary new];
// A single clang index instance for all of the clang-supported file types
id index = [SCKClangIndex new];
[newIndexes setObject: index forKey: @"h"];
[newIndexes setObject: index forKey: @"m"];
[newIndexes setObject: index forKey: @"c"];
[newIndexes setObject: index forKey: @"cpp"];
[newIndexes setObject: index forKey: @"cc"];
return newIndexes;
}
- (void)clear
{
indexes = [self newIndexes];
files = [NSMutableDictionary new];
bundles = [NSMutableDictionary new];
bundleClasses = [NSMutableDictionary new];
classes = [NSMutableDictionary new];
protocols = [NSMutableDictionary new];
globals = [NSMutableDictionary new];
functions = [NSMutableDictionary new];
enumerations = [NSMutableDictionary new];
enumerationValues = [NSMutableDictionary new];
}
- (id)init
{
SUPERINIT
[self clear];
int count = objc_getClassList(NULL, 0);
Class *classList = (__unsafe_unretained Class *)calloc(sizeof(Class), count);
objc_getClassList(classList, count);
for (int i=0 ; i<count ; i++)
{
STACK_SCOPED SCKClass *cls = [[SCKClass alloc] initWithClass: classList[i]];
[bundleClasses setObject: cls forKey: [cls name]];
NSBundle *b = [NSBundle bundleForClass: classList[i]];
if (nil == b)
{
continue;
}
SCKBundle *bundle = [bundles objectForKey: [b bundlePath]];
if (nil == bundle)
{
bundle = [SCKBundle new];
bundle.name = [b bundlePath];
[bundles setObject: bundle forKey: [b bundlePath]];
}
[bundle.classes addObject: cls];
}
free(classList);
return self;
}
- (SCKClass*)classForName: (NSString*)aName
{
SCKClass *class = [classes objectForKey: aName];
if (nil != class)
{
return class;
}
class = [SCKClass new];
[class setName: aName];
[classes setObject: class forKey: aName];
return class;
}
- (SCKProtocol*)protocolForName: (NSString*)aName
{
SCKProtocol *protocol = [protocols objectForKey: aName];
if (nil != protocol)
{
return protocol;
}
protocol = [SCKProtocol new];
[protocol setName: aName];
[protocols setObject: protocol forKey: aName];
return protocol;
}
- (SCKFunction*)functionForName: (NSString*)aName
{
SCKFunction *function = [functions objectForKey: aName];
if (nil != function)
{
return function;
}
function = [SCKFunction new];
[function setName: aName];
[functions setObject: function forKey: aName];
return function;
}
- (SCKGlobal*)globalForName: (NSString*)aName
{
SCKGlobal *global = [globals objectForKey: aName];
if (nil != global)
{
return global;
}
global = [SCKGlobal new];
[global setName: aName];
[globals setObject: global forKey: aName];
return global;
}
- (void)addEnumeration: (SCKEnumeration *)anEnum
{
[enumerations setObject: anEnum forKey: [anEnum name]];
}
- (void)addEnumerationValue: (SCKEnumerationValue *)anEnumValue
{
[enumerationValues setObject: anEnumValue forKey: [anEnumValue name]];
}
- (SCKIndex*)indexForFileExtension: (NSString*)extension
{
return [indexes objectForKey: extension];
}
- (SCKSourceFile*)sourceFileForPath: (NSString*)aPath
{
NSString *path = [aPath stringByStandardizingIntoAbsolutePath];
SCKSourceFile *file = [files objectForKey: path];
if (nil != file)
{
return file;
}
NSString *extension = [path pathExtension];
file = [[fileClasses objectForKey: extension] fileUsingIndex: [indexes objectForKey: extension]];
file.fileName = path;
file.collection = self;
[file reparse];
if (nil != file)
{
[files setObject: file forKey: path];
}
else
{
NSLog(@"Failed to load %@", path);
}
return file;
}
@end