-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathXCProject.m
More file actions
executable file
·407 lines (345 loc) · 11.5 KB
/
XCProject.m
File metadata and controls
executable file
·407 lines (345 loc) · 11.5 KB
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
////////////////////////////////////////////////////////////////////////////////
//
// JASPER BLUES
// Copyright 2012 - 2013 Jasper Blues
// All Rights Reserved.
//
// NOTICE: Jasper Blues permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
#import "XCProject.h"
#import "XCGroup.h"
#import "XCSourceFile.h"
#import "XCTarget.h"
#import "XCFileOperationQueue.h"
#import "XCProjectBuildConfig.h"
NSString* const XCProjectNotFoundException;
@implementation XCProject
@synthesize fileOperationQueue = _fileOperationQueue;
//-------------------------------------------------------------------------------------------
#pragma mark - Class Methods
//-------------------------------------------------------------------------------------------
+ (XCProject*)projectWithFilePath:(NSString*)filePath
{
return [[XCProject alloc] initWithFilePath:filePath];
}
//-------------------------------------------------------------------------------------------
#pragma mark - Initialization & Destruction
//-------------------------------------------------------------------------------------------
- (id)initWithFilePath:(NSString*)filePath
{
if ((self = [super init]))
{
_filePath = [filePath copy];
_dataStore = [[NSMutableDictionary alloc] initWithContentsOfFile:[_filePath stringByAppendingPathComponent:@"project.pbxproj"]];
if (!_dataStore)
{
[NSException raise:XCProjectNotFoundException format:@"Project file not found at file path %@", _filePath];
}
_fileOperationQueue = [[XCFileOperationQueue alloc] initWithBaseDirectory:[_filePath stringByDeletingLastPathComponent]];
}
return self;
}
//-------------------------------------------------------------------------------------------
#pragma mark - Interface Methods
//-------------------------------------------------------------------------------------------
#pragma mark Files
- (NSArray*)files
{
NSMutableArray* results = [NSMutableArray array];
[[self objects] enumerateKeysAndObjectsUsingBlock:^(NSString* key, NSDictionary* obj, BOOL* stop)
{
if ([[obj valueForKey:@"isa"] xce_hasFileReferenceType])
{
XcodeSourceFileType fileType = XCSourceFileTypeFromStringRepresentation([obj valueForKey:@"lastKnownFileType"] ?: [obj valueForKey:@"explicitFileType"]);
NSString* path = [obj valueForKey:@"path"];
NSString* sourceTree = [obj valueForKey:@"sourceTree"];
XCSourceFile* sourceFile = [XCSourceFile sourceFileWithProject:self
key:key
type:fileType
name:path
sourceTree:(sourceTree ?: @"<group>")
path:nil];
[results addObject:sourceFile];
}
}];
return results;
}
- (XCSourceFile*)fileWithKey:(NSString*)key
{
NSDictionary* obj = [[self objects] valueForKey:key];
if (obj && [[obj valueForKey:@"isa"] xce_hasFileReferenceOrReferenceProxyType])
{
XcodeSourceFileType fileType = XCSourceFileTypeFromStringRepresentation([obj valueForKey:@"lastKnownFileType"]?: [obj valueForKey:@"explicitFileType"]);
NSString* name = [obj valueForKey:@"name"];
NSString* sourceTree = [obj valueForKey:@"sourceTree"];
NSString* path = [obj valueForKey:@"path"];
if (name == nil)
{
name = path;
}
return [XCSourceFile sourceFileWithProject:self
key:key
type:fileType
name:name
sourceTree:(sourceTree ?: @"<group>")
path:path];
}
return nil;
}
- (XCSourceFile*)fileWithName:(NSString*)name
{
for (XCSourceFile* projectFile in [self files])
{
if ([[projectFile name] isEqualToString:name])
{
return projectFile;
}
}
return nil;
}
- (NSArray*)headerFiles
{
return [self projectFilesOfType:SourceCodeHeader];
}
- (NSArray*)objectiveCFiles
{
return [self projectFilesOfType:SourceCodeObjC];
}
- (NSArray*)objectiveCPlusPlusFiles
{
return [self projectFilesOfType:SourceCodeObjCPlusPlus];
}
- (NSArray*)xibFiles
{
return [self projectFilesOfType:XibFile];
}
- (NSArray*)imagePNGFiles
{
return [self projectFilesOfType:ImageResourcePNG];
}
// need this value to construct relative path in XcodeprojDefinition
- (NSString*)filePath
{
return _filePath;
}
//-------------------------------------------------------------------------------------------
#pragma mark Groups
//-------------------------------------------------------------------------------------------
- (NSArray*)groups
{
NSMutableArray* results = [[NSMutableArray alloc] init];
[[self objects] enumerateKeysAndObjectsUsingBlock:^(NSString* key, NSDictionary* obj, BOOL* stop)
{
if ([[obj valueForKey:@"isa"] xce_hasGroupType])
{
XCGroup* group = _groups[key];
if (group == nil)
{
group = [self createGroupWithDictionary:obj forKey:key];
_groups[key] = group;
}
[results addObject:group];
}
}];
return results;
}
//TODO: Optimize this implementation.
- (XCGroup*)rootGroup
{
for (XCGroup* group in [self groups])
{
if ([group isRootGroup])
{
return group;
}
}
return nil;
}
- (NSArray*)rootGroups
{
XCGroup* group = [self rootGroup];
if (group)
{
return [NSArray arrayWithObject:group];
}
NSMutableArray* results = [NSMutableArray array];
for (XCGroup* group in [self groups])
{
if ([group parentGroup] == nil)
{
[results addObject:group];
}
}
return [results copy];
}
- (XCGroup*)groupWithKey:(NSString*)key
{
XCGroup* group = [_groups objectForKey:key];
if (group)
{
return group;
}
NSDictionary* obj = [[self objects] objectForKey:key];
if (obj && [[obj valueForKey:@"isa"] xce_hasGroupType])
{
XCGroup* group = [self createGroupWithDictionary:obj forKey:key];
_groups[key] = group;
return group;
}
return nil;
}
- (XCGroup*)groupForGroupMemberWithKey:(NSString*)key
{
for (XCGroup* group in [self groups])
{
if ([group memberWithKey:key])
{
return group;
}
}
return nil;
}
- (XCGroup*)groupWithSourceFile:(XCSourceFile*)sourceFile
{
for (XCGroup* group in [self groups])
{
for (id <XcodeGroupMember> member in [group members])
{
if ([member isKindOfClass:[XCSourceFile class]] && [[sourceFile key] isEqualToString:[member key]])
{
return group;
}
}
}
return nil;
}
//TODO: This could fail if the path attribute on a given group is more than one directory. Start with candidates and
//TODO: search backwards.
- (XCGroup*)groupWithPathFromRoot:(NSString*)path
{
NSArray* pathItems = [path pathComponents];
XCGroup* currentGroup = [self rootGroup];
for (NSString* pathItem in pathItems)
{
id <XcodeGroupMember> group = [currentGroup memberWithDisplayName:pathItem];
if ([group isKindOfClass:[XCGroup class]])
{
currentGroup = group;
}
else
{
return nil;
}
}
return currentGroup;
}
- (XCGroup*)createGroupWithDictionary:(NSDictionary*)dictionary forKey:(NSString*)key
{
return [XCGroup groupWithProject:self
key:key
alias:[dictionary valueForKey:@"name"]
path:[dictionary valueForKey:@"path"]
children:[dictionary valueForKey:@"children"]];
}
//-------------------------------------------------------------------------------------------
#pragma mark targets
//-------------------------------------------------------------------------------------------
- (NSArray*)targets
{
if (_targets == nil)
{
_targets = [[NSMutableArray alloc] init];
[[self objects] enumerateKeysAndObjectsUsingBlock:^(NSString* key, NSDictionary* obj, BOOL* stop)
{
if ([[obj valueForKey:@"isa"] xce_hasNativeTargetType])
{
XCTarget* target = [XCTarget targetWithProject:self
key:key
name:[obj valueForKey:@"name"]
productName:[obj valueForKey:@"productName"]
productReference:[obj valueForKey:@"productReference"]];
[_targets addObject:target];
}
}];
}
return _targets;
}
- (XCTarget*)targetWithName:(NSString*)name
{
for (XCTarget* target in [self targets])
{
if ([[target name] isEqualToString:name])
{
return target;
}
}
return nil;
}
- (void)save
{
[_fileOperationQueue commitFileOperations];
[_dataStore writeToFile:[_filePath stringByAppendingPathComponent:@"project.pbxproj"] atomically:YES];
NSLog(@"Saved project");
}
- (NSMutableDictionary*)objects
{
return [_dataStore objectForKey:@"objects"];
}
- (NSMutableDictionary*)dataStore
{
return _dataStore;
}
- (void)dropCache
{
_targets = nil;
_configurations = nil;
_rootObjectKey = nil;
}
- (NSDictionary*)configurations
{
if (_configurations == nil)
{
NSString* buildConfigurationRootSectionKey =
[[[self objects] objectForKey:[self rootObjectKey]] objectForKey:@"buildConfigurationList"];
NSDictionary* buildConfigurationDictionary = [[self objects] objectForKey:buildConfigurationRootSectionKey];
_configurations =
[[XCProjectBuildConfig buildConfigurationsFromArray:[buildConfigurationDictionary objectForKey:@"buildConfigurations"]
inProject:self] mutableCopy];
_defaultConfigurationName = [[buildConfigurationDictionary objectForKey:@"defaultConfigurationName"] copy];
}
return [_configurations copy];
}
- (XCProjectBuildConfig*)configurationWithName:(NSString*)name
{
return [[self configurations] objectForKey:name];
}
- (XCProjectBuildConfig *)defaultConfiguration
{
return [[self configurations] objectForKey:_defaultConfigurationName];
}
//-------------------------------------------------------------------------------------------
#pragma mark Private
//-------------------------------------------------------------------------------------------
- (NSString*)rootObjectKey
{
if (_rootObjectKey == nil)
{
_rootObjectKey = [[_dataStore objectForKey:@"rootObject"] copy];;
}
return _rootObjectKey;
}
- (NSArray*)projectFilesOfType:(XcodeSourceFileType)projectFileType
{
NSMutableArray* results = [NSMutableArray array];
for (XCSourceFile* file in [self files])
{
if ([file type] == projectFileType)
{
[results addObject:file];
}
}
return results;
}
@end