改造通用响应处理程序

时间:2017-04-30 12:18:53

标签: android performance retrofit response retrofit2

我希望用单一方法处理我的所有回复。目的是在响应代码不是3时调用服务,当响应代码为3时我打算首先刷新令牌然后调用相同的服务。

我已经创建了一个Basecallback类来捕获一个方法但我无法查看日志并且无法捕获断点。

BASECALLBACK.class

public class BaseCallBack<T> implements Callback<T> {

 @Override
 public void onResponse(Call<T> call, Response<T> response) {

     if (!response.isSuccessful()){
         Log.d("BaseCallback","Response Fail");
     }

 }

 @Override
 public void onFailure(Call<T> call, Throwable t) {
     t.toString();
 }
}

CALL METHOD

 ApiManager.getInstance().getUsers().enqueue(new BaseCallBack<List<User>>() {
            @Override
            public void onResponse(Call<List<User>> call, Response<List<User>> response) {

                if (response.isSuccessful()){

                }

            }

            @Override
            public void onFailure(Call<List<User>> call, Throwable t) {

            }
        });

我只想处理我的服务单一方法。 感谢任何建议或帮助。

1 个答案:

答案 0 :(得分:4)

你的出发点很好 - 你有一个ApiManager这是你要找的单点 - class,而不是method(方法不应该是&#39;在这种情况下,它是一个单一的联系点,它将使您的代码不可读,以后更难调试。

从这里开始使用你自己的自定义界面可能会更好,并且你可以从你调用请求的地方实现它,在那里你可以处理你想要的东西,这是非常通用应该修复一些东西然后让你去的例子。

请注意这仍需要您工作的事实 - 调整并添加您需要的东西。

这就是你需要的所有界面(非常基本,你可以添加东西)

public interface CustomCallListener<T>
{
 public void getResult(T object); 
}

这就是你应该如何在你的ApiManager中使用它 - 它接收你的接口作为一个携带预期对象类型的参数,当响应返回你需要的东西 - 解析它,剪切它,无论如何 - 并将其转换为正确的对象,这个例子使用了一个String响应和一个List返回对象,你可以期待你的想法并相应地解析它,Retrofit2允许你直接解析JSON字符串(使用GSON或其他一些库),所以它是你的决定在这里使用什么 - 如果你不知道我的意思 - 请阅读它。

这也是我要添加断点和Log.调用以调试您获得的响应的地方,您还可以为标题和其他内容分解rawResponse

class ApiManager
{
 // .. other stuff you need...

public void getSomeList(final CustomCallListener<List<SomeObject>> listener)
{
    Call<ResponseBody> request = serviceCaller.getSomeInfo(userid);

    //...other stuff you might need...

    request.enqueue(new Callback<ResponseBody>()
    {
        @Override
        public void onResponse(Call<ResponseBody> call, retrofit2.Response<ResponseBody> rawResponse)
        {
            try
            {
                String response = rawResponse.body().string();
                //...other stuff you might need...
                //...do something with the response, convert it to 
                //return the correct object...
                SomeObject object = new SomeObject(response);
                listener.getResult(object);

            }
            catch (Exception e)
            {
            // .. the response was no good...
                listener.getResult(null);
            }
        }

        @Override
        public void onFailure(Call<ResponseBody> call, Throwable throwable)
        {
          // .. the response was no good...
            listener.getResult(null);
        }
    });
 }
}

最后,这是您应该在代码中的任何位置使用的内容 - 这允许您在那里实现回调并根据您从ApiManager返回的内容处理所需的任何内容。

  ApiManager.getInstance().getSomeList(new CustomCallListener<List<SomeObject>>()
    {
        @Override
        public void getResult(List<SomeObject> objects)
        {
            if (null != objects)
            {

                 // check objects and do whatever...
            }
            else
            {
             // ... do other stuff .. handle failure codes etc.
            }
        }
    });

注意事项

如上所述 - 这是一个非常通用的骨架,可以大大修改(使用不同的返回类型向接口添加更多方法来处理异常,错误响应,其他对象,为同一方法添加更多参数来处理更多选项,等)更多地阅读有关主题,谨防传递null对象,使用try和catch来避免崩溃。

希望这有帮助!