-
Notifications
You must be signed in to change notification settings - Fork 13
/
ThreadedTask.m
397 lines (324 loc) · 10 KB
/
ThreadedTask.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
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
//
// ThreadedTask 0.3
// Perform a long task without blocking the main thread.
//
// Copyright (c) 2004-2005, Charles McGarvey
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list
// of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this
// list of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
// SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
#import "ThreadedTask.h"
#import <objc/objc-runtime.h>
@interface ThreadedTask ( PrivateAPI )
/* private initialization: designated initializer */
- (id)_initWithContext:(id)context delegate:(id)delegate;
/* task method */
- (void)_runTask:(NSArray *)package;
/* sent to the main thread to report task progress */
- (void)_taskReportProgress:(NSNumber *)progress;
/* sent to the main thread to report a cancellation */
- (void)_taskDidCancel:(id)dummy;
/* sent to the main thread to report a completion */
- (void)_taskDidFinish:(id)dummy;
/* sent to the main thread to report a failure */
- (void)_taskDidFailWithErrorCode:(NSNumber *)errorCode;
@end
@implementation ThreadedTask
// #############################################################################
#pragma mark Initialization
// #############################################################################
- (id)init
{
return [self initWithTarget:nil selector:nil context:nil delegate:nil];
}
- (id)_initWithContext:(id)context delegate:(id)delegate // DESIGNATED
{
if ( self = [super init] ) {
[self setContext:context];
[self setDelegate:delegate];
// create objects
_taskLock = [[NSLock alloc] init];
}
return self;
}
- (id)initWithTarget:(id)target selector:(SEL)selector delegate:(id)delegate
{
return [self initWithTarget:target selector:selector context:nil delegate:delegate];
}
- (id)initWithTarget:(id)target selector:(SEL)selector context:(id)context delegate:(id)delegate
{
if ( self = [self _initWithContext:context delegate:delegate] ) {
// set initial values
[self setTarget:target selector:selector];
}
return self;
}
- (id)initWithFunction:(int (*)(ThreadedTask *, unsigned))function delegate:(id)delegate
{
return [self initWithFunction:function context:nil delegate:delegate];
}
- (id)initWithFunction:(int (*)(ThreadedTask *, unsigned))function context:(id)context delegate:(id)delegate
{
if ( self = [self _initWithContext:context delegate:delegate] ) {
// set initial values
[self setFunction:function];
}
return self;
}
- (void)dealloc
{
// cancel any running task
[self cancel];
[_taskLock release];
// release retained objects
[_context release];
[_modes release];
[super dealloc];
}
// #############################################################################
#pragma mark Accessor Methods
// #############################################################################
- (id)target
{
return _target;
}
- (SEL)selector
{
return _selector;
}
- (void)setTarget:(id)target selector:(SEL)selector
{
// don't do anything if the task is running
if ( [self isRunning] ) {
return;
}
if ( [target respondsToSelector:selector] ) {
// target & selector look good, save them
_target = target;
_selector = selector;
_function = NULL;
}
else {
// bad target and/or selector, use nil
_target = nil;
_selector = NULL;
}
}
- (int (*)(id, unsigned))function
{
return _function;
}
- (void)setFunction:(int (*)(id, unsigned))function
{
// don't do anything if the task is running
if ( [self isRunning] ) {
return;
}
_function = function;
if ( _function ) {
_target = nil;
_selector = NULL;
}
}
- (id)context
{
return _context;
}
- (void)setContext:(id)context
{
// don't do anything if the task is running
if ( [self isRunning] ) {
return;
}
[context retain];
[_context release];
_context = context;
}
- (id)delegate
{
return _delegate;
}
- (void)setDelegate:(id)delegate
{
_delegate = delegate;
}
- (void)setDelegateRunLoop:(NSRunLoop *)runloop modes:(NSArray *)modes
{
_runloop = runloop;
[modes retain];
[_modes release];
_modes = modes;
}
- (BOOL)isRunning
{
return _isTaskThreadRunning;
}
// #############################################################################
#pragma mark Control Methods
// #############################################################################
- (BOOL)run
{
// don't run if there is no iteration method/function to call
if ( [self isRunning] || (!_target && !_function) ) {
return NO;
}
// set initial values
_doCancelTask = NO;
if ( !_runloop ) {
// use the default runloop
NSRunLoop *current = [NSRunLoop currentRunLoop];
if ( !_modes ) {
NSString *currentMode = [current currentMode];
NSArray *modes = currentMode? [NSArray arrayWithObject:currentMode]
: [NSArray arrayWithObjects:NSDefaultRunLoopMode,NSModalPanelRunLoopMode,NSEventTrackingRunLoopMode,NSConnectionReplyMode,nil];
[self setDelegateRunLoop:current modes:modes];
}
else {
[self setDelegateRunLoop:current modes:_modes];
}
}
// start the task thread!
_isTaskThreadRunning = YES;
[NSThread detachNewThreadSelector:@selector(_runTask:) toTarget:self withObject:nil];
return YES;
}
- (void)cancel
{
if ( [self isRunning] ) {
_doCancelTask = YES;
// this blocks until the task thread exits.
[_taskLock lock];
[_taskLock unlock];
}
}
- (void)cancelWithoutWaiting
{
_doCancelTask = YES;
}
- (void)cancelAndRemoveDelegate
{
[self setDelegate:nil];
[self cancelWithoutWaiting];
}
// #############################################################################
#pragma mark Task Methods
// #############################################################################
- (void)reportProgress:(int)progress
{
//[_runloop performSelector:@selector(_taskReportProgress:) target:self
// argument:[[NSNumber alloc] initWithInt:progress] order:0 modes:_modes];
[self performSelectorOnMainThread:@selector(_taskReportProgress:)
withObject:[[NSNumber alloc] initWithInt:progress] waitUntilDone:NO];
}
// #############################################################################
#pragma mark Private Methods
// #############################################################################
- (void)_runTask:(NSArray *)package
{
NSAutoreleasePool *pool;
unsigned iteration;
#if MAC_OS_X_VERSION_10_5 <= MAC_OS_X_VERSION_MAX_ALLOWED
NSInteger returnCode;
#else
int returnCode;
#endif
// create the ever-so-important pool
pool = [[NSAutoreleasePool alloc] init];
// set the lock the tells the main thread the task thread is running
[_taskLock lock];
// set first iteration
iteration = 0;
returnCode = 1;
// enter the task loop
if ( _target ) {
while ( !_doCancelTask && returnCode == 1 ) {
NSAutoreleasePool *loopPool;
// do the actual work
loopPool = [[NSAutoreleasePool alloc] init];
#if MAC_OS_X_VERSION_10_5 <= MAC_OS_X_VERSION_MAX_ALLOWED
returnCode = (NSInteger)objc_msgSend( _target, _selector, self, iteration );
#else
returnCode = (int)objc_msgSend( _target, _selector, self, iteration );
#endif
[loopPool release];
iteration++;
}
}
else if ( _function ) {
while ( !_doCancelTask && returnCode == 1 ) {
NSAutoreleasePool *loopPool;
// do the actual work
loopPool = [[NSAutoreleasePool alloc] init];
returnCode = (int)_function( self, iteration );
[loopPool release];
iteration++;
}
}
if ( _doCancelTask ) {
// report cancel
//[_runloop performSelector:@selector(_taskDidCancel:) target:self argument:nil order:iteration modes:_modes];
[self performSelectorOnMainThread:@selector(_taskDidCancel:) withObject:nil waitUntilDone:NO];
}
else if ( returnCode == 0 ) {
// report task completed
//[_runloop performSelector:@selector(_taskDidFinish:) target:self argument:nil order:iteration modes:_modes];
[self performSelectorOnMainThread:@selector(_taskDidFinish:) withObject:nil waitUntilDone:NO];
}
else {
// report error
[_runloop performSelector:@selector(_taskDidFailWithErrorCode:) target:self
argument:[[NSNumber alloc] initWithInt:returnCode] order:iteration modes:_modes];
//[self performSelectorOnMainThread:@selector(_taskDidFailWithErrorCode:)
// withObject:[[NSNumber alloc] initWithInt:returnCode] waitUntilDone:NO];
}
// allow the main thread to continue if it was blocking
_isTaskThreadRunning = NO;
[_taskLock unlock];
[pool release];
}
- (void)_taskReportProgress:(NSNumber *)progress
{
if ( [_delegate respondsToSelector:@selector(threadedTask:reportedProgress:)] ) {
[_delegate threadedTask:self reportedProgress:[progress intValue]];
}
[progress release];
}
- (void)_taskDidCancel:(id)dummy
{
if ( [_delegate respondsToSelector:@selector(threadedTaskCancelled:)] ) {
[_delegate threadedTaskCancelled:self];
}
}
- (void)_taskDidFinish:(id)dummy
{
if ( [_delegate respondsToSelector:@selector(threadedTaskFinished:)] ) {
[_delegate threadedTaskFinished:self];
}
}
- (void)_taskDidFailWithErrorCode:(NSNumber *)errorCode
{
if ( [_delegate respondsToSelector:@selector(threadedTask:failedWithErrorCode:)] ) {
[_delegate threadedTask:self failedWithErrorCode:[errorCode intValue]];
}
[errorCode release];
}
@end