单军华
2018-05-04 7db6ba57b17fb7c0c364219750b14ee3d5cc351b
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
//
//  MCURLRequest.m
//  MCDownloadManager
//
//  Created by 马超 on 16/9/23.
//  Copyright © 2016年 qikeyun. All rights reserved.
//
 
#import "MCURLRequest.h"
 
@interface MCURLRequest ()
@property (nonatomic, retain) NSOperationQueue *delegateQueue;
 
@end
@implementation MCURLRequest
 
#pragma mark - Initialization
- (instancetype)init {
    self = [super init];
    if (self == nil) {
        return nil;
    }
    self.HTTPMethod = MCHTTPMethodGET;
    self.cacheResponse = NO;
 
    MCURLSessionConfiguration *configuration = [MCURLSessionConfiguration defaultURLSessionConfiguration];
    self.configuration = configuration;
    
    self.delegateQueue = [[NSOperationQueue alloc] init];
 
    return self;
}
 
+ (instancetype)URLRequestWithConfiguration:(MCURLSessionConfiguration *)configuration {
    
    MCURLRequest *request = [self init];
    if (configuration) {
        request.configuration = configuration;
    }
    return request;
}
 
+(instancetype)URLRequestWithConfiguration:(MCURLSessionConfiguration *)configuration delegate:(id<MCURLRequestDelegate>)delegate delegateQueue:(NSOperationQueue *)queue {
    
    MCURLRequest *request = [self init];
    if (configuration) {
        request.configuration = configuration;
    }
    if (queue) {
        request.delegateQueue = queue;
    }
    return request;
}
 
#pragma mark - Public Methods
- (void)fetchDataWithMethod:(MCHTTPMethod)method completionHandler:(void (^)(MCURLResponse * _Nonnull))handler {
    
}
- (void)fetchDataWithMethod:(MCHTTPMethod)method progress:(void (^)(NSProgress * _Nonnull))downloadProgress completionHandler:(void (^)(MCURLResponse * _Nonnull))handler {
    
}
 
- (void)uploadDataWithCompletionHandler:(void (^)(MCURLResponse * _Nonnull))handler {
    
}
- (void)uploadDataWithProgress:(void (^)(NSProgress * _Nonnull))uploadProgress completionHandler:(void (^)(MCURLResponse * _Nonnull))handler {
    
}
@end