59 lines
2.6 KiB
Objective-C
59 lines
2.6 KiB
Objective-C
//
|
||
// NWURLConnectionOperation.h
|
||
// ALINetworkSDK
|
||
//
|
||
// Created by Roger.Mu on 5/11/15.
|
||
// Copyright (c) 2015 Taobao.com. All rights reserved.
|
||
//
|
||
|
||
typedef NS_ENUM(NSInteger, AFOperationState) {
|
||
TBSDKOperationPausedState = -1,
|
||
TBSDKOperationReadyState = 1,
|
||
TBSDKOperationExecutingState = 2,
|
||
TBSDKOperationFinishedState = 3,
|
||
};
|
||
|
||
typedef NSURLRequest *(^TBSDKURLConnectionOperationRedirectResponseBlock)(NSURLConnection *connection, NSURLRequest *request, NSURLResponse *redirectResponse);
|
||
|
||
@interface TBSDKURLConnectionOperation : NSOperation <NSURLConnectionDelegate, NSURLConnectionDataDelegate, NSCopying>
|
||
|
||
// properties
|
||
@property (readonly, nonatomic, strong) NSURLRequest *request;
|
||
@property (readonly, nonatomic, strong) NSURLResponse *response;
|
||
@property (readonly, nonatomic, strong) NSData *responseData;
|
||
@property (nonatomic, copy) NSString *responseString;
|
||
@property (nonatomic, strong) NSError *error;
|
||
@property (nonatomic, assign) NSStringEncoding responseStringEncoding;
|
||
@property (readwrite, nonatomic, assign) long long totalBytesRead;
|
||
@property (nonatomic, strong) NSURLConnection *connection;
|
||
@property (nonatomic, strong) NSRecursiveLock *lock;
|
||
@property (nonatomic, strong) NSOutputStream *outputStream;
|
||
|
||
@property (nonatomic, strong) NSSet *runLoopModes;
|
||
@property (nonatomic, assign) AFOperationState state;
|
||
|
||
// block methods poperty
|
||
@property (readwrite, nonatomic, copy) TBSDKURLConnectionOperationRedirectResponseBlock redirectResponse;
|
||
|
||
// upload and download process
|
||
@property (readwrite, nonatomic, copy) void (^uploadProgress)(NSUInteger bytes, long long totalBytes, long long totalBytesExpected);
|
||
@property (readwrite, nonatomic, copy) void (^downloadProgress)(NSUInteger bytes, long long totalBytes, long long totalBytesExpected);
|
||
|
||
// methods
|
||
-(instancetype) initWithRequest: (NSURLRequest *) urlRequest;
|
||
|
||
// block methods
|
||
- (void)setUploadProgressBlock:(void (^)(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite))block;
|
||
- (void)setDownloadProgressBlock:(void (^)(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead))block;
|
||
- (void)setRedirectResponseBlock:(NSURLRequest * (^)(NSURLConnection *connection, NSURLRequest *request, NSURLResponse *redirectResponse))block;
|
||
|
||
//由于NSURLProtocol有限制,didReceiveResponse方法在内部第二次重试的时候不会收到,因此这里手动通知
|
||
- (void)connection:(NSURLConnection __unused *)connection didReceiveResponseWhenEncounterError:(NSURLResponse *)response;
|
||
|
||
@end
|
||
|
||
@interface TBSDKRequestDelegate : NSObject
|
||
|
||
@property (nonatomic, weak) TBSDKURLConnectionOperation *weakConnection;
|
||
|
||
@end |