-
Notifications
You must be signed in to change notification settings - Fork 4
/
GSThreadPool.m
595 lines (530 loc) · 11.8 KB
/
GSThreadPool.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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
#include <inttypes.h>
#import "GSLinkedList.h"
#import "GSThreadPool.h"
#import <Foundation/NSAutoreleasePool.h>
#import <Foundation/NSDate.h>
#import <Foundation/NSLock.h>
#import <Foundation/NSThread.h>
#import <Foundation/NSString.h>
#import <Foundation/NSException.h>
#if !defined (GNUSTEP)
#import "GNUstep.h"
#endif
@class GSThreadPool;
@interface GSOperation : GSListLink
{
@public
SEL sel;
NSObject *arg;
}
@end
@implementation GSOperation
- (void) dealloc
{
[arg release];
[super dealloc];
}
@end
@interface GSThreadLink : GSListLink
{
@public
GSThreadPool *pool; // Not retained
NSConditionLock *lock;
GSOperation *op;
}
@end
@implementation GSThreadLink
- (void) dealloc
{
[lock release];
[super dealloc];
}
- (id) init
{
if ((self = [super init]) != nil)
{
lock = [[NSConditionLock alloc] initWithCondition: 0];
}
return self;
}
@end
@interface GSThreadPool (Internal)
- (void) _any;
- (void) _dead: (GSThreadLink*)link;
- (BOOL) _idle: (GSThreadLink*)link;
- (BOOL) _more: (GSThreadLink*)link;
- (void) _run: (GSThreadLink*)link;
@end
@implementation GSThreadPool
static GSThreadPool *shared = nil;
+ (void) initialize
{
if ([GSThreadPool class] == self && nil == shared)
{
shared = [self new];
}
}
+ (GSThreadPool*) sharedPool
{
return shared;
}
- (void) dealloc
{
GSThreadLink *link;
if (self == shared)
{
[self retain];
[NSException raise: NSInternalInconsistencyException
format: @"[GSThreadPool-dealloc] attempt to deallocate shared pool"];
}
[poolLock lock];
[operations release];
operations = nil;
[unused release];
unused = nil;
if (nil != idle)
{
while (nil != (link = (GSThreadLink*)idle->head))
{
GSLinkedListRemove(link, idle);
[link->lock lock];
[link->lock unlockWithCondition: 1];
}
[idle release];
idle = nil;
}
if (nil != live)
{
while (nil != (link = (GSThreadLink*)live->head))
{
GSLinkedListRemove(link, live);
link->pool = nil;
}
[live release];
live = nil;
}
[poolName release];
[poolLock unlock];
[poolLock release];
[super dealloc];
}
- (NSString*) description
{
NSString *result = [self info];
[poolLock lock];
result = [NSString stringWithFormat: @"%@ %@ %@",
[super description], poolName, result];
[poolLock unlock];
return result;
}
- (BOOL) drain: (NSDate*)before
{
BOOL result = ([self isEmpty] && [self isIdle]) ? YES : NO;
while (NO == result && [before timeIntervalSinceNow] > 0.0)
{
#if !defined (GNUSTEP) && (MAC_OS_X_VERSION_MAX_ALLOWED<=MAC_OS_X_VERSION_10_4)
NSDate *when;
when = [[NSDate alloc] initWithTimeIntervalSinceNow: 0.1];
[NSThread sleepUntilDate: when];
[when release];
#else
[NSThread sleepForTimeInterval: 0.1];
#endif
result = ([self isEmpty] && [self isIdle]) ? YES : NO;
}
return result;
}
- (NSUInteger) flush
{
NSUInteger counter;
[poolLock lock];
counter = operations->count;
[operations empty];
[poolLock unlock];
return counter;
}
- (id) init
{
if ((self = [super init]) != nil)
{
poolLock = [NSRecursiveLock new];
poolName = @"GSThreadPool";
idle = [GSLinkedList new];
live = [GSLinkedList new];
operations = [GSLinkedList new];
unused = [GSLinkedList new];
[self setOperations: 100];
[self setThreads: 2];
}
return self;
}
- (NSString*) info
{
NSString *result;
[poolLock lock];
result = [NSString stringWithFormat:
@"queue: %"PRIuPTR"(%"PRIuPTR")"
@" threads: %"PRIuPTR"(%"PRIuPTR")"
@" active: %"PRIuPTR" processed: %"PRIuPTR""
@" suspended: %s",
operations->count, maxOperations,
idle->count + live->count, maxThreads, live->count, processed,
(suspended ? "yes" : "no")];
[poolLock unlock];
return result;
}
- (BOOL) isEmpty
{
return (0 == operations->count) ? YES : NO;
}
- (BOOL) isIdle
{
return (0 == live->count) ? YES : NO;
}
- (BOOL) isSuspended
{
return suspended;
}
- (NSUInteger) maxOperations
{
return maxOperations;
}
- (NSUInteger) maxThreads
{
return maxThreads;
}
- (NSString*) poolName
{
NSString *n;
[poolLock lock];
n = RETAIN(poolName);
[poolLock unlock];
return AUTORELEASE(n);
}
- (void) resume
{
[poolLock lock];
if (YES == suspended)
{
suspended = NO;
/* No longer suspended ... start as many operations as we have idle
* threads available for.
*/
[self _any];
}
[poolLock unlock];
}
- (void) scheduleSelector: (SEL)aSelector
onReceiver: (NSObject*)aReceiver
withObject: (NSObject*)anArgument
{
if (0 == aSelector)
{
[NSException raise: NSInvalidArgumentException
format: @"Null selector"];
}
if (nil == aReceiver)
{
[NSException raise: NSInvalidArgumentException
format: @"Nil receiver"];
}
[poolLock lock];
if (operations->count < maxOperations && maxThreads > 0)
{
GSOperation *op = (GSOperation*)unused->head;
if (nil == op)
{
op = [GSOperation new]; // Need a new one
}
else
{
GSLinkedListRemove(op, unused); // Re-use an old one
}
[op setItem: aReceiver];
op->sel = aSelector;
op->arg = [anArgument retain];
GSLinkedListInsertAfter(op, operations, operations->tail);
[self _any];
[poolLock unlock];
}
else
{
NSAutoreleasePool *arp;
[poolLock unlock];
NS_DURING
{
arp = [NSAutoreleasePool new];
[aReceiver performSelector: aSelector withObject: anArgument];
[arp release];
}
NS_HANDLER
{
arp = [NSAutoreleasePool new];
NSLog(@"[%@-%@] %@",
NSStringFromClass([aReceiver class]),
NSStringFromSelector(aSelector),
localException);
[arp release];
}
NS_ENDHANDLER
}
}
- (void) setOperations: (NSUInteger)max
{
maxOperations = max;
}
- (void) setPoolName: (NSString*)aName
{
NSString *s = nil;
if (aName)
{
s = AUTORELEASE([aName copy]);
NSAssert([s isKindOfClass: [NSString class]], NSInvalidArgumentException);
}
[poolLock lock];
ASSIGN(poolName, s);
[poolLock unlock];
}
- (void) setThreads: (NSUInteger)max
{
[poolLock lock];
if (max != maxThreads)
{
maxThreads = max;
if (0 == maxThreads)
{
[poolLock unlock];
if (NO == [self drain: [NSDate dateWithTimeIntervalSinceNow: 30.0]])
{
[self flush];
}
[poolLock lock];
}
while (maxThreads < idle->count + live->count && idle->count > 0)
{
GSThreadLink *link = (GSThreadLink*)idle->head;
/* Remove thread link from the idle list, then start up the
* thread using the condition lock ... the thread will see
* that it has no operation to work with and will terminate
* itsself and release the link.
*/
GSLinkedListRemove(link, idle);
[link->lock lock];
[link->lock unlockWithCondition: 1];
}
[self _any];
}
[poolLock unlock];
}
- (void) suspend
{
[poolLock lock];
suspended = YES;
[poolLock unlock];
}
@end
@implementation GSThreadPool (Internal)
/* This method expects the global lock to already be held.
*/
- (void) _any
{
if (NO == suspended)
{
GSOperation *op;
while (nil != (op = (GSOperation*)operations->head))
{
GSThreadLink *link = (GSThreadLink*)idle->head;
if (nil == link)
{
if (maxThreads > idle->count + live->count)
{
NSThread *thread;
NSString *name;
/* Create a new link, add it to the idle list, and start the
* thread which will work with it.
*/
link = [GSThreadLink new];
link->pool = self;
GSLinkedListInsertAfter(link, idle, idle->tail);
#if !defined (GNUSTEP) && (MAC_OS_X_VERSION_MAX_ALLOWED<=MAC_OS_X_VERSION_10_4)
/* With the old thread API we can't get an NSThread object
* until after the thread has started ... so we start the
* thread and then wait for the new thread to have set the
* link item up properly.
*/
[NSThread detachNewThreadSelector: @selector(_run:)
toTarget: self
withObject: link];
while (nil == link->item)
{
NSDate *when;
when = [[NSDate alloc]
initWithTimeIntervalSinceNow: 0.001];
[NSThread sleepUntilDate: when];
[when release];
}
#else
/* New thread API ... create thread object, set it in the
* link, then start the thread.
*/
thread = [[NSThread alloc] initWithTarget: self
selector: @selector(_run:)
object: link];
if (nil == (name = poolName))
{
name = @"GSThreadPool";
}
name = [NSString stringWithFormat: @"%@-%u",
name, ++created];
[thread setName: name];
[link setItem: thread];
[thread start];
[thread release]; // Retained by link
#endif
}
else
{
break; // No idle thread to perform operation
}
}
GSLinkedListRemove(op, operations);
GSLinkedListRemove(link, idle);
GSLinkedListInsertAfter(link, live, live->tail);
link->op = op;
[link->lock lock];
[link->lock unlockWithCondition: 1];
}
}
}
- (void) _dead: (GSThreadLink*)link
{
[poolLock lock];
if (link->owner != nil)
{
GSLinkedListRemove(link, link->owner);
}
[poolLock unlock];
}
/* Make the thread link idle ... returns YES on success, NO if the thread
* should actually terminate instead.
*/
- (BOOL) _idle: (GSThreadLink*)link
{
BOOL madeIdle = YES;
[poolLock lock];
if (link->owner != nil)
{
GSLinkedListRemove(link, link->owner);
}
if (idle->count + live->count > maxThreads)
{
madeIdle = NO; // Made dead instead
}
else
{
GSLinkedListInsertAfter(link, idle, idle->tail);
}
[poolLock unlock];
return madeIdle;
}
/* If there are more operations waiting for work, move the first one from the
* operations queue into the supplied thread link.<br />
* In any case, remove the old operation.
*/
- (BOOL) _more: (GSThreadLink*)link
{
GSOperation *op = link->op;
BOOL more = NO;
[poolLock lock];
processed++;
if (unused->count < maxOperations)
{
if (nil != op->arg)
{
[op->arg release];
op->arg = nil;
}
[op setItem: nil];
GSLinkedListInsertAfter(op, unused, unused->tail);
}
else
{
[op release];
}
link->op = (GSOperation*)operations->head;
if (nil != link->op)
{
GSLinkedListRemove(link->op, operations);
more = YES;
}
[poolLock unlock];
return more;
}
- (void) _run: (GSThreadLink*)link
{
NSAutoreleasePool *arp;
#if !defined (GNUSTEP) && (MAC_OS_X_VERSION_MAX_ALLOWED<=MAC_OS_X_VERSION_10_4)
/* With the older thread API we must set up the link item *after* the
* thread starts. With the new API this is not needed as we can set
* things up and then start the thread.
*/
[link setItem: [NSThread currentThread]];
#endif
for (;;)
{
GSOperation *op;
[link->lock lockWhenCondition: 1];
//NSLog(@"locked");
op = link->op;
if (nil == op)
{
//NSLog(@"nil op");
break;
}
else
{
[link->lock unlockWithCondition: 0];
//NSLog(@"unlock");
while (nil != op)
{
NS_DURING
{
arp = [NSAutoreleasePool new];
[op->item performSelector: op->sel withObject: op->arg];
[arp release];
}
NS_HANDLER
{
arp = [NSAutoreleasePool new];
NSLog(@"[%@-%@] %@",
NSStringFromClass([op->item class]),
NSStringFromSelector(op->sel),
localException);
[arp release];
}
NS_ENDHANDLER
if (NO == [link->pool _more: link])
{
//NSLog(@"no more");
op = nil;
}
else
{
//NSLog(@"more");
op = link->op;
}
}
if (NO == [link->pool _idle: link]) // Make this idle
{
//NSLog(@"no idle");
break; // Thread should exit rather than be idle
}
}
}
arp = [NSAutoreleasePool new];
[link->pool _dead: link];
NSLog(@"Thread for %@ terminated.", self);
[arp release];
[NSThread exit]; // Will release 'link'
}
@end