Skip to content
HCPUpdateLoader.m 1.79 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
//
//  HCPUpdateLoader.m
//
//  Created by Nikolay Demyankov on 11.08.15.
//

#import "HCPUpdateLoader.h"
#import "HCPUpdateLoaderWorker.h"
#import "HCPUpdateInstaller.h"
#import "NSError+HCPExtension.h"

@interface HCPUpdateLoader() {
    __block BOOL _isExecuting;
}

@end

@implementation HCPUpdateLoader

#pragma mark Public API

+ (HCPUpdateLoader *)sharedInstance {
    static HCPUpdateLoader *sharedInstance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        sharedInstance = [[self alloc] init];
    });
    
    return sharedInstance;
}

- (BOOL)isDownloadInProgress {
    return _isExecuting;
}

- (BOOL)executeDownloadRequest:(HCPUpdateRequest *)request error:(NSError **)error {
    if (_isExecuting) {
        *error = [NSError errorWithCode:kHCPDownloadAlreadyInProgressErrorCode
                            description:@"Download already in progress. Please, wait for it to finish."];
        return NO;
    }
    
    // if installing - don't start the task.
    if ([HCPUpdateInstaller sharedInstance].isInstallationInProgress) {
        *error = [NSError errorWithCode:kHCPCantDownloadUpdateWhileInstallationInProgressErrorCode
                            description:@"Installation is in progress, can't launch the download task. Please, wait for it to finish."];
        return NO;
    }
    
    id<HCPWorker> task = [[HCPUpdateLoaderWorker alloc] initWithRequest:request];
    [self executeTask:task];
    
    return YES;
}

#pragma mark Private API

- (void)executeTask:(id<HCPWorker>)task {
    _isExecuting = YES;
    // execute in background, so the callbacks don't block main thread
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        [task runWithComplitionBlock:^{
            _isExecuting = NO;
        }];
    });
}

@end