網(wǎng)絡(luò)層作為App
架構(gòu)中至關(guān)重要的中間件之一,承擔(dān)著業(yè)務(wù)封裝和核心層網(wǎng)絡(luò)請求交互的職責(zé)耸成。討論請求中間件實(shí)現(xiàn)方案的意義在于中間件要如何設(shè)計(jì)以便減少對業(yè)務(wù)對接的影響;明晰請求流程中的職責(zé)以便寫出更合理的代碼等坛缕。因此在講如何去設(shè)計(jì)請求中間件時墓猎,主要考慮三個問題:
- 業(yè)務(wù)以什么方式發(fā)起請求
- 請求數(shù)據(jù)如何交付業(yè)務(wù)層
- 如何實(shí)現(xiàn)通用的請求接口
以什么方式發(fā)起請求
根據(jù)暴露給業(yè)務(wù)層請求API
的不同,可以分為集約式請求
和離散型請求
兩類赚楚。集約式請求
對外只提供一個類用于接收包括請求地址、請求參數(shù)在內(nèi)的數(shù)據(jù)信息骗卜,以及回調(diào)處理(通常使用block
)宠页。而離散型請求
對外提供通用的擴(kuò)展接口完成請求
集約式請求
考慮到AFNetworking
基本成為了iOS
的請求標(biāo)準(zhǔn),以傳統(tǒng)的集約式請求代碼為例:
/// 請求地址和參數(shù)組裝
NSString *domain = [SLNetworkEnvironment currentDomain];
NSString *url = [domain stringByAppendingPathComponent: @"getInterviewers"];
NSDictionary *params = @{
@"page": @1,
@"pageCount": @20,
@"filterRule": @"work-years >= 3"
};
/// 構(gòu)建新的請求對象發(fā)起請求
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
[manager POST: url parameters: params success: ^(NSURLSessionDataTask *task, id responseObject) {
/// 請求成功處理
if ([responseObject isKindOfClass: [NSArray class]]) {
NSArray *result = [responseObject bk_map: ^id(id obj) {
return [[SLResponse alloc] initWithJSON: obj];
}];
[self reloadDataWithResponses: result];
} else {
SLLog(@"Invalid response object: %@", responseObject);
}
} failure: ^(NSURLSessionDataTask *task, NSError *error) {
/// 請求失敗處理
SLLog(@"Error: %@ in requesting %@", error, task.currentRequest.URL);
}];
/// 取消存在的請求
[self.currentRequestManager invalidateSessionCancelingTasks: YES];
self.currentRequestManager = manager;
這樣的請求代碼存在這些問題:
- 請求環(huán)境配置寇仓、參數(shù)構(gòu)建举户、請求任務(wù)控制等業(yè)務(wù)無關(guān)代碼
- 請求邏輯和回調(diào)邏輯在同一處違背了單一原則
-
block
回調(diào)潛在的引用問題
在業(yè)務(wù)封裝的層面上,應(yīng)該只關(guān)心何時發(fā)起請求
和展示請求結(jié)果
遍烦。設(shè)計(jì)上俭嘁,請求中間件應(yīng)當(dāng)只暴露必要的參數(shù)property
,隱藏請求過程和返回數(shù)據(jù)的處理
離散型請求
和集約式請求不同服猪,對于每一個請求API
都會有一個manager
來管理供填。在使用manager
的時候只需要創(chuàng)建實(shí)例,執(zhí)行一個類似load
的方法罢猪,manager
會自動控制請求的發(fā)起和處理:
- (void)viewDidLoad {
[super viewDidLoad];
self.getInterviewerApiManager = [SLGetInterviewerApiManager new];
[self.getInterviewerApiManager addDelegate: self];
[self.getInterviewerApiManager refreshData];
}
集約式請求和離散型請求最終的實(shí)現(xiàn)方案并不是互斥的近她,從底層請求的具體行為來看,最終都有統(tǒng)一執(zhí)行的步驟:域名拼湊
膳帕、請求發(fā)起
粘捎、結(jié)果處理
等。因此從設(shè)計(jì)上來說,使用基類來統(tǒng)一這些行為攒磨,再通過派生生成針對不同請求API
的子類泳桦,以便獲得具體請求的靈活性:
@protocol SLBaseApiManagerDelegate
- (void)managerWillLoadData: (SLBaseApiManager *)manager;
- (void)managerDidLoadData: (SLBaseApiManager *)manager;
@end
@interface SLBaseApiManager : NSObject
@property (nonatomic, readonly) NSArray<id<SLBaseApiManagerDelegate>) *delegates;
- (void)loadWithParams: (NSDictionary *)params;
- (void)addDelegate: (id<SLBaseApiManagerDelegate>)delegate;
- (void)removeDelegate: (id<SLBaseApiManagerDelegate>)delegate;
@end
@interface SLBaseListApiManager : SLBaseApiManager
@property (nonatomic, readonly, assign) BOOL hasMore;
@property (nonatomic, readonly, copy) NSArray *dataList;
- (void)refreshData;
- (void)loadMoreData;
@end
離散型請求的一個特點(diǎn)是,將相同的請求邏輯抽離出來娩缰,統(tǒng)一行為接口灸撰。除了請求行為之外的行為,包括請求數(shù)據(jù)解析漆羔、重試控制梧奢、請求是否互斥等行為,每一個請求API
都有單獨(dú)的manager
進(jìn)行定制演痒,靈活性更強(qiáng)亲轨。另外通過delegate
統(tǒng)一回調(diào)行為,減少debug
難度鸟顺,避免了block
方式潛在的引用問題等
請求數(shù)據(jù)如何交付
在一次完整的fetch
數(shù)據(jù)過程中惦蚊,數(shù)據(jù)可以分為四種形態(tài):
- 服務(wù)端直接返回的二進(jìn)制形態(tài),稱為
Data
- 以
AFN
等工具拉取的數(shù)據(jù)讯嫂,一般是JSON
- 被持久化或非短暫持有的形態(tài)蹦锋,一般從
JSON
轉(zhuǎn)換而來,稱作Entity
- 展示在屏幕上的文本形態(tài)欧芽,大概率需要再加工莉掂,稱作
Text
這四種數(shù)據(jù)形態(tài)的流動結(jié)構(gòu)如下:
Server AFN controller view
------------- ------------- ------------- -------------
| | | | | | convert | |
| Data | ---> | JSON | ---> | Entity | ---> | Text |
| | | | | | | |
------------- ------------- ------------- -------------
普通情況下,第三方請求庫會以JSON
的形態(tài)交付數(shù)據(jù)給業(yè)務(wù)方千扔≡髅睿考慮到客戶端與服務(wù)端的命名規(guī)范、以及可能存在的變更曲楚,多數(shù)情況下客戶端會對JSON
數(shù)據(jù)加工成具體的Entity
數(shù)據(jù)實(shí)體厘唾,然后使用容器類保存。從上圖的四種數(shù)據(jù)形態(tài)來說龙誊,如果中間件必須選擇其中一種形態(tài)交付給業(yè)務(wù)層抚垃,Entity
應(yīng)該是最合理的交付數(shù)據(jù)形態(tài),原因有三:
- 如果交付的是
JSON
趟大,業(yè)務(wù)封裝必須完成JSON -> Entity
的轉(zhuǎn)換鹤树,多數(shù)時候請求發(fā)起的業(yè)務(wù)在C
層中,而這些邏輯總是造成Fat Controller
的原因 - 在
Entity -> Text
涉及到了具體的上層業(yè)務(wù)护昧,請求中間件不應(yīng)該向上干涉魂迄。在JSON -> Entity
的轉(zhuǎn)換過程中,Entity
已經(jīng)組裝了業(yè)務(wù)封裝最需要的數(shù)據(jù)內(nèi)容
另一個有趣的問題是Entity
描述的是數(shù)據(jù)流動的階段狀態(tài)惋耙,而非具體數(shù)據(jù)類型捣炬。打個比方熊昌,Entity
不一定非得是類對象實(shí)例,只要Entity
遵守業(yè)務(wù)封裝的讀取規(guī)范湿酸,可以是instance
也可以是collection
婿屹,比如一個面試者Entity
只要能提供姓名
和工作年限
這兩個關(guān)鍵數(shù)據(jù)即可:
/// 抽象模型
@interface SLInterviewer : NSObject
@property (nonatomic, copy) NSString *name;
@property (nonatomic, assign) CGFloat workYears;
@end
SLInterviewer *interviewer = entity;
NSLog(@"The interviewer name: %@ and work-years: %g", interviewer.name, interviewer.workYears);
/// 鍵值約定
extern NSString *SLInterviewerNameKey;
extern NSString *SLInterviewerWorkYearsKey;
NSDictionary *interviewer = entity;
NSLog(@"The interviewer name: %@ and work-years: %@", interviewer[SLInterviewerNameKey], interviewer[SLInterviewerWorkYearsKey]);
如果讓集約式請求的中間件交付Entity
數(shù)據(jù),JSON -> Entity
的形態(tài)轉(zhuǎn)換可能會導(dǎo)致請求中間件涉及到具體的業(yè)務(wù)邏輯中推溃,因此在實(shí)現(xiàn)上需要提供一個parser
來完成這一過程:
@protocol EntityParser
- (id)parseJSON: (id)JSON;
@end
@interface SLIntensiveRequest : NSObject
@property (nonatomic, strong) id<EntityParser> parser;
- (void)GET: (NSString *)url params: (id)params success: (SLSuccess)success failure: (SLFailure)failure;
@end
而相較之下昂利,離散型請求中BaseManager
承擔(dān)了統(tǒng)一的請求行為,派生的manager
完全可以直接將轉(zhuǎn)換的邏輯直接封裝起來铁坎,無需額外的Parser
蜂奸,唯一需要考慮的是Entity
的具體實(shí)體對象是否需要抽象模型來表達(dá):
@implementation SLGetInterviewerApiManager
/// 抽象模型
- (id)entityFromJSON: (id)json {
if ([json isKindOfClass: [NSDictionary class]]) {
return [SLInterviewer interviewerWithJSON: json];
} else {
return nil;
}
}
- (void)didLoadData {
self.dataList = self.response.safeMap(^id(id item) {
return [self entityFromJSON: item];
}).safeMap(^id(id interviewer) {
return [SLInterviewerInfo infoWithInterviewer: interviewer];
});
if ([_delegate respondsToSelector: @selector(managerDidLoadData:)]) {
[_delegate managerDidLoadData: self];
}
}
/// 鍵值約定
- (id)entityFromJSON: (id)json keyMap: (NSDictionary *)keyMap {
if ([json isKindOfClass: [NSDictionary class]]) {
NSDictionary *dict = json;
NSMutableDictionary *entity = @{}.mutableCopy;
for (NSString *key in keyMap) {
NSString *entityKey = keyMap[key];
entity[entityKey] = dict[key];
}
return entity.copy;
} else {
return nil;
}
}
@end
甚至再進(jìn)一步,manager
可以同時交付Text
和Entity
這兩種數(shù)據(jù)形態(tài)硬萍,使用parser
可以對C
層完成隱藏數(shù)據(jù)的轉(zhuǎn)換過程:
@protocol TextParser
- (id)parseEntity: (id)entity;
@end
@interface SLInterviewerTextContent : NSObject
@property (nonatomic, readonly) NSString *name;
@property (nonatomic, readonly) NSString *workYear;
@property (nonatomic, readonly) SLInterviewer *interviewer;
- (instancetype)initWithInterviewer: (SLInterviewer *)interviewer;
@end
@implementation SLInterviewerTextParser
- (id)parseEntity: (SLInterviewer *)entity {
return [[SLInterviewerTextContent alloc] initWithInterviewer: entity];
}
@end
通用的請求接口
是否需要統(tǒng)一接口的請求封裝層
在App
中的請求分為三類:GET
扩所、POST
和UPLOAD
,在不考慮進(jìn)行封裝的情況下朴乖,核心層的請求接口至少需要三種不同的接口來對應(yīng)這三種請求類型祖屏。此外還要考慮核心層的請求接口一旦發(fā)生變動(例如AFN
在更新至3.0
的時候修改了請求接口),因此對業(yè)務(wù)請求發(fā)起方來說买羞,存在一個封裝的請求中間層可以有效的抵御請求接口改動的風(fēng)險袁勺,以及有效的減少代碼量。上文可以看到對業(yè)務(wù)層暴露的中間件manager
的作用是對請求的行為進(jìn)行統(tǒng)一畜普,但并不干預(yù)請求的細(xì)節(jié)期丰,因此manager
也能被當(dāng)做是一個請求發(fā)起方,那么在其下層需要有暴露統(tǒng)一接口的請求封裝層:
-------------
中間件 | Manager |
-------------
↓
↓
-------------
請求層 | Request |
-------------
↓
↓
-------------
核心請求 | CoreNet |
-------------
封裝請求層的問題在于如何只暴露一個接口來適應(yīng)多種情況類型吃挑,一個方法是將請求內(nèi)容抽象成一系列的接口協(xié)議咐汞,Request
層根據(jù)接口返回參數(shù)調(diào)度具體的請求接口:
/// 協(xié)議接口層
enum {
SLRequestMethodGet,
SLRequestMethodPost,
SLRequestMethodUpload
};
@protocol RequestEntity
- (int)requestMethod; /// 請求類型
- (NSString *)urlPath; /// 提供域名中的path段,以便組裝:xxxxx/urlPath
- (NSDictionary *)parameters; /// 參數(shù)
@end
extern NSString *SLRequestParamPageKey;
extern NSString *SLRequestParamPageCountKey;
@interface RequestListEntity : NSObject<RequestEntity>
@property (nonatomic, assign) NSUInteger page;
@property (nonatomic, assign) NSUInteger pageCount;
@end
/// 請求層
typedef void(^SLRequestComplete)(id response, NSError *error);
@interface SLRequestEngine
+ (instancetype)engine;
- (void)sendRequest: (id<RequestEntity>)request complete: (SLRequestComplete)complete;
@end
@implementation SLRequestEngine
- (void)sendRequest: (id<RequestEntity>)request complete: (SLRequestComplete)complete {
if (!request || !complete) {
return;
}
if (request.requestMethod == SLRequestMethodGet) {
[self get: request complete: complete];
} else if (request.requestMethod == SLRequestMethodPost) {
[self post: request complete: complete];
} else if (request.requestMethod == SLRequestMethodUpload) {
[self upload: request complete: complete];
}
}
@end
這樣一來儒鹿,當(dāng)有新的請求API
時,創(chuàng)建對應(yīng)的RequestEntity
和Manager
類來處理請求几晤。對于業(yè)務(wù)上層來說约炎,整個請求過程更像是一個異步的fetch
流程,一個單獨(dú)的manager
負(fù)責(zé)加載數(shù)據(jù)并在加載完成時回調(diào)蟹瘾。Manager
也不用了解具體是什么請求圾浅,只需要簡單的配置參數(shù)即可,Manager
的設(shè)計(jì)如下:
@interface WSBaseApiManager : NSObject
@property (nonatomic, readonly, strong) id data;
@property (nonatomic, readonly, strong) NSError *error; /// 請求失敗時不為空
@property (nonatomic, weak) id<WSBaseApiManagerDelegate> delegate;
@end
@interface WSBaseListApiManager : NSObject
@property (nonatomic, assign) BOOL hasMore;
@property (nonatomic, readonly, copy) NSArray *dataList;
@end
@interface SLGetInterviewerRequest: RequestListEntity
@end
@interface SLGetInterviewerManager : WSBaseListApiManager
@end
@implementation SLGetInterviewerManager
- (void)loadWithParams: (NSDictionary *)params {
SLGetInterviewerRequest *request = [SLGetInterviewerRequest new];
request.page = [params[SLRequestParamPageKey] unsignedIntegerValue];
request.pageCount = [params[SLRequestParamPageCountKey] unsignedIntegerValue];
[[SLRequestEngine engine] sendRequest: request complete: ^(id response, NSError *error){
/// do something when request complete
}];
}
@end
最終請求結(jié)構(gòu):
-------------
業(yè)務(wù)層 | Client |
-------------
↓
↓
-------------
中間件 | Manager |
-------------
↓
↓
-------------
| Request |
-------------
↓
↓
請求層 -----------------------------------
↓ ↓ ↓
↓ ↓ ↓
------------- ------------- -------------
| GET | | POST | | Upload |
------------- ------------- -------------
↓ ↓ ↓
↓ ↓ ↓
---------------------------------------------
核心請求 | CoreNet |
---------------------------------------------