From b1569b789eef12cf5d4252620ca7e7d2d9c8b93a Mon Sep 17 00:00:00 2001 From: panlili2024 <14743743+panlili2024@user.noreply.gitee.com> Date: 星期四, 14 十一月 2024 14:26:03 +0800 Subject: [PATCH] sdk重连优化 --- HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/socket/HDLSocket.java | 1138 +++++++++++++++++++++++++++++++++++++++++++---------------- 1 files changed, 833 insertions(+), 305 deletions(-) diff --git a/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/socket/HDLSocket.java b/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/socket/HDLSocket.java index 7c94a2f..57afa7b 100644 --- a/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/socket/HDLSocket.java +++ b/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/socket/HDLSocket.java @@ -1,36 +1,50 @@ package com.hdl.sdk.connect.socket; +import android.os.Build; import android.text.TextUtils; + +import androidx.annotation.RequiresApi; import com.google.gson.JsonObject; import com.google.gson.reflect.TypeToken; import com.hdl.sdk.common.config.TopicConstant; import com.hdl.sdk.common.event.EventDispatcher; import com.hdl.sdk.common.event.EventListener; +import com.hdl.sdk.common.exception.HDLLinkCode; +import com.hdl.sdk.common.exception.HDLLinkException; import com.hdl.sdk.common.utils.IdUtils; -import com.hdl.sdk.common.utils.IpUtils; -import com.hdl.sdk.common.utils.SPUtils; +import com.hdl.sdk.common.utils.LogUtils; import com.hdl.sdk.common.utils.ThreadToolUtils; import com.hdl.sdk.common.utils.gson.GsonConvert; -import com.hdl.sdk.connect.bean.BaseLocalResponse; -import com.hdl.sdk.connect.bean.DeviceControlRequest; -import com.hdl.sdk.connect.bean.FunctionAttributeRequest; -import com.hdl.sdk.connect.bean.GatewaySearchBean; +import com.hdl.sdk.connect.HDLLink; import com.hdl.sdk.connect.bean.LinkRequest; import com.hdl.sdk.connect.bean.LinkResponse; -import com.hdl.sdk.connect.bean.PropertyReadRequest; -import com.hdl.sdk.connect.bean.PropertyUpRequest; +import com.hdl.sdk.connect.bean.LoginRequest; +import com.hdl.sdk.connect.bean.request.BroadcastRequest; +import com.hdl.sdk.connect.bean.request.DeviceAuthRequest; +import com.hdl.sdk.connect.bean.request.DeviceControlRequest; +import com.hdl.sdk.connect.bean.request.FunctionAttributeRequest; +import com.hdl.sdk.connect.bean.request.ListOidRequest; +import com.hdl.sdk.connect.bean.request.ListOidRequest2; +import com.hdl.sdk.connect.bean.request.ListSidRequest; +import com.hdl.sdk.connect.bean.request.ListUploadRequest; +import com.hdl.sdk.connect.bean.request.PropertyReadRequest; +import com.hdl.sdk.connect.bean.response.BaseLocalCodeResponse; +import com.hdl.sdk.connect.bean.response.BaseLocalResponse; +import com.hdl.sdk.connect.bean.response.DeviceInfoResponse; +import com.hdl.sdk.connect.callback.HDLLinkCallBack; +import com.hdl.sdk.connect.callback.HDLLinkResponseCallBack; +import com.hdl.sdk.connect.config.HDLLinkConfig; import com.hdl.sdk.connect.protocol.LinkMessageDecoder; import com.hdl.sdk.connect.protocol.LinkMessageEncoder; import com.hdl.sdk.socket.SocketBoot; import com.hdl.sdk.socket.SocketOptions; +import com.hdl.sdk.socket.client.IHeartbeat; import com.hdl.sdk.socket.client.TcpClient; -import com.hdl.sdk.socket.client.UdpClient; import com.hdl.sdk.socket.codec.MessagePipeLine; import com.hdl.sdk.socket.listener.ConnectStatusListener; import com.hdl.sdk.socket.listener.SendListener; -import java.io.UnsupportedEncodingException; import java.util.ArrayList; import java.util.List; import java.util.concurrent.ScheduledExecutorService; @@ -44,54 +58,20 @@ */ public class HDLSocket { - private static final String GATEWAY_KEY = "gateway_key"; - private static final String TCP_IP_KEY = "tcp_ip_key"; - private String gatewayId; - - public interface CallBack { - - void onError(String error); - - void onResponse(String data); - - } - - /** - * udp榛樿缁勬挱ip - */ - private static final String UDP_GROUP_IP = "239.0.168.188"; - - /** - * udp榛樿绔彛 - */ - private static final int UDP_PORT = 8585; - /** * tcp榛樿绔彛 */ private static final int TCP_PORT = 8586; - private String tcpIp; - private int tcpPort; - - private int udpPort; - private String udpIp; - - private static SocketBoot updBoot; private SocketBoot tcpBoot; private ConnectStatusListener statusListener; - - private EventListener searchEvent; - private CallBack searchCallBack; - private ScheduledExecutorService searchGatewayThread; - private final AtomicInteger searchCount = new AtomicInteger(0); private HDLSocket() { statusListener = new ConnectStatusListener() { @Override public void onConnecting() { - + //broadcastRequest(); } @Override @@ -104,184 +84,120 @@ } }; - searchEvent = new EventListener() { + } + + public boolean isBroadcast = false; + + + /** + * 骞挎挱鑷韩淇℃伅缁欎富缃戝叧 + */ + public void broadcastRequest() { + + new Thread(new Runnable() { @Override - public void onMessage(Object msg) { - try { - if (msg instanceof LinkResponse) { - LinkResponse linkResponse = (LinkResponse) msg; - String data = linkResponse.getData(); - if (!TextUtils.isEmpty(data)) { - final BaseLocalResponse<GatewaySearchBean> response = GsonConvert.getGson().fromJson(data, new TypeToken<BaseLocalResponse<GatewaySearchBean>>() { - }.getType()); - GatewaySearchBean searchBean = response.getObjects(); - if (searchBean != null) { - gatewayId = searchBean.getGatewayId(); - if (!TextUtils.isEmpty(gatewayId)) { - SPUtils.put(GATEWAY_KEY, gatewayId); - } - tcpIp = searchBean.getIp_address(); - if (!TextUtils.isEmpty(tcpIp)) { - SPUtils.put(TCP_IP_KEY, tcpIp); - } + public void run() { + while (true) { + try { + Thread.sleep(5000); + try { + if (!HDLLink.getInstance().checkIfCertified()) { + continue; } - if (searchCallBack != null) { - searchCallBack.onResponse(linkResponse.toString()); + if (!TextUtils.isEmpty(getTcpIp()) && getTcp().connected) { + continue; } + } catch (Exception e) { + } + LogUtils.i("骞挎挱璁惧鏈韩淇℃伅"); + String time = String.valueOf(System.currentTimeMillis()); + if (null == HDLLinkConfig.getInstance().getDeviceInfoBean()) { + LogUtils.i("DeviceInfoBean涓虹┖锛岃璁剧疆褰撳墠瀵硅薄"); + continue; + } + BroadcastRequest request = new BroadcastRequest(IdUtils.getUUId(), time, HDLLinkConfig.getInstance().getDeviceInfoBean(), "200"); + HDLAuthSocket.getInstance().udpSendMsg(TopicConstant.BROADCAST, GsonConvert.getGson().toJson(request), true, new HDLLinkResponseCallBack() { + @RequiresApi(api = Build.VERSION_CODES.O) + @Override + public void onSuccess(LinkResponse msg) { + String data = msg.getData(); + if (!TextUtils.isEmpty(data)) { + DeviceInfoResponse response = GsonConvert.getGson().fromJson(data, new TypeToken<DeviceInfoResponse>() { + }.getType()); - } - } catch (Exception e) { - if (searchCallBack != null) { - searchCallBack.onError("瑙f瀽澶辫触"); + if ((response == null) || (response.getObjects() == null) || (response.getObjects().getIPAddress() == null)) + return; + + HDLLinkConfig.getInstance().setIpAddress(response.getObjects().getIPAddress()); + LogUtils.i("---getIpAddress=" + HDLLinkConfig.getInstance().getIpAddress()); + + HDLLinkConfig.getInstance().reSaveConfig(); + } + + isBroadcast = true; + getTcp(); + LogUtils.i("骞挎挱淇℃伅缁欎富缃戝叧鎴愬姛锛�"); + } + + @Override + public void onError(HDLLinkException e) { + isBroadcast = false; + LogUtils.i("骞挎挱淇℃伅缁欎富缃戝叧澶辫触锛�---onError=" + e.toString()); + } + }); +// HDLAuthSocket.getInstance().udpSendMsg(TopicConstant.BROADCAST, GsonConvert.getGson().toJson(request), true); + //HDLAuthSocket.getInstance().udpSendMsg(TopicConstant.BROADCAST, GsonConvert.getGson().toJson(request), true); + } catch (Exception e) { + LogUtils.e("骞挎挱璁惧鏈韩淇℃伅澶辫触锛屽け璐ヤ俊鎭細" + e.getMessage()); } } - } - }; + }).start(); } - private static class SingletonInstance { - private static final HDLSocket INSTANCE = new HDLSocket(); - } + // private static class SingletonInstance { +// } + private static final HDLSocket instance = new HDLSocket(); public static HDLSocket getInstance() { - return SingletonInstance.INSTANCE; + return instance; } - - private SocketOptions getUdpOptions() { - final SocketOptions options = new SocketOptions(); - final MessagePipeLine pipeLine = new MessagePipeLine(); - pipeLine.add(new LinkMessageDecoder()); - pipeLine.add(new LinkMessageEncoder()); - options.setHandleMessage(pipeLine); - options.setEnabledHeartbeat(false); - return options; - } + SocketOptions options; private SocketOptions getTcpOptions() { - final SocketOptions options = new SocketOptions(); + if (null != options) { + return options; + } + options = new SocketOptions(); final MessagePipeLine pipeLine = new MessagePipeLine(); pipeLine.add(new LinkMessageDecoder()); pipeLine.add(new LinkMessageEncoder()); options.setHandleMessage(pipeLine); - options.setEnabledHeartbeat(false); + options.addConnectStatusListener(statusListener); return options; } - private int getUdpPort() { - return UDP_PORT; - } public int getTcpPort() { return TCP_PORT; } public String getTcpIp() { - if (!TextUtils.isEmpty(tcpIp)) { - return tcpIp; - } - return SPUtils.getString(TCP_IP_KEY, ""); + return HDLLinkConfig.getInstance().getIpAddress(); } public String getGatewayId() { - if (!TextUtils.isEmpty(gatewayId)) { - return gatewayId; - } - return SPUtils.getString(GATEWAY_KEY, ""); + return HDLLinkConfig.getInstance().getGatewayId(); } - - - private String getUdpIp() { - if (TextUtils.isEmpty(udpIp)) { - udpIp = UDP_GROUP_IP; - } - return udpIp; - } - - public void searchGateway() { - searchGateway(null); - } - - /** - * 缁勬挱鎼滅储 - */ - public void searchGateway(CallBack callBack) { - gatewayId = "";//閲嶇疆缃戝叧ID - this.searchCallBack = callBack; - - if (searchGatewayThread != null) { - searchGatewayThread.shutdownNow(); - } - - - new Thread(new Runnable() { - @Override - public void run() { - while (TextUtils.isEmpty(gatewayId)) { - //鎼滅储缃戝叧 - searchGateway(IdUtils.getUUId(), searchEvent); - try { - Thread.sleep(1000L); - } catch (InterruptedException e) { - e.printStackTrace(); - } - } - } - }).start(); - } - - - /** - * 閫氳繃缁勬挱鎼滅储缃戝叧 - */ - public void searchGateway(String msgId, EventListener eventListener) { - searchGateway(getUdpIp(), getUdpPort(), msgId, eventListener); - } - - /** - * 閫氳繃骞挎挱鎼滅储缃戝叧 - */ - public void searchGatewayByBroadcast(String msgId, EventListener eventListener) { - searchGateway(IpUtils.getBroadcastAddress(), getUdpPort(), msgId, eventListener); - } - - /** - * 榛樿鏄粍鎾悳绱㈢綉鍏� - */ - public void searchGateway(String ip, int port, String msgId, EventListener eventListener) { - - if (updBoot == null) { - updBoot = UdpClient.init(ip, port, getUdpOptions()); - updBoot.connect(); - } - - - String time = String.valueOf(System.currentTimeMillis()); - JsonObject jsonObject = new JsonObject(); - jsonObject.addProperty("id", msgId); - jsonObject.addProperty("time_stamp", time); - - EventDispatcher.getInstance().registerIo(TopicConstant.GATEWAY_SEARCH_REPLY, eventListener); - LinkRequest message = new LinkRequest(TopicConstant.GATEWAY_SEARCH, - jsonObject.toString()); - - try { - updBoot.sendMsg(message.toString().getBytes("utf-8")); - } catch (UnsupportedEncodingException e) { - e.printStackTrace(); - } - - } - /** * 鑾峰彇璁惧鍒楄〃 */ - public void getDeviceList(CallBack callBack) { + public void getDeviceList(HDLLinkCallBack callBack) { if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { String time = String.valueOf(System.currentTimeMillis()); JsonObject jsonObject = new JsonObject(); @@ -295,7 +211,7 @@ String replyTopic = String.format(TopicConstant.GET_DEVICE_LIST_REPLY, getGatewayId()); try { - sendMsg(message.toString().getBytes("utf-8"), replyTopic, callBack, new SendListener() { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { @Override public void onSucceed() { @@ -304,18 +220,18 @@ @Override public void onError() { if (callBack != null) { - callBack.onError("鑾峰彇璁惧鍒楄〃澶辫触"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_DEVICE_LIST_ERROR)); } } }); - } catch (UnsupportedEncodingException e) { + } catch (Exception e) { if (callBack != null) { - callBack.onError("鑾峰彇璁惧鍒楄〃澶辫触"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_DEVICE_LIST_ERROR)); } } } else { if (callBack != null) { - callBack.onError("ip鍦板潃涓㈠け"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_UNAUTHORIZED_ERROR)); } } } @@ -324,7 +240,7 @@ /** * 鑾峰彇鍔熻兘鍒楄〃 */ - public void getFunctionList(CallBack callBack) { + public void getFunctionList(HDLLinkCallBack callBack) { if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { String time = String.valueOf(System.currentTimeMillis()); JsonObject jsonObject = new JsonObject(); @@ -338,7 +254,7 @@ String replyTopic = String.format(TopicConstant.GET_FUNCTION_LIST_REPLY, getGatewayId()); try { - sendMsg(message.toString().getBytes("utf-8"), replyTopic, callBack, new SendListener() { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { @Override public void onSucceed() { @@ -347,18 +263,18 @@ @Override public void onError() { if (callBack != null) { - callBack.onError("鑾峰彇鍔熻兘鍒楄〃澶辫触"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_FUNCTION_LIST_ERROR)); } } }); - } catch (UnsupportedEncodingException e) { + } catch (Exception e) { if (callBack != null) { - callBack.onError("鑾峰彇鍔熻兘鍒楄〃澶辫触"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_FUNCTION_LIST_ERROR)); } } } else { if (callBack != null) { - callBack.onError("ip鍦板潃涓㈠け"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_UNAUTHORIZED_ERROR)); } } } @@ -367,10 +283,10 @@ /** * 鑾峰彇鍔熻兘灞炴�� * + * @param sids * @param callBack - * @param sid */ - public void getFunctionAttribute(CallBack callBack, String... sid) { + public void getFunctionAttribute(List<String> sids, HDLLinkCallBack callBack) { if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { String time = String.valueOf(System.currentTimeMillis()); @@ -378,7 +294,7 @@ data.setId(IdUtils.getUUId()); data.setTime_stamp(time); List<FunctionAttributeRequest> list = new ArrayList<>(); - for (String s : sid) { + for (String s : sids) { list.add(new FunctionAttributeRequest(s)); } data.setObjects(list); @@ -389,7 +305,7 @@ String replyTopic = String.format(TopicConstant.GET_FUNCTION_ATTRIBUTE_REPLY, getGatewayId()); try { - sendMsg(message.toString().getBytes("utf-8"), replyTopic, callBack, new SendListener() { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { @Override public void onSucceed() { @@ -398,18 +314,18 @@ @Override public void onError() { if (callBack != null) { - callBack.onError("鑾峰彇鍔熻兘灞炴�уけ璐�"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_FUNCTION_PROPERTIES_ERROR)); } } }); - } catch (UnsupportedEncodingException e) { + } catch (Exception e) { if (callBack != null) { - callBack.onError("鑾峰彇鍔熻兘灞炴�уけ璐�"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_FUNCTION_PROPERTIES_ERROR)); } } } else { if (callBack != null) { - callBack.onError("ip鍦板潃涓㈠け"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_UNAUTHORIZED_ERROR)); } } } @@ -417,7 +333,7 @@ /** * 璁惧鎺у埗 */ - public void propertyDown(List<DeviceControlRequest> request, CallBack callBack) { + public void propertyDown(List<DeviceControlRequest> request, HDLLinkCallBack callBack) { if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { String time = String.valueOf(System.currentTimeMillis()); @@ -427,10 +343,9 @@ data.setTime_stamp(time); data.setObjects(request); - String topic = String.format(TopicConstant.PROPERTY_DOWN, getGatewayId()); LinkRequest message = new LinkRequest(topic, - GsonConvert.getGson().toJson(request)); + GsonConvert.getGson().toJson(data)); String replyTopic = String.format(TopicConstant.PROPERTY_DOWN_REPLY, getGatewayId()); try { @@ -443,87 +358,90 @@ @Override public void onError() { if (callBack != null) { - callBack.onError("鎺у埗鎸囦护鍙戦�佸け璐�"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); } } }); } catch (Exception e) { if (callBack != null) { - callBack.onError("鎺у埗鎸囦护鍙戦�佸け璐�"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); } } } else { if (callBack != null) { - callBack.onError("鎺у埗鎸囦护鍙戦�佸け璐�"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); } } } - /** - * 鐘舵�佷笂鎶� - */ - public void propertyUp(List<PropertyUpRequest> request, CallBack callBack) { - if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { - String time = String.valueOf(System.currentTimeMillis()); - - final BaseLocalResponse<List<PropertyUpRequest>> data = new BaseLocalResponse<>(); - data.setId(IdUtils.getUUId()); - data.setTime_stamp(time); - data.setObjects(request); - - - String topic = String.format(TopicConstant.PROPERTY_UP, getGatewayId()); - LinkRequest message = new LinkRequest(topic, - GsonConvert.getGson().toJson(request)); - - String replyTopic = String.format(TopicConstant.PROPERTY_UP_REPLY, getGatewayId()); - try { - sendMsg(message.toString().getBytes("utf-8"), replyTopic, callBack, new SendListener() { - @Override - public void onSucceed() { - - } - - @Override - public void onError() { - if (callBack != null) { - callBack.onError("鎸囦护鍙戦�佸け璐�"); - } - } - }); - } catch (UnsupportedEncodingException e) { - if (callBack != null) { - callBack.onError("鎸囦护鍙戦�佸け璐�"); - } - } - } else { - if (callBack != null) { - callBack.onError("鎸囦护鍙戦�佸け璐�"); - } - } - } +// /** +// * 鐘舵�佷笂鎶� +// */ +// public void propertyUp(List<PropertyUpRequest> request, CallBack callBack) { +// if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { +// String time = String.valueOf(System.currentTimeMillis()); +// +// final BaseLocalResponse<List<PropertyUpRequest>> data = new BaseLocalResponse<>(); +// data.setId(IdUtils.getUUId()); +// data.setTime_stamp(time); +// data.setObjects(request); +// +// +// String topic = String.format(TopicConstant.PROPERTY_UP, getGatewayId()); +// LinkRequest message = new LinkRequest(topic, +// GsonConvert.getGson().toJson(request)); +// +// String replyTopic = String.format(TopicConstant.PROPERTY_UP_REPLY, getGatewayId()); +// try { +// sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { +// @Override +// public void onSucceed() { +// +// } +// +// @Override +// public void onError() { +// if (callBack != null) { +// callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); +// } +// } +// }); +// } catch (Exception e) { +// if (callBack != null) { +// callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); +// } +// } +// } else { +// if (callBack != null) { +// callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); +// } +// } +// } /** * 璇诲彇鐘舵�� */ - public void propertyRead(List<PropertyReadRequest> request, CallBack callBack) { + public void propertyRead(List<String> sids, HDLLinkCallBack callBack) { if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { String time = String.valueOf(System.currentTimeMillis()); - final BaseLocalResponse<List<PropertyReadRequest>> data = new BaseLocalResponse<>(); data.setId(IdUtils.getUUId()); data.setTime_stamp(time); - data.setObjects(request); + List<PropertyReadRequest> list = new ArrayList<>(); + for (String s : sids) { + list.add(new PropertyReadRequest(s)); + } + data.setObjects(list); String topic = String.format(TopicConstant.PROPERTY_READ, getGatewayId()); LinkRequest message = new LinkRequest(topic, - GsonConvert.getGson().toJson(request)); + GsonConvert.getGson().toJson(data)); String replyTopic = String.format(TopicConstant.PROPERTY_READ_REPLY, getGatewayId()); try { - sendMsg(message.toString().getBytes("utf-8"), replyTopic, callBack, new SendListener() { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { @Override public void onSucceed() { @@ -532,85 +450,643 @@ @Override public void onError() { if (callBack != null) { - callBack.onError("鎸囦护鍙戦�佸け璐�"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); } } }); - } catch (UnsupportedEncodingException e) { + } catch (Exception e) { if (callBack != null) { - callBack.onError("鎸囦护鍙戦�佸け璐�"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); } } } else { if (callBack != null) { - callBack.onError("鎸囦护鍙戦�佸け璐�"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); } } } - public SocketBoot getTcp() throws RuntimeException { - if (TextUtils.isEmpty(getTcpIp())) { + public synchronized SocketBoot getTcp() throws RuntimeException { + String gatewayIpAddress = getTcpIp(); + if (TextUtils.isEmpty(gatewayIpAddress)) { + LogUtils.e("璇锋悳绱㈢綉鍏�"); throw new RuntimeException("璇锋悳绱㈢綉鍏�"); } - if (tcpBoot == null) { - tcpBoot = TcpClient.init(getTcpIp(), getTcpPort(), getTcpOptions()); + //濡傛灉娌℃湁鍒濆鍖栵紝鎴栬�呯綉鍏矷P鏇存敼浜嗭紝灏遍噸鏂板垵濮嬪寲 + if (tcpBoot == null || !getTcpOptions().getIp().equals(gatewayIpAddress)) { + tcpBoot = TcpClient.init(gatewayIpAddress, getTcpPort(), getTcpOptions()); + tcpBoot.SetHeartbeat(new IHeartbeat() { + @Override + public void heartbeat() { + + if (HDLLinkConfig.getInstance().getDeviceInfoBean() == null || HDLLinkConfig.getInstance().getDeviceInfoBean().getOID() == null) { + LogUtils.i("DeviceInfoBean涓虹┖锛岄渶瑕佽缃墠鑳芥甯稿績璺�"); + return; + } + + String time = String.valueOf(System.currentTimeMillis()); + JsonObject jsonObject = new JsonObject(); + jsonObject.addProperty("id", IdUtils.getUUId()); + jsonObject.addProperty("time_stamp", time); + + if (HDLLinkConfig.getInstance().getRequestBean() != null) { + jsonObject.addProperty("mac", HDLLinkConfig.getInstance().getRequestBean().getMAC()); + } + + String topic = String.format(TopicConstant.HEARTBEAT, HDLLinkConfig.getInstance().getDeviceInfoBean().getOID()); + + LinkRequest message = new LinkRequest(topic, + jsonObject.toString()); + sendMsg(message.getSendBytes(), null, null, null); + } + }); } + return tcpBoot; } /** - * 娓呯┖缂撳瓨 + * 鑾峰彇鍦烘櫙鍒楄〃 */ - public void clearCache() { - SPUtils.remove(TCP_IP_KEY); - SPUtils.remove(GATEWAY_KEY); + public void getSceneList(HDLLinkCallBack callBack) { + if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { + String time = String.valueOf(System.currentTimeMillis()); + JsonObject jsonObject = new JsonObject(); + jsonObject.addProperty("id", IdUtils.getUUId()); + jsonObject.addProperty("time_stamp", time); + + String topic = String.format(TopicConstant.SCENE_LIST_GET, getGatewayId()); + + LinkRequest message = new LinkRequest(topic, + jsonObject.toString()); + String replyTopic = topic + "_reply"; + try { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { + @Override + public void onSucceed() { + + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_FUNCTION_LIST_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_FUNCTION_LIST_ERROR)); + } + } + } else { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_UNAUTHORIZED_ERROR)); + } + } } + /** + * 鑾峰彇鍦烘櫙鍒楄〃 + */ + public void getScene(List<String> sids, HDLLinkCallBack callBack) { + if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { + String time = String.valueOf(System.currentTimeMillis()); + final BaseLocalResponse<List<PropertyReadRequest>> data = new BaseLocalResponse<>(); + data.setId(IdUtils.getUUId()); + data.setTime_stamp(time); + + List<PropertyReadRequest> list = new ArrayList<>(); + for (String s : sids) { + list.add(new PropertyReadRequest(s)); + } + data.setObjects(list); + + String topic = String.format(TopicConstant.SCENE_GET, getGatewayId()); + LinkRequest message = new LinkRequest(topic, + GsonConvert.getGson().toJson(data)); + + String replyTopic = topic + "_reply"; + try { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { + @Override + public void onSucceed() { + + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_FUNCTION_LIST_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_GET_FUNCTION_LIST_ERROR)); + } + } + } else { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_UNAUTHORIZED_ERROR)); + } + } + } + + /** + * 鍦烘櫙鎺у埗 + * + * @param sids 鍦烘櫙sid鍒楄〃 + * @param callBack 鍥炶皟 + */ + public void controlScene(List<String> sids, HDLLinkCallBack callBack) { + if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { + String time = String.valueOf(System.currentTimeMillis()); + final BaseLocalResponse<List<PropertyReadRequest>> data = new BaseLocalResponse<>(); + data.setId(IdUtils.getUUId()); + data.setTime_stamp(time); + + List<PropertyReadRequest> list = new ArrayList<>(); + for (String s : sids) { + list.add(new PropertyReadRequest(s)); + } + data.setObjects(list); + + String topic = String.format(TopicConstant.SCENE_CONTROL, getGatewayId()); + LinkRequest message = new LinkRequest(topic, + GsonConvert.getGson().toJson(data)); + + String replyTopic = topic + "_reply"; + try { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { + @Override + public void onSucceed() { + + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } else { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } + + /** + * 涓婃姤oid鍒楄〃 + * + * @param request 璁惧淇℃伅 + * @param callBack 鍥炶皟 + */ + public void UploadOidList(ListUploadRequest request, HDLLinkCallBack callBack) { + if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { + String time = String.valueOf(System.currentTimeMillis()); + final BaseLocalResponse<List<ListUploadRequest>> data = new BaseLocalResponse<>(); + data.setId(IdUtils.getUUId()); + data.setTime_stamp(time); + + //2023.10.18淇敼锛屼笂鎶id鍒楄〃澧炲姞parentOid + if (request != null && !TextUtils.isEmpty(HDLLinkConfig.getInstance().getParentOid())) { + request.setParentOid(HDLLinkConfig.getInstance().getParentOid()); + } + + List<ListUploadRequest> list = new ArrayList<>(); + list.add(request); + + data.setObjects(list); + + String topic = String.format(TopicConstant.LIST_UPLOAD, getGatewayId()); + LinkRequest message = new LinkRequest(topic, + GsonConvert.getGson().toJson(data)); + + String replyTopic = topic + "_reply"; + try { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { + @Override + public void onSucceed() { + + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } else { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } + + /** + * 涓婃姤Sid鍒楄〃 + * + * @param requestList sid鍒楄〃 + * @param callBack 鍥炶皟 + */ + public void UploadSidList(List<ListSidRequest> requestList, HDLLinkCallBack callBack) { + if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { + String time = String.valueOf(System.currentTimeMillis()); + final BaseLocalResponse<List<ListSidRequest>> data = new BaseLocalResponse<>(); + data.setId(IdUtils.getUUId()); + data.setTime_stamp(time); + + data.setObjects(requestList); + + String topic = String.format(TopicConstant.LIST_SID_UPLOAD, getGatewayId()); + LinkRequest message = new LinkRequest(topic, + GsonConvert.getGson().toJson(data)); + + String replyTopic = topic + "_reply"; + try { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { + @Override + public void onSucceed() { + + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } else { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } + + /** + * 涓婃姤鍏ョ綉璁よ瘉缁撴灉 + * + * @param mac mac + * @param result 缁撴灉0/-1 + * @param message 璁よ瘉淇℃伅 + * @param auth_code 浜戠璁よ瘉code + * @param callBack 缁撴灉鍥炶皟 + */ + public void UploadDeviceAuth(String mac, String result, String message, String auth_code, HDLLinkCallBack callBack) { + if (!TextUtils.isEmpty(getGatewayId()) && !TextUtils.isEmpty(getTcpIp())) { + String time = String.valueOf(System.currentTimeMillis()); + final BaseLocalResponse<List<DeviceAuthRequest>> data = new BaseLocalResponse<>(); + data.setId(IdUtils.getUUId()); + data.setTime_stamp(time); + + DeviceAuthRequest deviceAuthRequest = new DeviceAuthRequest(); + deviceAuthRequest.setMac(mac); + deviceAuthRequest.setResult(result); + deviceAuthRequest.setMessage(message); + deviceAuthRequest.setAuth_code(auth_code); + + List<DeviceAuthRequest> list = new ArrayList<>(); + list.add(deviceAuthRequest); + + data.setObjects(list); + + String topic = String.format(TopicConstant.DEIVCE_AUTH_RESULT_NOTIFY, getGatewayId()); + LinkRequest linkRequest = new LinkRequest(topic, + GsonConvert.getGson().toJson(data)); + + String replyTopic = topic + "_reply"; + try { + sendMsg(linkRequest.getSendBytes(), replyTopic, callBack, new SendListener() { + @Override + public void onSucceed() { + + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } else { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } + + + /** + * tcp鐧诲綍鏂逛究鑾峰彇鐘舵�� + * + * @param clientType 瀹㈡埛绔被鍨� + * 搴旂敤锛歛pp锛� + * 璋冭瘯杞欢锛歱rogram锛� + * 绗笁鏂癸細third_party锛� + * 缃戝叧锛歡ateway锛� + * 鍏跺畠锛歰ther + * @param version 鍗忚鐗堟湰 + */ + public void tcpLogin(String clientType, String version, HDLLinkCallBack callBack) { + final String msgId = IdUtils.getUUId(); + String time = String.valueOf(System.currentTimeMillis()); + final BaseLocalResponse<LoginRequest> data = new BaseLocalResponse<>(); + data.setId(msgId); + data.setTime_stamp(time); + + final LoginRequest request = new LoginRequest(); + request.setVersion(version); + request.setClientType(clientType); + + data.setObjects(request); + + String topic = String.format(TopicConstant.GATEWAY_LOGIN, HDLLinkConfig.getInstance().getGatewayId()); + LinkRequest message = new LinkRequest(topic, + GsonConvert.getGson().toJson(data)); + + String replyTopic = topic + "_reply"; + try { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { + @Override + public void onSucceed() { + LogUtils.i("tcpLogin onSucceed"); + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } + + + /** + * 閫氱煡鍒犻櫎骞堕��缃戝瓙璁惧 + * + * @param oid 浠庣綉鍏筹紙璁惧锛塷id + * @param isForce 鏄惁寮哄埗閫�缃� + * @param callBack 缁撴灉鍥炶皟 + */ + public void deleteNetwork(String oid, boolean isForce, HDLLinkCallBack callBack) { + if (TextUtils.isEmpty(oid)) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_DATA_NULL_ERROR)); + } + + final String msgId = IdUtils.getUUId(); + String time = String.valueOf(System.currentTimeMillis()); + final BaseLocalResponse<List<ListOidRequest2>> data = new BaseLocalResponse<>(); + data.setId(msgId); + data.setTime_stamp(time); + + final ListOidRequest2 request = new ListOidRequest2(); + request.setOid(oid); + List<ListOidRequest2> list = new ArrayList<>(); + list.add(request); + + data.setObjects(list); + + String topic = String.format(TopicConstant.DELETE_REQUEST, HDLLinkConfig.getInstance().getGatewayId()); + LinkRequest message = new LinkRequest(topic, + GsonConvert.getGson().toJson(data)); + + String replyTopic = topic + "_reply"; + + if (isForce) {//寮哄埗閫�缃戯紝涓嶇瓑缃戝叧鍥炲鐩存帴娓呴櫎鏁版嵁 + HDLLinkConfig.getInstance().clearConfig(); + } + + try { + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { + @Override + public void onSucceed() { + if (callBack == null) return; + try { + callBack.onSuccess("閫�缃戞垚鍔�"); + HDLLinkConfig.getInstance().clearConfig(); + + } catch (Exception e) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_DATA_ERROR)); + } + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } + + /** + * 閫氱煡鍒犻櫎骞堕��缃戝瓙璁惧鎷撴墤鍏崇郴 + * + * @param oid 浠庣綉鍏筹紙璁惧锛塷id + * @param callBack 缁撴灉鍥炶皟 + */ + public void deleteNetwork(String oid, HDLLinkCallBack callBack) { + if (TextUtils.isEmpty(oid)) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_DATA_NULL_ERROR)); + } + + final String msgId = IdUtils.getUUId(); + String time = String.valueOf(System.currentTimeMillis()); + final BaseLocalCodeResponse<List<ListOidRequest>> data = new BaseLocalCodeResponse<>(); + data.setId(msgId); + data.setTime_stamp(time); + data.setCode("0"); + + final ListOidRequest request = new ListOidRequest(); + request.setOid(oid); + List<ListOidRequest> list = new ArrayList<>(); + list.add(request); + + data.setObjects(list); + + String topic = String.format(TopicConstant.DELETE_NOTIFY_REPLY, HDLLinkConfig.getInstance().getGatewayId()); + LinkRequest message = new LinkRequest(topic, + GsonConvert.getGson().toJson(data)); + +// String replyTopic = topic + "_reply"; + + try { + sendMsg(message.getSendBytes(), topic, null, new SendListener() { + @Override + public void onSucceed() { + HDLLinkConfig.getInstance().clearConfig(); + if (callBack == null) return; + try { + callBack.onSuccess("閫�缃戞垚鍔�"); + } catch (Exception e) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_DATA_ERROR)); + } + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } + +// /** +// * 娓呯┖缂撳瓨 +// */ +// public void clearCache() { +// SPUtils.remove(TCP_IP_KEY); +// SPUtils.remove(GATEWAY_KEY); +// } + + /** + * 閫氱敤TCP鍙戦�佹寚浠� + * 1绉掓病鍝嶅簲灏辫浠栭噸鏂板彂閫�,閲嶈瘯3娆� + * + * @param topic 鍙戦�佹暟鎹� + * @param bodyStr 鍥炲鐨勪富棰� + * @param callBack 鍥炶皟 + */ + public void tcpSendMsg(String topic, String bodyStr, HDLLinkCallBack callBack) { + try { + LinkRequest message = new LinkRequest(topic, bodyStr); + if (topic != null && topic.endsWith("_reply")) { + callBack = null; + } + String replyTopic = topic + "_reply"; + HDLLinkCallBack finalCallBack = callBack; + sendMsg(message.getSendBytes(), replyTopic, callBack, new SendListener() { + @Override + public void onSucceed() { + + } + + @Override + public void onError() { + if (finalCallBack != null) { + finalCallBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } + + /** + * 閫氱敤TCP鍙戦�佹寚浠� 鍙彂涓�娆★紝涓嶇洃鍚洖澶嶏紝涓嶉噸鍙� + * + * @param topic 鍙戦�佹暟鎹� + * @param bodyStr 鍥炲鐨勪富棰� + */ + public void tcpSendMsg(String topic, String bodyStr) { + try { + if (TextUtils.isEmpty(topic) || TextUtils.isEmpty(bodyStr)) { + LogUtils.e("tcpSendMsg", "鍙傛暟涓嶈兘涓虹┖"); + return; + } + LinkRequest message = new LinkRequest(topic, bodyStr); + getTcp().sendMsg(message.getSendBytes()); + } catch (Exception e) { + LogUtils.e("tcpSendMsg", "鍙戦�佸け璐� :" + e.getMessage()); + } + } /** * 鍙戦�佹寚浠� * 1绉掓病鍝嶅簲灏辫浠栭噸鏂板彂閫�,閲嶈瘯3娆� */ - public void sendMsg(byte[] data, String eventTag, CallBack callBack, SendListener sendListener) { + public void sendMsg(byte[] data, String eventTag, HDLLinkCallBack callBack, SendListener sendListener) { try { - final AtomicInteger sendCount = new AtomicInteger(0); + if (eventTag != null) { + final AtomicInteger sendCount = new AtomicInteger(0); - final ScheduledExecutorService threadPool = ThreadToolUtils.getInstance().newScheduledThreadPool(1); - final EventListener eventListener = new EventListener() { - @Override - public void onMessage(Object msg) { - if (msg instanceof LinkResponse) { - - if (callBack != null) { - callBack.onResponse(msg.toString()); - } - threadPool.shutdownNow(); - } - } - }; - - threadPool.scheduleWithFixedDelay(new Runnable() { - @Override - public void run() { - if (sendCount.get() < 3) { - sendCount.set(sendCount.get() + 1); - getTcp().sendMsg(data); - } else { - threadPool.shutdownNow(); - EventDispatcher.getInstance().remove(eventTag, eventListener); - ThreadToolUtils.getInstance().runOnUiThread(new Runnable() { - @Override - public void run() { - if (callBack != null) { - callBack.onError("鍙戦�佸け璐�"); - } + final ScheduledExecutorService threadPool = ThreadToolUtils.getInstance().newScheduledThreadPool(1); + final EventListener eventListener = new EventListener() { + @Override + public void onMessage(Object msg) { + if (msg instanceof LinkResponse) { + LogUtils.i("sendMsg onSuccess"); + threadPool.shutdownNow(); + LogUtils.i("sendMsg eventListener remove"); + EventDispatcher.getInstance().remove(eventTag, this); + if (callBack != null) { + callBack.onSuccess(msg.toString()); } - }); + } } - } - }, 1000, 500, TimeUnit.MILLISECONDS); - EventDispatcher.getInstance().register(eventTag, eventListener); + }; + + threadPool.scheduleWithFixedDelay(new Runnable() { + @Override + public void run() { + if (sendCount.get() < 0) { + sendCount.set(sendCount.get() + 1); + getTcp().sendMsg(data); + } else { + threadPool.shutdownNow(); + LogUtils.e("sendMsg eventListener remove"); + EventDispatcher.getInstance().remove(eventTag, eventListener); + ThreadToolUtils.getInstance().runOnUiThread(new Runnable() { + @Override + public void run() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } + } + }, 1000, 500, TimeUnit.MILLISECONDS); + EventDispatcher.getInstance().register(eventTag, eventListener); + } + //鍏堝彂閫佷竴娆� getTcp().sendMsg(data, new SendListener() { @Override public void onSucceed() { @@ -632,7 +1108,7 @@ @Override public void run() { if (callBack != null) { - callBack.onError("鍙戦�佸け璐�"); + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); } } }); @@ -640,4 +1116,56 @@ } + /** + * 鍥炲缃戝叧閰嶇疆鍛戒护 + * + * @param mac_Oid_GatewayId + * @param msgId 娑堟伅Id + * @param callBack + */ + public void gatewayRemoteEditReply(String mac_Oid_GatewayId, String msgId, HDLLinkCallBack callBack) { + if (TextUtils.isEmpty(mac_Oid_GatewayId)) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_DATA_NULL_ERROR)); + } + + String time = String.valueOf(System.currentTimeMillis()); + final BaseLocalCodeResponse<List<String>> data = new BaseLocalCodeResponse<>(); + data.setId(msgId); + data.setTime_stamp(time); + data.setCode("0"); + + + String topic = String.format(TopicConstant.GATEWAY_EDIT_REMOTE_REPLY, mac_Oid_GatewayId); + LinkRequest message = new LinkRequest(topic, + GsonConvert.getGson().toJson(data)); + + + try { + sendMsg(message.getSendBytes(), topic, callBack, new SendListener() { + @Override + public void onSucceed() { + if (callBack == null) return; + try { + callBack.onSuccess("閫�缃戞垚鍔�"); + HDLLinkConfig.getInstance().clearConfig(); + + } catch (Exception e) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_DATA_ERROR)); + } + } + + @Override + public void onError() { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + }); + } catch (Exception e) { + if (callBack != null) { + callBack.onError(HDLLinkException.getErrorWithCode(HDLLinkCode.HDL_SEND_ERROR)); + } + } + } + } -- Gitblit v1.8.0