93 lines
2.1 KiB
Objective-C
93 lines
2.1 KiB
Objective-C
/*
|
|
* This file is part of the SDWebImage package.
|
|
* (c) Olivier Poitrey <rs@dailymotion.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
#import "SDAsyncBlockOperation.h"
|
|
|
|
@interface SDAsyncBlockOperation ()
|
|
|
|
@property (assign, nonatomic, getter = isExecuting) BOOL executing;
|
|
@property (assign, nonatomic, getter = isFinished) BOOL finished;
|
|
@property (nonatomic, copy, nonnull) SDAsyncBlock executionBlock;
|
|
|
|
@end
|
|
|
|
@implementation SDAsyncBlockOperation
|
|
|
|
@synthesize executing = _executing;
|
|
@synthesize finished = _finished;
|
|
|
|
- (nonnull instancetype)initWithBlock:(nonnull SDAsyncBlock)block {
|
|
self = [super init];
|
|
if (self) {
|
|
self.executionBlock = block;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
+ (nonnull instancetype)blockOperationWithBlock:(nonnull SDAsyncBlock)block {
|
|
SDAsyncBlockOperation *operation = [[SDAsyncBlockOperation alloc] initWithBlock:block];
|
|
return operation;
|
|
}
|
|
|
|
- (void)start {
|
|
@synchronized (self) {
|
|
if (self.isCancelled) {
|
|
self.finished = YES;
|
|
return;
|
|
}
|
|
|
|
self.finished = NO;
|
|
self.executing = YES;
|
|
|
|
if (self.executionBlock) {
|
|
self.executionBlock(self);
|
|
} else {
|
|
self.executing = NO;
|
|
self.finished = YES;
|
|
}
|
|
}
|
|
}
|
|
|
|
- (void)cancel {
|
|
@synchronized (self) {
|
|
[super cancel];
|
|
if (self.isExecuting) {
|
|
self.executing = NO;
|
|
self.finished = YES;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- (void)complete {
|
|
@synchronized (self) {
|
|
if (self.isExecuting) {
|
|
self.finished = YES;
|
|
self.executing = NO;
|
|
}
|
|
}
|
|
}
|
|
|
|
- (void)setFinished:(BOOL)finished {
|
|
[self willChangeValueForKey:@"isFinished"];
|
|
_finished = finished;
|
|
[self didChangeValueForKey:@"isFinished"];
|
|
}
|
|
|
|
- (void)setExecuting:(BOOL)executing {
|
|
[self willChangeValueForKey:@"isExecuting"];
|
|
_executing = executing;
|
|
[self didChangeValueForKey:@"isExecuting"];
|
|
}
|
|
|
|
- (BOOL)isConcurrent {
|
|
return YES;
|
|
}
|
|
|
|
@end
|