-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathPBXSourcesBuildPhase.m
More file actions
247 lines (202 loc) · 6.64 KB
/
PBXSourcesBuildPhase.m
File metadata and controls
247 lines (202 loc) · 6.64 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
/*
Copyright (C) 2018, 2019, 2020, 2021 Free Software Foundation, Inc.
Written by: Gregory John Casamento <greg.casamento@gmail.com>
Date: 2022
This file is part of the GNUstep XCode Library
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110 USA.
*/
#import <Foundation/NSOperation.h>
#import "PBXCommon.h"
#import "PBXSourcesBuildPhase.h"
#import "PBXFileReference.h"
#import "PBXBuildFile.h"
#import "GSXCBuildOperation.h"
#import "GSXCBuildDatabase.h"
@implementation PBXSourcesBuildPhase
- (instancetype) init
{
if ((self = [super init]) != nil)
{
_cpus = [[NSProcessInfo processInfo] processorCount];
_queue = [[NSOperationQueue alloc] init];
[_queue setMaxConcurrentOperationCount: _cpus];
}
return self;
}
- (void) dealloc
{
RELEASE(_queue);
[super dealloc];
}
- (BOOL) build
{
GSXCBuildContext *ctx = [GSXCBuildContext sharedBuildContext];
NSDictionary *config = [ctx config];
GSXCBuildDatabase *db = [_target database];
NSArray *files = _files;
id file = nil;
BOOL result = YES;
NSUInteger i = 1;
NSMutableArray *ops = [NSMutableArray array];
NSEnumerator *en = nil;
NSString *buildType = [config objectForKey: @"buildType"];
NSDebugLog(@"config = %@", config);
if ([buildType isEqualToString: @"linear"] == YES || buildType == nil) // linear is the default
{
[_queue setMaxConcurrentOperationCount: 1];
}
else if ([buildType isEqualToString: @"parallel"] == YES)
{
NSString *mct = [config objectForKey: @"maxConcurrentOperationCount"];
if (mct != nil)
{
NSUInteger t = [mct intValue];
if (t > 0)
{
_cpus = t;
[_queue setMaxConcurrentOperationCount: _cpus];
}
}
xcprintf("\t* Parallel build using %ld CPUs...\n", _cpus);
}
xcputs("=== Executing Sources Build Phase");
// Use the new allFiles method which includes files from groups
NSArray *allFiles = [self allFiles];
// Check if we should use the database instead
BOOL usingSynchronizedGroups = NO;
NSArray *synchronizedFiles = [_target synchronizedSources];
if ([synchronizedFiles count] > 0)
{
usingSynchronizedGroups = YES;
xcputs([[NSString stringWithFormat: @"%s+++ Using synchronized group...%s", YELLOW, RESET] cString]);
}
// if the database is present use it's list of files...
if (db != nil && !usingSynchronizedGroups)
{
if ([db isEmpty])
{
xcputs("\t++++ No files modified, nothing to build. ++++\n");
return YES;
}
files = [db files];
}
else
{
// Use all files from groups and regular files
files = allFiles;
}
en = [files objectEnumerator];
while((file = [en nextObject]) != nil && result)
{
NSAutoreleasePool *p = [[NSAutoreleasePool alloc] init];
GSXCBuildOperation *op = [GSXCBuildOperation operationWithFile: file];
[file setTarget: _target];
[file setTotalFiles: [files count]];
[file setCurrentFile: i];
[ops addObject: op];
i++;
RELEASE(p);
}
// Handle the error...
NS_DURING
{
[_queue addOperations: ops waitUntilFinished: YES];
}
NS_HANDLER
{
[_queue cancelAllOperations];
NSLog(@"Compilation halted.");
}
NS_ENDHANDLER;
xcputs("=== Sources Build Phase Completed");
// if (db != nil)
{
[self link]; // generate the rest of the output file entries
}
return result;
}
- (BOOL) generate
{
xcputs("=== Generating using Sources Build Phase");
// Use the new allFiles method to include files from groups
NSArray *allFiles = [self allFiles];
NSEnumerator *en = [allFiles objectEnumerator];
id file = nil;
BOOL result = YES;
while((file = [en nextObject]) != nil && result)
{
[file setTarget: _target];
result = [file generate];
}
xcputs("=== Sources Build Phase generation completed");
return result;
}
// Override filesFromGroups to only return source files for PBXSourcesBuildPhase
- (NSArray *) filesFromGroups
{
NSMutableArray *result = [NSMutableArray array];
if (_target != nil)
{
// Only get source files for the sources build phase
NSArray *synchronizedSources = [_target synchronizedSources];
if (synchronizedSources != nil)
{
[result addObjectsFromArray: synchronizedSources];
}
}
return result;
}
- (BOOL) link
{
GSXCBuildDatabase *db = [_target database];
GSXCBuildContext *context = [GSXCBuildContext sharedBuildContext];
NSString *of = (db != nil) ? nil : [context objectForKey: @"OUTPUT_FILES"];
NSString *outputFiles = (of == nil) ? @"" : of;
PBXBuildFile *file = nil;
BOOL result = YES;
NSString *buildDir = @"./build";
NSEnumerator *en = nil; // [_files objectEnumerator];
NSFileManager *mgr = [NSFileManager defaultManager];
buildDir = [buildDir stringByAppendingPathComponent: [_target name]];
// Use the new allFiles method to include files from groups
NSArray *allFiles = [self allFiles];
en = [allFiles objectEnumerator];
xcputs("=== Executing Sources Build Phase (LINK)");
while((file = [en nextObject]) != nil && result)
{
PBXFileReference *fr = [file fileRef];
NSString *fileName = [[fr path] lastPathComponent];
NSString *outputPath = [buildDir stringByAppendingPathComponent:
[fileName stringByAppendingString: @".o"]];
outputFiles = [[outputFiles stringByAppendingString: [NSString stringWithFormat: @"'%@'",outputPath]]
stringByAppendingString: @" "];
// NSLog(@"name = %@", [fr path]);
xcprintf("\t+ Collecting %s%s%s%s ... ", BOLD, MAGENTA, [outputPath cString], RESET);
if ([mgr fileExistsAtPath: outputPath] == YES)
{
xcprintf("%s%sfound%s\n", BOLD, GREEN, RESET);
}
else
{
xcprintf("%s%smissing%s\n", BOLD, RED, RESET);
result = NO;
break;
}
}
[context setObject: outputFiles forKey: @"OUTPUT_FILES"];
// NSLog(@"Output files %@", outputFiles);
xcputs("=== Sources Build Phase Completed (LINK)");
return result;
}
@end