Android基于Retrofit2.0网络框架封装
2017-01-04 本文已影响325人
a4232a78d40d
前言
Retrofit2.0已经极大的简化了我们的网络请求,但是结合业务开放我们还需要再封装一下,这里我封装了如下几点:
1.域名
在创建Retrofit实例的时候我们需要指定一个baseUrl,理想情况下如果一个App只有一个域名的话,我们就可以使用一个单例的Retrofit,但是现实往往不是这样,我们的App里面就有七八个域名,当然你可以每次请求时都生成一个Retrofit实例,但感觉有点不妥,可能会有一些性能问题,所以一个域名我就一个域名对应一个Retrofit实例。但是一个App会涉及到多少个域名是不确定的,今天做业务线A的团队可能要用两个新域名,明天做业务线B的团队要用另外两外新域名,总不能去频繁的改动网络框架。定义一个接口,利用抽象的方式对变化进行封装。
Retrofit2Host.java
public interface Retrofit2Host {
String getHost();
}
Retrofit2Mgr.java
private static HashMap<String, Retrofit> mRtfContainer;
/**
* @param baseUrl
* @return
* @desc 根据baseUrl生成Retrofit实例
*/
public Retrofit getRetrofit(String baseUrl) {
Retrofit retrofit = mRtfContainer.get(baseUrl);
if (null == retrofit) {
retrofit = mRtfBuilder.baseUrl(baseUrl).build();
mRtfContainer.put(baseUrl, retrofit);
}
return retrofit;
}
2.APIService封装
定义一个工厂 APIServiceFactory.java
public class APIServiceFactory {
public static <T> T createAPIService(Retrofit2Host host, Class<T> clz) {
return Retrofit2Mgr.getInstance().getRetrofit(host.getHost()).create(clz);
}
}
使用的时候:
public enum TechHost implements Retrofit2Host {
GankIO {
@Override
public String getHost() {
return "http://gank.io/";
}
},Github {
@Override
public String getHost() {
return "https://github.com";
}
}
}
GankApi.java
public interface GankApi {
@GET("api/data/{type}/{month}/{day}")
Observable<GankIOModel<List<Dynamic>>> getData(@Path("type") String type, @Path("month") int month, @Path("day") int day);
}
DynamicPrestenter.java
public class DynamicPresenter extends BaseMvpPresenter<IDynamicView> {
GankApi mGankApi;
public DynamicPresenter() {
this.mGankApi = APIServiceFactory.createAPIService(TechHost.GankIO, GankApi.class);
}
@SuppressWarnings("unchecked")
public void getData(final int page) {
subscribeNetwork(mGankApi.getData("Android", 10, page), new NetSubscriber<List<Dynamic>>(getView()) {
@Override
public void onNext(List<Dynamic> dynamics) {
if (null == getView()){
return;
}
if (page > 1) {
getView().showMoreContent(dynamics, true);
} else {
getView().showContent(dynamics, true);
}
}
}, ModelTransformerFactory.createModelTransformer());
}
}
后续更新...
3.统一数据模型封装
比较喜闻乐见的方式
public class BaseModel<T> {
@SerializedName("data")
public T data;
@SerializedName("code")
public int code;
@SerializedName("msg")
public String msg;
}
4.统一错误处理
主要处理两方面的错误
(1)
(2)
5.统一请求头封装
6.日志
7.证书校验