上一篇文章中寫了自己使用protobuf的一些經(jīng)歷鏈接如下http://www.reibang.com/p/d2ab8fc0f963,這一篇文章主要講述的是自己如何使用protobuf配合網(wǎng)絡(luò)請求.因為是初次接觸,資料較少,所以有一些觀點都是自己的主觀意識,如果有錯誤請及時指出,及時修改,以免誤導(dǎo)了后來使用者艰垂。
首先protobuf的請求中,我接觸的老項目是這樣操作的,將protobuf轉(zhuǎn)換成data然后設(shè)置httbody進(jìn)行請求,本文也是基于這樣的來做的,如果有更好的方式,歡迎聯(lián)系改進(jìn)。
老項目使用OC中是已經(jīng)寫好的請求,具體詳情就不再講述,只是OC中有一個比較好的使用實例,在請求前,往請求數(shù)據(jù)中添加公共參數(shù),(swift中我暫時沒有找到該方法)代碼如下
- (void)setTerminalInfo:(GPBMessage *)object {
NSArray *arrayDescriptor = [[object descriptor] fields];
for (GPBFieldDescriptor *descriptor in arrayDescriptor) {
if (descriptor.msgClass == [SMYTerminalInfo class]) {
PBInfo *info = [self getInfo];
GPBSetMessageIvarWithField(object, descriptor, info);
}
}
}
也有在返回參數(shù)重獲取公共參數(shù)的
GPBFieldDescriptor *descriptor = [[[response descriptor] fields] objectAtIndex:0];
GPBMessage *message = GPBGetMessageIvarWithField(response, descriptor);
在 swift中,因為編譯生成的.pb.swift文件中數(shù)據(jù)變成了struct結(jié)構(gòu).無法進(jìn)行這樣 的操作,找了半天沒有找到,我在swift項目中呢,是這樣來使用
Alamofire示例 使用自定義的編碼格式將pb數(shù)據(jù)轉(zhuǎn)換成data進(jìn)行網(wǎng)絡(luò)請求.按照如下編碼即可,其他的按照自己的需求來就好了 編碼代碼如下:
public struct MyCustomEncoding : ParameterEncoding {
private let data: Data
init(data: Data) {
self.data = data
}
public func encode(_ urlRequest: URLRequestConvertible, with parameters: Parameters?) throws -> URLRequest {
var urlRequest = try urlRequest.asURLRequest()
do {
urlRequest.httpBody = data
// urlRequest.setValue("application/json", forHTTPHeaderField: "Content-Type")
} catch {
throw AFError.parameterEncodingFailed(reason: .jsonEncodingFailed(error: error))
}
return urlRequest
}
}
原來我在moya中也是使用這樣的方式,直到我在moya代碼中發(fā)現(xiàn)了這個埋虹,可以直接使用httbody為data的方式:
public var task: Task {
switch self {
case .register(let data1,let data2,let data3):
var request = RegisterRequest.init()
request. data1 = data1
request. data2 = data2
request. data3 = data1
let data = try! request.serializedData()
return .requestData(data)
}
返回參數(shù)的話可以根據(jù)實際情況處理
以上便是我使用protbuf的一些方式,不知道是否算是正宗,希望可以有前輩指點
目前在項目中我還有以下幾個問題
1.是否有OC類似直接添加公共參數(shù)的方式猜憎?
我自己有想過struct映射,但是發(fā)現(xiàn)protobuf文件中想要的屬性無法映射出來,有使用其中的name_map方法,但是不知道如何統(tǒng)一添加公共參數(shù)
2,是否有其他的使用方式,網(wǎng)絡(luò)請求不使用轉(zhuǎn)data放入httpbody中搔课?具體是如何使用呢胰柑?
protobuf算是一個有自己優(yōu)勢的數(shù)據(jù)結(jié)構(gòu),可惜能查到的資料太少了,后續(xù)如果有其他進(jìn)展,會對本文進(jìn)行更新,期望可以保持一個比較新的資料。
參考資料如下:
1.Moya源碼分析:https://piglikeyoung.com/2017/08/27/moya-analysis-1/
2.Moya設(shè)計模式https://juejin.im/post/5a69e9f9f265da3e290c6782
3.Moya入坑http://www.reibang.com/p/d642865f0a64