編輯:關於Android編程
Retrofit是一個不錯的網絡請求庫,用官方自己的介紹就是:
A type-safe REST client for Android and Java
看官網的介紹用起來很省事,不過如果不了解它是怎麼實現的也不太敢用,不然出問題了就不知道怎麼辦了。這幾天比較閒就下下來看了一下,了解一下大概實現方法,細節就不追究了。先來看一個官網的例子,詳細說明去網官看
首先定義請求接口,即程序中都需要什麼請求操作
public interface GitHubService { @GET("/users/{user}/repos") ListlistRepos(@Path("user") String user); }
然後通過RestAdapter生成一個剛才定義的接口的實現類,使用的是動態代理。
RestAdapter restAdapter = new RestAdapter.Builder()
.setEndpoint("https://api.github.com")
.build();
GitHubService service = restAdapter.create(GitHubService.class);
現在就可以調用接口進行請求了
List repos = service.listRepos("octocat");
使用就是這麼簡單,請求時直接調用接口就行了,甚至不用封裝參數,因為參數的信息已經在定義接口時通過Annotation定義好了。
從上面的例子可以看到接口直接返回了需要的Java類型,而不是byte[]或String,解析數據的地方就是
Converter,這個是可以自定義的,默認是用
Gson解析,也就是說默認認為服務器返回的是Json數據,可以通過指定不同的
Convert使用不同的解析方法,如用
Jackson解析Json,或自定義XmlConvert解析xml數據。
Retrofit的使用就是以下幾步:
定義接口,參數聲明,Url都通過Annotation指定
通過RestAdapter生成一個接口的實現類(動態代理)
調用接口請求數據
接口的定義要用用Rtrofit定義的一些Annotation,所以先看一下Annotation的。
Annotation
以上面的示例中的接口來看
@GET("/group/{id}/users")
List groupList(@Path("id") int groupId);
先看@GET
/** Make a GET request to a REST path relative to base URL. */
@Documented
@Target(METHOD)
@Retention(RUNTIME)
@RestMethod("GET")
public @interface GET {
String value();
}
@GET本身也被幾個Anotation注解,@Target表示@GET注解是用於方法的,value方法就返回這個注解的value值,在上例中就是/group/{id}/users,然後就是@RestMethod
@Documented
@Target(ANNOTATION_TYPE)
@Retention(RUNTIME)
public @interface RestMethod {
String value();
boolean hasBody() default false;
}
RestMethod是一個用於Annotation的Annotation,比如上面的例子中用來注解的@GET,value方法就返回GET,hasBody表示是否有Body,對於POST這個方法就返回true
@Documented
@Target(METHOD)
@Retention(RUNTIME)
@RestMethod(value = "POST", hasBody = true)
public @interface POST {
String value();
}
Retrofit的Annotation包含請求方法相關的@GET、@POST、@HEAD、@PUT、@DELETA、@PATCH,和參數相關的@Path、@Field、@Multipart等。
定義了Annotation要就有解析它的方法,在Retrofit中解析的位置就是
RestMethodInfo,但在這之前需要先看哪裡使用了
RestMethodInfo,前面說了Retrofit使用了動態代理生成了我們定義的接口的實現類,而這個實現類是通過
RestAdapter.create返回的,所以使用動態代理的位置就是
RestAdapter,接下來就看一下
RestAdapter。
RestAdapter
RestAdapter restAdapter = new RestAdapter.Builder()
.setEndpoint("https://api.github.com")
.build();
GitHubService service = restAdapter.create(GitHubService.class);
public RestAdapter build() {
if (endpoint == null) {
throw new IllegalArgumentException("Endpoint may not be null.");
}
ensureSaneDefaults();
return new RestAdapter(endpoint, clientProvider, httpExecutor, callbackExecutor,
requestInterceptor, converter, profiler, errorHandler, log, logLevel);
}
setEndPoint就不說了,接口中定義的都是相對Url,EndPoint就是域名,
build方法調用
ensureSaneDefaults()方法,然後就構造了一個RestAdapter對象,構造函數的參數中傳入了EndPoint外的幾個對象,這幾個對象就是在
ensureSaneDefaults()中初始化的。
private void ensureSaneDefaults() {
if (converter == null) { converter = Platform.get().defaultConverter(); }
if (clientProvider == null) { clientProvider = Platform.get().defaultClient(); }
if (httpExecutor == null) { httpExecutor = Platform.get().defaultHttpExecutor(); }
if (callbackExecutor == null) { callbackExecutor = Platform.get().defaultCallbackExecutor(); }
if (errorHandler == null) { errorHandler = ErrorHandler.DEFAULT; }
if (log == null) { log = Platform.get().defaultLog(); }
if (requestInterceptor == null) { requestInterceptor = RequestInterceptor.NONE; }
}
ensureSaneDefaults()中初始化了很多成員,errorHandler、log就不看了,其他的除了
requestInterceptor都是通過
Platform對象獲得的,所以要先看下
Platform
Platform
private static final Platform PLATFORM = findPlatform();
static final boolean HAS_RX_JAVA = hasRxJavaOnClasspath();
static Platform get() {
return PLATFORM;
}
private static Platform findPlatform() {
try {
Class.forName("android.os.Build");
if (Build.VERSION.SDK_INT != 0) {
return new Android();
}
} catch (ClassNotFoundException ignored) {
}
if (System.getProperty("com.google.appengine.runtime.version") != null) {
return new AppEngine();
}
return new Base();
}
使用了單例的
PLATFORM,通過
findPlatform()初始化實例,如果是Android平台就使用
Platform.Android,如果是Google AppEngine就使用
Platform.AppEngine,否則使用
Platform.Base,這些都是
Platform的子類,其中
AppEngine又是
Base的子類。
Platform是一個抽象類,定義了以下幾個抽象方法,這幾個方法的作用就是返回一些
RestAdapter中需要要用到成員的默認實現
abstract Converter defaultConverter(); // 默認的Converter,用於將請求結果轉化成需要的數據,如GsonConverter將JSON請求結果用Gson解析成Java對象
abstract Client.Provider defaultClient(); // Http請求類,如果是AppEngine就使用`UrlFetchClient`,否則如果有OKHttp就使用OKHttp,如果是Android,2.3以後使用HttpURLConnection,2.3以前使用HttpClient
abstract Executor defaultHttpExecutor(); // 用於執行Http請求的Executor
abstract Executor defaultCallbackExecutor(); // Callback調用中用於執行Callback的Executor(可能是同步的)
abstract RestAdapter.Log defaultLog(); // Log接口,用於輸出Log
看完Platform的接口再看ensureSaneDefaults就清楚了,初始化轉化數據的Converter、執行請求的Client、執行請求的Executor、執行Callback的Executor、Log輸出類、錯誤處理類和用於在請求前添加額外處理的攔截請求的Interceptor。
Converter默認都是用的
GsonConverter,就不看了,
defaultClient返回執行網絡請求的Client
Platform.Android
@Override Client.Provider defaultClient() {
final Client client;
if (hasOkHttpOnClasspath()) {
client = OkClientInstantiator.instantiate();
} else if (Build.VERSION.SDK_INT < Build.VERSION_CODES.GINGERBREAD) {
client = new AndroidApacheClient();
} else {
client = new UrlConnectionClient();
}
return new Client.Provider() {
@Override public Client get() {
return client;
}
};
}
Platform.Base
@Override Client.Provider defaultClient() {
final Client client;
if (hasOkHttpOnClasspath()) {
client = OkClientInstantiator.instantiate();
} else {
client = new UrlConnectionClient();
}
return new Client.Provider() {
@Override public Client get() {
return client;
}
};
}
Platform.AppEngine
@Override Client.Provider defaultClient() {
final UrlFetchClient client = new UrlFetchClient();
return new Client.Provider() {
@Override public Client get() {
return client;
}
};
}
對於Android,優先使用OKHttp,否則2.3以後使用HttpUrlConnection,2.3以前使用HttpClient
defaultHttpExecutor就是返回一個Executor,執行請求的線程在這個Executor中執行,就做了一件事,把線程設置為後台線程
defaultCallbackExecutor用於執行Callback類型的請求時,提供一個Executor執行Callback的Runnable
Platform.Base
@Override Executor defaultCallbackExecutor() {
return new Utils.SynchronousExecutor();
}
Platform.Android
@Override Executor defaultCallbackExecutor() {
return new MainThreadExecutor();
}
SynchronousExecutor
static class SynchronousExecutor implements Executor {
@Override public void execute(Runnable runnable) {
runnable.run();
}
}
MainThreadExecutor
public final class MainThreadExecutor implements Executor {
private final Handler handler = new Handler(Looper.getMainLooper());
@Override public void execute(Runnable r) {
handler.post(r);
}
}
如果是Android,通過Handler將回調發送到主線程執行,如果非Android,直接同步執行。
Platform看完了,RestAdapter的成員初始化完成,就要看怎麼通過
RestAdapter.create生成我們定義的接口的實現類了
RestAdapter.create
public T create(Class service) {
Utils.validateServiceClass(service);
return (T) Proxy.newProxyInstance(service.getClassLoader(), new Class[] { service },
new RestHandler(getMethodInfoCache(service)));
}
Map getMethodInfoCache(Class service) {
synchronized (serviceMethodInfoCache) {
Map methodInfoCache = serviceMethodInfoCache.get(service);
if (methodInfoCache == null) {
methodInfoCache = new LinkedHashMap();
serviceMethodInfoCache.put(service, methodInfoCache);
}
return methodInfoCache;
}
}
使用了動態代理,
InvocationHandler是
RestHandler,
RestHandler有一個參數,是
Method->
RestMethodInfo的映射,初始化時這個映射是空的。重點就是這兩個了:
RestHandler,
RestMethodInfo,
@Override public Object invoke(Object proxy, Method method, final Object[] args)
throws Throwable {
// If the method is a method from Object then defer to normal invocation.
if (method.getDeclaringClass() == Object.class) { // 1
return method.invoke(this, args);
}
// Load or create the details cache for the current method.
final RestMethodInfo methodInfo = getMethodInfo(methodDetailsCache, method); // 2
if (methodInfo.isSynchronous) { // 3
try {
return invokeRequest(requestInterceptor, methodInfo, args);
} catch (RetrofitError error) {
Throwable newError = errorHandler.handleError(error);
if (newError == null) {
throw new IllegalStateException("Error handler returned null for wrapped exception.",
error);
}
throw newError;
}
}
if (httpExecutor == null || callbackExecutor == null) {
throw new IllegalStateException("Asynchronous invocation requires calling setExecutors.");
}
// Apply the interceptor synchronously, recording the interception so we can replay it later.
// This way we still defer argument serialization to the background thread.
final RequestInterceptorTape interceptorTape = new RequestInterceptorTape();
requestInterceptor.intercept(interceptorTape); // 4
if (methodInfo.isObservable) { // 5
if (rxSupport == null) {
if (Platform.HAS_RX_JAVA) {
rxSupport = new RxSupport(httpExecutor, errorHandler);
} else {
throw new IllegalStateException("Observable method found but no RxJava on classpath");
}
}
return rxSupport.createRequestObservable(new Callable() {
@Override public ResponseWrapper call() throws Exception {
return (ResponseWrapper) invokeRequest(interceptorTape, methodInfo, args);
}
});
}
Callback callback = (Callback) args[args.length - 1]; // 6
httpExecutor.execute(new CallbackRunnable(callback, callbackExecutor, errorHandler) {
@Override public ResponseWrapper obtainResponse() {
return (ResponseWrapper) invokeRequest(interceptorTape, methodInfo, args);
}
});
return null; // Asynchronous methods should have return type of void.
}
執行請求時會調用
RestHandler的
invoke方法,如上所示,主要是上面代碼中標注有6點
如果調用的是Object的方法,不做處理直接調用。
通過getMethodInfo獲取調用的Method對應的RestMethodInfo,前面說了,構造RestHandler對象時傳進來了一個Method->RestMethodInfo的映射,初始時是空的。
static RestMethodInfo getMethodInfo(Map cache, Method method) {
synchronized (cache) {
RestMethodInfo methodInfo = cache.get(method);
if (methodInfo == null) {
methodInfo = new RestMethodInfo(method);
cache.put(method, methodInfo);
}
return methodInfo;
}
在
getMethodInfo中判斷如果相應的映射不存在,就建立這個映射,並如名字所示緩存起來
3. 如果是同步調用(接口中直接返回數據,不通過Callback或Observe),直接調用invokeRequest
4. 如果是非同步調用,先通過RequestInterceptorTape記錄攔截請求,記錄後在後台線程做實際攔截,後面會提到。
5. 如果是Observe請求(RxJava),執行第5步,對RxJava不了解,略過
6. 如果是Callback形式,交由線程池執行
接口中的每一個Method有一個對應的RestMethodInfo,關於接口中Annotation信息的處理就都在這裡了
RestMethodInfo
private enum ResponseType {
VOID,
OBSERVABLE,
OBJECT
}
RestMethodInfo(Method method) {
this.method = method;
responseType = parseResponseType();
isSynchronous = (responseType == ResponseType.OBJECT);
isObservable = (responseType == ResponseType.OBSERVABLE);
}
在構造函數中調用了
parseResponseType,
parseResponseType解析了方法簽名,根據方法的返回值類型及最後一個參數的類型判斷方法的類型是哪種
ResponseType
無論是哪種ResponseType,最終都是調用
invokeRequest執行實際的請求,接下來依次看下
invokeRequest的執行步驟
RestAdapter.invokeRequest
第一步是調用
methodInfo.init()解析調用的方法,方法裡有做判斷,只在第一次調用時解析,因為處一次解析後這個對象就被緩存起來了,下次調同一個方法時可以直接使用
synchronized void init() {
if (loaded) return;
parseMethodAnnotations();
parseParameters();
loaded = true;
}
在
RestMethodInfo.init中分別調用
parseMethodAnnotations():解析所有方法的Annotation
parseParameters():解析所有參數的Annotation
for (Annotation methodAnnotation : method.getAnnotations()) {
Class annotationType = methodAnnotation.annotationType();
RestMethod methodInfo = null;
// Look for a @RestMethod annotation on the parameter annotation indicating request method.
for (Annotation innerAnnotation : annotationType.getAnnotations()) {
if (RestMethod.class == innerAnnotation.annotationType()) {
methodInfo = (RestMethod) innerAnnotation;
break;
}
}
...
}
在parseMethodAnnotations中,會獲取方法所有的Annotation並遍歷:
對於每一個Annotation,也會獲取它的Annotation,看它是否是被RestMethod注解的Annotation,如果是,說明是@GET,@POST類型的注解,就調用parsePath解析請求的Url,requestParam(URL中問號後的內容)及Url中需要替換的參數名(Url中大括號括起來的部分)
尋找Headers Annotation解析Header參數
解析RequestType:SIMPLE,MULTIPART,FORM_URL_ENCODED
parseParameters解析請求參數,即參數的Annotation,
@PATH、
@HEADER、
@FIELD等
第二步是RequestBuilder和Interceptor,這兩個是有關聯的,所以一起看。
RequestBuilder requestBuilder = new RequestBuilder(serverUrl, methodInfo, converter);
requestBuilder.setArguments(args);
requestInterceptor.intercept(requestBuilder);
Request request = requestBuilder.build();
先說RequestInterceptor,作用很明顯,當執行請求時攔截請求以做一些特殊處理,比如添加一些額外的請求參數。
/** Intercept every request before it is executed in order to add additional data. */
public interface RequestInterceptor {
/** Called for every request. Add data using methods on the supplied {@link RequestFacade}. */
void intercept(RequestFacade request);
interface RequestFacade {
void addHeader(String name, String value);
void addPathParam(String name, String value);
void addEncodedPathParam(String name, String value);
void addQueryParam(String name, String value);
void addEncodedQueryParam(String name, String value);
}
/** A {@link RequestInterceptor} which does no modification of requests. */
RequestInterceptor NONE = new RequestInterceptor() {
@Override public void intercept(RequestFacade request) {
// Do nothing.
}
};
}
RequestInterceptor只有一個方法
intercept,接收一個
RequestFacade參數,
RequestFacade是
RequestInterceptor內部的一個接口,這個接口的方法就是添加請求參數,Query、Header什麼的。大概可以看出
RequestInterceptor的作用了,如果
RequestFacade表示一個請求相關的數據,
RequestInteceptor.intercept的作用就是向這個
RequestFacade中添加額外Header,Param等參數。
RequestFacade的一個子類叫
RequestBuilder,用來處理
Request請求參數,在
invokeRequest中會對
RequestBuilder調用
intercept方法向
RequestBuilder添加額外的參數。
有一個叫
RequestInterceptorTape的類,同時實現了
RequestFacade與
RequestInterceptor,它的作用是:
當作為RequestFacade使用時作為參數傳給一個RequestInteceptor,這個RequestInterceptor調用它的addHeader等方法時,它把這些調用及參數記錄下來
然後作為RequestInterceptor使用時,將之前記錄的方法調用及參數重新應用到它的intercept參數RequestFacade中
在
RestHandler.invoke中,如果判斷方法的調用不是同步調用,就通過下面的兩行代碼將用戶設置的interceptor需要添加的參數記錄到
RequestInterceptorTape,然後在
invokeRequest中再實際執行參數的添加。
// Apply the interceptor synchronously, recording the interception so we can replay it later.
// This way we still defer argument serialization to the background thread.
final RequestInterceptorTape interceptorTape = new RequestInterceptorTape();
requestInterceptor.intercept(interceptorTape);
RequestBuilder.setArguments()解析調用接口時的實際參數。然後通過
build()方法生成一個
Request對象
第三步執行請求,
Response response = clientProvider.get().execute(request);
第四步就是解析並分發請求結果了,成功請求時返回結果,解析失敗調用
ErrorHandler給用戶一個自定義異常的機會,但最終都是通過異常拋出到
invoke()中的,如果是同步調用,直接拋異常,如果是Callback調用,會回調
Callback.failure
CallbackRunnable
請求類型有同步請求,Callback請求,Observable請求,來看下Callback請求:
Callback callback = (Callback) args[args.length - 1];
httpExecutor.execute(new CallbackRunnable(callback, callbackExecutor, errorHandler) {
@Override public ResponseWrapper obtainResponse() {
return (ResponseWrapper) invokeRequest(interceptorTape, methodInfo, args);
}
});
Callback請求中函數最後一個參數是一個Callback的實例,httpExecutor是一個Executor,用於執行Runnable請求,我們看到,這裡new了一個CallbackRunnable執行,並實現了它的obtainResponse方法,看實現:
abstract class CallbackRunnable implements Runnable {
private final Callback callback;
private final Executor callbackExecutor;
private final ErrorHandler errorHandler;
CallbackRunnable(Callback callback, Executor callbackExecutor, ErrorHandler errorHandler) {
this.callback = callback;
this.callbackExecutor = callbackExecutor;
this.errorHandler = errorHandler;
}
@SuppressWarnings("unchecked")
@Override public final void run() {
try {
final ResponseWrapper wrapper = obtainResponse();
callbackExecutor.execute(new Runnable() {
@Override public void run() {
callback.success((T) wrapper.responseBody, wrapper.response);
}
});
} catch (RetrofitError e) {
Throwable cause = errorHandler.handleError(e);
final RetrofitError handled = cause == e ? e : unexpectedError(e.getUrl(), cause);
callbackExecutor.execute(new Runnable() {
@Override public void run() {
callback.failure(handled);
}
});
}
}
public abstract ResponseWrapper obtainResponse();
}
就是一個普通的Runnable,在run方法中首先執行obtailResponse,從名字可以看到是執行請求返回Response,這個從前面可以看到執行了invokeRequest,和同步調用中一樣執行請求。
緊接著就提交了一個Runnable至callbackExecutor,在看
Platform時看到了callbackExecotor是通過
Platform.get().defaultCallbackExecutor()返回的,Android中是向主線程的一個Handler發消息
值得注意的事,對於同步調用,如果遇到錯誤是直接拋異常,而對於異步調用,是調用
Callback.failure()
Mime
執行網絡請求,需要向服務端發送請求參數,如表單數據,上傳的文件等,同樣需要解析服務端返回的數據,在Retrofit中對這些做了封裝,位於Mime包中,也只有封裝了,才好統一由指定的Converter執行數據的轉換
TypedInput和
TypedOutput表示輸入輸出的數據,都包含mimeType,並分別支持讀入一個InputStream或寫到一個OutputStrem
/**
* Binary data with an associated mime type.
*
* @author Jake Wharton ([email protected])
*/
public interface TypedInput {
/** Returns the mime type. */
String mimeType();
/** Length in bytes. Returns {@code -1} if length is unknown. */
long length();
/**
* Read bytes as stream. Unless otherwise specified, this method may only be called once. It is
* the responsibility of the caller to close the stream.
*/
InputStream in() throws IOException;
}
/**
* Binary data with an associated mime type.
*
* @author Bob Lee ([email protected])
*/
public interface TypedOutput {
/** Original filename.
*
* Used only for multipart requests, may be null. */
String fileName();
/** Returns the mime type. */
String mimeType();
/** Length in bytes or -1 if unknown. */
long length();
/** Writes these bytes to the given output stream. */
void writeTo(OutputStream out) throws IOException;
}
TypedByteArray,內部數據是一個Byte數組
private final byte[] bytes;
@Override public long length() {
return bytes.length;
}
@Override public void writeTo(OutputStream out) throws IOException {
out.write(bytes);
}
@Override public InputStream in() throws IOException {
return new ByteArrayInputStream(bytes);
}
TypedString,繼承自
TypedByteArray,內部表示是一樣的
public TypedString(String string) {
super("text/plain; charset=UTF-8", convertToBytes(string));
}
private static byte[] convertToBytes(String string) {
try {
return string.getBytes("UTF-8");
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}
其他的也一樣,從名字很好理解:
TypedFile,
MultipartTypedOutput,
FormEncodedTypedOutput。
其他
Retrofit對輸入和輸出做了封裝,通過
TypedOutput向服務器發送數據,通過
TypedInput讀取服務器返回的數據。
通過
MultipartTypedOutput支持文件上傳,讀取服務器數據時,如果要求直接返回未解析的Response,Restonse會被轉換為TypedByteArray,所以不能是大文件類的
Retrofit支持不同的Log等級,當為LogLevel.Full時會把Request及Response的Body打印出來,所以如果包含文件就不行了。
Retrofit默認使用GsonConverter,所以要想獲取原始數據不要Retrofit解析,要麼自定義Conveter,要麼直接返回Response了,返回Response也比較麻煩
總體來說Retrofit看起來很好用,不過要求服務端返回數據最好要規范,不然如果請求成功返回一種數據結構,請求失敗返回另一種數據結構,不好用Converter解析,接口的定義也不好定義,除非都返回Response,或自定義Converter所有接口都返回String
在Twitter上JakeWharton這麼說:
Gearing up towards a Retrofit 1.6.0 release and then branching 1.x so we can push master towards a 2.0 and fix long-standing design issues.
要出2.0了,內部API會改,接口應該不怎麼變
我們知道在Android系統中,我們執行完耗時操作都要另外開啟子線程來執行,執行完線程以後線程會自動銷毀。想象一下如果我們在項目中經常要執行耗時操作,如果經常要開啟線程,
魅族發布了今年最後一款歷史性新品---魅藍metal,魅藍metal依舊采用了與或卡托(單卡槽雙卡位)設計,且支持雙卡雙待,目前預約的有移動定制版和公開版。
TabActivity在API13之後被fragment替代了,所以不建議使用效果:點擊頭像標簽,進行切換。 代碼:https://github.com/ldb
本教程為大家分享了Android微博個人信息界面設計代碼,供大家參考,具體內容如下根據用戶ID獲取用戶信息接口: http://open.weibo.com/wiki/2