Created
February 11, 2014 10:59
-
-
Save aemxn/8932900 to your computer and use it in GitHub Desktop.
GsonRequest (Volley)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copyright 2013 Ognyan Bankov | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
package com.example.android; | |
import com.google.gson.Gson; | |
import com.google.gson.JsonSyntaxException; | |
import com.android.volley.AuthFailureError; | |
import com.android.volley.NetworkResponse; | |
import com.android.volley.ParseError; | |
import com.android.volley.Request; | |
import com.android.volley.Response; | |
import com.android.volley.Response.ErrorListener; | |
import com.android.volley.Response.Listener; | |
import com.android.volley.toolbox.HttpHeaderParser; | |
import java.io.UnsupportedEncodingException; | |
import java.util.Map; | |
/** | |
* Volley adapter for JSON requests with POST method that will be parsed into Java objects by Gson. | |
*/ | |
public class GsonRequest<T> extends Request<T> { | |
private Gson mGson = new Gson(); | |
private Class<T> clazz; | |
private Map<String, String> headers; | |
private Map<String, String> params; | |
private Listener<T> listener; | |
/** | |
* Make a GET request and return a parsed object from JSON. | |
* | |
* @param url URL of the request to make | |
* @param clazz Relevant class object, for Gson's reflection | |
*/ | |
public GsonRequest(int method, | |
String url, | |
Class<T> clazz, | |
Listener<T> listener, | |
ErrorListener errorListener) { | |
super(method, url, errorListener); | |
this.clazz = clazz; | |
this.listener = listener; | |
mGson = new Gson(); | |
} | |
/** | |
* Make a POST request and return a parsed object from JSON. | |
* | |
* @param url URL of the request to make | |
* @param clazz Relevant class object, for Gson's reflection | |
*/ | |
public GsonRequest(int method, | |
String url, | |
Class<T> clazz, | |
Map<String, String> params, | |
Listener<T> listener, | |
ErrorListener errorListener) { | |
super(method, url, errorListener); | |
this.clazz = clazz; | |
this.params = params; | |
this.listener = listener; | |
this.headers = null; | |
mGson = new Gson(); | |
} | |
@Override | |
public Map<String, String> getHeaders() throws AuthFailureError { | |
return headers != null ? headers : super.getHeaders(); | |
} | |
@Override | |
protected Map<String, String> getParams() throws AuthFailureError { | |
return params; | |
} | |
@Override | |
protected void deliverResponse(T response) { | |
listener.onResponse(response); | |
} | |
@Override | |
protected Response<T> parseNetworkResponse(NetworkResponse response) { | |
try { | |
String json = new String( | |
response.data, HttpHeaderParser.parseCharset(response.headers)); | |
return Response.success( | |
mGson.fromJson(json, clazz), HttpHeaderParser.parseCacheHeaders(response)); | |
} catch (UnsupportedEncodingException e) { | |
return Response.error(new ParseError(e)); | |
} catch (JsonSyntaxException e) { | |
return Response.error(new ParseError(e)); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment