在Android中使用WebSocket实现消息通信的方法详解
前言
消息推送功能可以说移动app不可缺少的功能之一,一般简单的推送我们可以使用第三方推送的sdk,比如极光推送、信鸽推送等,但是对于消息聊天这种及时性有要求的或者三方推送不满足业务需求的,我们就需要使用websocket实现消息推送功能。
基本流程
websocket是什么,这里就不做介绍了,我们这里使用的开源框架是https://github.com/takahikokawasaki/nv-websocket-client
基于开源协议我们封装实现websocket的连接、注册、心跳、消息分发、超时任务功能,基本流程如下:
连接功能
首先我们新建一个项目,在build.grade中添加配置
compile 'com.neovisionaries:nv-websocket-client:2.2'
新建websocket管理类wsmanger
public class wsmanager { private volatile static wsmanager wsmanger; private wsmanager() { } public static wsmanager getwsmanger() { if (wsmanger == null) { synchronized (wsmanager.class) { if (wsmanger == null) { wsmanger = new wsmanager(); } } } return wsmanger; } }
接下来添加连接方法,我们将websocket的状态分为三种,新建wsstatue枚举类对应起来
public enum wsstatus { /** * 连接成功 */ connect_success, /** * 连接失败 */ connect_fail, /** * 正在连接 */ connecting; }
连接方法如下所示:
/** * 连接方法 这里要判断是否登录 此处省略 */ public void connect() { //web_socket_api 是连接的url地址, // connect_timeout是连接的超时时间 这里是 5秒 try { ws = new websocketfactory().createsocket(web_socket_api, connect_timeout) //设置帧队列最大值为5 .setframequeuesize(5) //设置不允许服务端关闭连接却未发送关闭帧 .setmissingcloseframeallowed(false) //添加回调监听 .addlistener(new wslistener()) //异步连接 .connectasynchronously(); } catch (ioexception e) { e.printstacktrace(); } setstatus(wsstatus.connecting); }
调用连接方法后 我们来看连接的回调 也就是wslistener
/** * websocket回调事件 */ private class wslistener extends websocketadapter { @override public void onconnected(websocket websocket, map<string, list<string>> headers) throws exception { log.d(tag, "onconnected: 连接成功"); } @override public void onconnecterror(websocket websocket, websocketexception exception) throws exception { log.d(tag, "onconnecterror: 连接失败"); } @override public void ondisconnected(websocket websocket, websocketframe servercloseframe, websocketframe clientcloseframe, boolean closedbyserver) throws exception { log.d(tag, "ondisconnected: 断开连接"); } @override public void ontextmessage(websocket websocket, string text) throws exception { log.d(tag, "ontextmessage: 收到消息:" + text); } }
下面我们调用连接方法
wsmanager.getwsmanger().connect();
运行项目我们可以看到如下打印:
此处我们要做的处理是,如果收到连接失败或者断开连接的回调 需要重新连接,我们重新调用一次连接方法即可,并且如果超过三次重连失败,我们在业务中可以通过调用接口来获取数据,避免数据丢失,此处细节省略。
协议封装
此处协议如下所示:
{ "action":"", "requestchild":{ "clienttype":"", "id":"" } }
心跳、发送请求都属于客户端主动发送请求,对于请求结果我们分为成功和失败以及超时,发送超时我们是收不到服务器任何回复的,所以我们需要在发送之后将发送放在超时任务队列中,如果请求成功将任务从超时队列中移除,超时从超时队列中获取任务重新请求。
超时任务队列中回调有成功、失败、超时。
我们按照上述协议,新增对应实体类,采用builder设计模式
public class request { /** * 行为 */ private string action; /** * 请求体 */ private requestchild req; /** * 请求次数 */ private transient int reqcount; /** * 超时的时间 */ private transient int timeout; public request() { } public request(string action, int reqcount, int timeout, requestchild req) { this.action = action; this.req = req; this.reqcount = reqcount; this.timeout = timeout; } public static class builder { //action 请求类型 private string action; //请求子类数据 按照具体业务划分 private requestchild req; //请求次数 便于重试 private int reqcount; //超时时间 private int timeout; public builder action(string action) { this.action = action; return this; } public builder req(requestchild req) { this.req = req; return this; } public builder reqcount(int reqcount) { this.reqcount = reqcount; return this; } public builder timeout(int timeout) { this.timeout = timeout; return this; } public request build() { return new request(action, reqcount, timeout, req); } } }
public class requestchild { /** * 设备类型 */ private string clienttype; /** * 用于用户注册的id */ private string id; public requestchild(string clienttype, string id) { this.clienttype = clienttype; this.id = id; } public requestchild() { } public static class builder { private string clienttype; private string id; public requestchild.builder setclienttype(string clienttype) { this.clienttype = clienttype; return this; } public requestchild.builder setid(string id) { this.id = id; return this; } public requestchild build() { return new requestchild(clienttype, id); } } }
我们添加一个发送请求的方法如下:
/** * 发送请求 * * @param request 请求体 * @param reqcount 请求次数 * @param requestlistern 请求回调 */ private void senrequest(request request, final int reqcount, final requestlistern requestlistern) { if (!isnetconnect()) { requestlistern.requestfailed("网络未连接"); return; } }
请求回调如下所示
public interface requestlistern { /** * 请求成功 */ void requestsuccess(); /** * 请求失败 * * @param message 请求失败消息提示 */ void requestfailed(string message); }
接着我们要把请求放在超时队列中,新建超时任务类,对应的分别是请求参数、请求回调、任务调度
public class timeouttask { /** * 请求主体 */ private request request; /** * 通用返回 */ private requestcallback requestcallback; /** * r任务 */ private scheduledfuture scheduledfuture; public timeouttask(request request, requestcallback requestcallback, scheduledfuture scheduledfuture) { this.request = request; this.requestcallback = requestcallback; this.scheduledfuture = scheduledfuture; } public scheduledfuture getscheduledfuture() { return scheduledfuture; } public void setscheduledfuture(scheduledfuture scheduledfuture) { this.scheduledfuture = scheduledfuture; } public request getrequest() { return request; } public void setrequest(request request) { this.request = request; } public requestcallback getrequestcallback() { return requestcallback; } public void setrequestcallback(requestcallback requestcallback) { this.requestcallback = requestcallback; } }
requestcallback是超时任务的回调,只是比请求回调多了个超时,因为超时的处理机制是一样的,所以这里我们没必要将超时回调到请求中
public interface requestcallback { /** * 请求成功 */ void requestsuccess(); /** * 请求失败 * * @param request 请求体 * @param message 请求失败的消息 */ void requestfailed(string message, request request); /** * 请求超时 * * @param request 请求体 */ void timeout(request request); } /** * 添加超时任务 */ private scheduledfuture enqueuetimeout(final request request, final long timeout) { log.d(tag, " " + "enqueuetimeout: 添加超时任务类型为:" + request.getaction()); return executor.schedule(new runnable() { @override public void run() { timeouttask timeouttask = callbacks.remove(request.getaction()); if (timeouttask != null) { timeouttask.getrequestcallback().timeout(timeouttask.getrequest()); } } }, timeout, timeunit.milliseconds); }
超时任务的方法是通过任务调度定时调用,请求成功后我们会把超时任务移除,当到了超时时间时,任务还存在就说明任务超时了。
每次的任务我们以action为键值存在hashmap中
private map<string, callbackwrapper> callbacks = new hashmap<>();
将任务放入超时任务代码如下所示:
final scheduledfuture timeouttask = enqueuetimeout(request, request.gettimeout()); final requestcallback requestcallback = new requestcallback() { @override public void requestsuccess() { requestlistern.requestsuccess(); } @override public void requestfailed(string message, request request) { requestlistern.requestfailed(message); } @override public void timeout(request request) { timeouthanlder(request); } }; callbacks.put(request.getaction(), new callbackwrapper(request, requestcallback, timeouttask));
一般而言,任务超时都是由于连接原因导致,所以我们这里可以尝试重试一次,如果还是超时,通过 timeouthanlder(request);方法 进行重新连接,重连代码和连接代码一样,这里就省略了,做好这步操作,我们就可以发送消息了。
/** * 超时任务 */ private void timeouthanlder(request requset) { setstatus(wsstatus.connect_fail); //这里假装有重连 log.d(tag, "timeouthanlder: 请求超时 准备重连"); }
到这里我们的流程基本可以走通了。
心跳
首先我们要了解下心跳的作用是什么,心跳是在连接成功后,通过固定的间隔时间向服务器发送询问,当前是否还在线,有很多人说心跳失败我们就重连,成功就继续心跳,但是这里要注意的是,我们一般是收不到心跳失败回调的,心跳也是向服务器发送数据,所以我们要将所有的主动请求都放在超时任务队列中,
所以对websocket来说 请求结果有三种:成功、失败、超时,对于用户 只有成功、失败即可。
至于心跳、注册等请求发送的数据是什么,这就得看我们与服务端定的协议是什么样了,通常来说 分为action 和 requestbody,协议格式我们再第二步已经封装好了,这里我们以心跳任务为例验证上面的封装。
/** * 心跳 */ void keepalive() { request request = new request.builder() .reqcount(0) .timeout(request_timeout) .action(action_keepalive).build(); wsmanager.getwsmanger().senrequest(request, request.getreqcount() + 1, new requestlistern() { @override public void requestsuccess() { log.d(tag, "requestsuccess: 心跳发送成功了"); } @override public void requestfailed(string message) { } }); }
我们每间隔10s中开启一次心跳任务
/** * 开始心跳 */ public void startkeepalive() { mhandler.postdelayed(mkeepalivetask, heart_beat_rate); } /** * 心跳任务 */ private runnable mkeepalivetask = new runnable() { @override public void run() { keepalive(); mhandler.removecallbacks(mkeepalivetask); mhandler.postdelayed(mkeepalivetask, heart_beat_rate); } };
为了便于操作演示,在主页面上加个按钮 ,点击按钮调用startkeepalive方法,运行如下所示:
我们可以看到心跳返回的statue是300 不成功,5秒之后走到了请求超时的方法中,所以如果状态返回成功的话,我们需要回调给调用者
/** * 处理 任务回调 * * @param action 请求类型 */ void dispatchcallbackwarp(string action, boolean issuccess) { callbackwrapper callbackwarp = callbacks.remove(action); if (callbackwarp == null) { logger.d(tag+" "+ "dispatchcallbackwarp: 任务队列为空"); } else { callbackwarp.getscheduledfuture().cancel(true); if (issuccess) { callbackwarp.getrequestcallback().requestsuccess(); } else { callbackwarp.getrequestcallback().requestfailed("", new request()); } } }
这样调用者才知道成功或失败。
发送其他消息与心跳一样,只是请求参数不同而已,修改request参数即可。这样我们根据协议和业务就实现一个比较规范的websocket消息推送流程了。
到此这篇关于在android中使用websocket实现消息通信的方法详解的文章就介绍到这了,更多相关android使用websocket实现消息通信内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 100分的挑战
下一篇: 从java面试题了解你所模糊的数组