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_DEMO/app/src/main/java/com/hdl/hdlsdk/MainActivity.java |  563 ++++++++++++++++++++++++++++++++++++++------------------
 1 files changed, 383 insertions(+), 180 deletions(-)

diff --git a/HDLSDK_DEMO/app/src/main/java/com/hdl/hdlsdk/MainActivity.java b/HDLSDK_DEMO/app/src/main/java/com/hdl/hdlsdk/MainActivity.java
index d6c6e37..20780bf 100644
--- a/HDLSDK_DEMO/app/src/main/java/com/hdl/hdlsdk/MainActivity.java
+++ b/HDLSDK_DEMO/app/src/main/java/com/hdl/hdlsdk/MainActivity.java
@@ -1,49 +1,49 @@
 package com.hdl.hdlsdk;
 
-import androidx.activity.result.ActivityResultCallback;
-import androidx.activity.result.ActivityResultLauncher;
-import androidx.activity.result.contract.ActivityResultContracts;
-import androidx.annotation.NonNull;
-import androidx.appcompat.app.AppCompatActivity;
-import androidx.recyclerview.widget.LinearLayoutManager;
-import androidx.recyclerview.widget.RecyclerView;
-
 import android.Manifest;
 import android.content.Intent;
+import android.os.Build;
 import android.os.Bundle;
 import android.text.TextUtils;
 import android.util.Log;
 import android.view.View;
+import android.widget.EditText;
 import android.widget.TextView;
 import android.widget.Toast;
 
+import androidx.activity.result.ActivityResultCallback;
+import androidx.activity.result.ActivityResultLauncher;
+import androidx.activity.result.contract.ActivityResultContracts;
+import androidx.annotation.NonNull;
+import androidx.annotation.RequiresApi;
+import androidx.appcompat.app.AppCompatActivity;
+import androidx.recyclerview.widget.LinearLayoutManager;
+import androidx.recyclerview.widget.RecyclerView;
+
 import com.chad.library.adapter.base.BaseQuickAdapter;
 import com.chad.library.adapter.base.listener.OnItemClickListener;
-import com.google.gson.JsonObject;
 import com.google.gson.reflect.TypeToken;
 import com.hdl.hdlsdk.device.DevicesListActivity;
 import com.hdl.sdk.common.config.TopicConstant;
+import com.hdl.sdk.common.event.DeleteNetworkListener;
 import com.hdl.sdk.common.event.EventListener;
 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.LogUtils;
 import com.hdl.sdk.common.utils.gson.GsonConvert;
 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.request.AuthenticateRequest;
-import com.hdl.sdk.connect.bean.request.PropertyReadRequest;
+import com.hdl.sdk.connect.bean.request.DeviceControlRequest;
+import com.hdl.sdk.connect.bean.request.ListUploadRequest;
 import com.hdl.sdk.connect.bean.response.BaseLocalResponse;
 import com.hdl.sdk.connect.bean.response.GatewaySearchBean;
 import com.hdl.sdk.connect.callback.HDLLinkCallBack;
 import com.hdl.sdk.connect.callback.HDLLinkResponseCallBack;
+import com.hdl.sdk.connect.cloud.CallBackListener;
+import com.hdl.sdk.connect.cloud.HDLException;
+import com.hdl.sdk.connect.config.HDLLinkConfig;
 import com.hdl.sdk.connect.socket.HDLAuthSocket;
-import com.hdl.sdk.connect.socket.HDLSocket;
-import com.hdl.sdk.connect.bean.request.DeviceControlRequest;
-import com.hdl.sdk.connect.protocol.LinkMessageDecoder;
-import com.hdl.sdk.connect.protocol.LinkMessageEncoder;
-import com.hdl.sdk.socket.SocketOptions;
-import com.hdl.sdk.socket.codec.MessagePipeLine;
 
 import java.io.UnsupportedEncodingException;
 import java.security.MessageDigest;
@@ -52,7 +52,7 @@
 import java.util.List;
 import java.util.Map;
 
-import static com.hdl.sdk.common.config.TopicConstant.GATEWAY_SEARCH_REPLY;
+import retrofit2.http.HEAD;
 
 public class MainActivity extends AppCompatActivity {
 
@@ -61,9 +61,12 @@
     private RecyclerView rv;
     private TextView tv;
     private TextView responseTv;
+    private TextView localSecret;
+    private EditText editText;
     boolean isOn;
     private EventListener allTopicsListener;
-    private String testLightSid = "0001010D48C71B02020100010101";
+    private String testLightSid = "02010131D9C03D01020300010107";
+    private String secret = "";
 
     @Override
     protected void onDestroy() {
@@ -71,18 +74,172 @@
         removeAllTopicsListener();
     }
 
+    void initDeviceInfo() {
+        AuthenticateRequest.AuthenticateDeviceInfoBean infoBean = new AuthenticateRequest.AuthenticateDeviceInfoBean();
+
+        infoBean.setDeviceMAC("f2c5d8bad48f");
+        infoBean.setIPMAC("f2c5d8bad48f");
+
+        infoBean.setDeviceName("闊充箰鎾斁鍣�");//璁惧鍚嶅瓧
+        infoBean.setDeviceModel("MCLog.431");//璁惧鍨嬪彿
+        infoBean.setAccessMode("WIFI");
+        infoBean.setIPGateway("192.168.1.1");
+        infoBean.setIPAddress("192.168.1.103");
+        infoBean.setGateway_type("screen.touch");
+        infoBean.setHw_version("HW2.0");
+        infoBean.setFw_version("Fw1.0");
+        infoBean.setOID("010105000000FE11");//姣忎釜璁惧oid閮借涓嶄竴鏍�
+        infoBean.setSid("110105000000FE08110100000011");//姣忎釜璁惧鐨剆id閮借涓嶄竴鏍�
+        infoBean.setSupplier("JINMAOYUN");
+        HDLLinkConfig.getInstance().setDeviceInfoBean(infoBean);
+    }
+
+    void applyDeviceSecret() {
+        tv.setText("寮�濮嬬敵璇疯澶囧瘑閽�...");
+        responseTv.setText("");
+
+//        //姝e紡鏈嶅姟鍣�
+        String appKey = "i8hR07jzrIS";//appkey
+        String appSecret = "BmnJ8RWTtaVEBk24zPPF4UMwfYu0lAWU";//appsecret
+
+        //娴嬭瘯鏈嶅姟鍣�
+//        String appKey ="FcRyUJlLJFF";
+//        String appSecret = "wz8wn75ABidx8vXcFGUotqhwFkTaYvvJ";
+
+//        String appKey = "L2OZliZRxHc";
+//        String appSecret = "aCIWSvJDOukXfx3kivsKW11x9xdR3IbV";
+        String supplier = "JINMAOYUN";//鍘傚晢
+//        String mac = "AA00000000000100";//璁惧鍞竴MAC鍦板潃
+        String mac = editText.getText().toString();
+        String spk = "screen.touch";//浜у搧spk
+
+        if (TextUtils.isEmpty(mac)) {
+            Toast.makeText(this, "mac涓嶈兘涓虹┖锛�", Toast.LENGTH_SHORT).show();
+            return;
+        }
+
+        HDLLink.getInstance().applyDeviceSecret(this, appKey, appSecret, supplier, mac, spk, new CallBackListener() {
+            @Override
+            public void onError(HDLException e) {
+                tv.setText("鐢宠澶辫触");
+                responseTv.setText(e.getMsg());
+                secret = "";
+            }
+
+            @Override
+            public void onSuccess(String msg) {
+                tv.setText("鐢宠鎴愬姛");
+                responseTv.setText(msg.toString());
+                secret = msg.toString();
+            }
+        });
+
+    }
+
+    /**
+     * 鍏ョ綉璁よ瘉
+     */
+    void sendAuthenticateRequest() {
+        tv.setText("寮�濮嬪叆缃戣璇�...");
+        responseTv.setText("");
+        //璁よ瘉鎻愪氦鍙傛暟鍑嗗
+//
+//        //娴嬭瘯鏈嶅姟鍣�
+//        String spkStr = "music.standard";//浜у搧spk
+//        String macStr = "AA000000000000AF";//璁惧鍞竴MAC鍦板潃
+//        String secret = "44b360eb74b7ba64";//閫氳繃spk鍜宮ac鎻愪氦浜戠璁よ瘉鍚庡垎閰嶇殑secret
+
+//        姝e紡鏈嶅姟鍣�
+        String spkStr = "screen.touch";//浜у搧spk
+//        String macStr = "AA00000000000100";//璁惧鍞竴MAC鍦板潃
+        String macStr = editText.getText().toString();//璁惧鍞竴MAC鍦板潃
+//        String secret = "e186beeb7974998e";//閫氳繃spk鍜宮ac鎻愪氦浜戠璁よ瘉鍚庡垎閰嶇殑
+
+        String mac_key = stringToMD5(stringToMD5(macStr + secret));
+        String versionString = "HDL_V1.0.1";//
+        String time = String.valueOf(System.currentTimeMillis());
+        HDLLinkConfig.getInstance().getDeviceInfoBean().setDeviceMAC(macStr);
+//        HDLLinkConfig.getInstance().setCurrentGateway(infoBean);
+
+        //1.璁剧疆璁よ瘉淇℃伅
+        AuthenticateRequest.RequestBean requestBean = new AuthenticateRequest.RequestBean();
+        requestBean.setMAC(macStr);
+        requestBean.setSupplier("JINMAOYUN");
+        requestBean.setFirmwareVersion(versionString);
+        requestBean.setHardwareModel("1956F");
+//        HDLLinkConfig.getInstance().setRequestBean(requestBean);
+
+        AuthenticateRequest.AuthBean authbean = new AuthenticateRequest.AuthBean();
+        authbean.setSpk(spkStr);
+        authbean.setMACKey(mac_key);
+        authbean.setRequest(requestBean);
+        HDLLinkConfig.getInstance().setAuthBean(authbean);
+
+        //HDLLinkConfig.getInstance().getDeviceInfoBean()杩欎釜鍒濆鍖栫殑鏃跺�欒鍏堣缃ソ
+        AuthenticateRequest request = new AuthenticateRequest(IdUtils.getUUId(), time, HDLLinkConfig.getInstance().getDeviceInfoBean(), authbean);
+        HDLLink.getInstance().startAuthenticateRequest(request, new HDLLinkCallBack() {
+            @Override
+            public void onError(HDLLinkException e) {
+                tv.setText("璁よ瘉澶辫触" + e.getCode());
+                responseTv.setText(e.getMsg());
+                Log.e(TAG, "onError: 璁よ瘉澶辫触 " + e.getCode());
+            }
+
+            @RequiresApi(api = Build.VERSION_CODES.O)
+            @Override
+            public void onSuccess(String msg) {
+                tv.setText("璁よ瘉鎴愬姛");
+                responseTv.setText(msg.toString());
+                localSecret.setText("瀵嗛挜锛�" + HDLLinkConfig.getInstance().getLocalSecret());
+            }
+        });
+    }
+
+    public void UploadDeviceAuth(String mac, String result, String message, String auth_code) {
+        //灏嗚璇佺粨鏋滀笂鎶ョ粰缃戝叧
+        HDLLink.getInstance().UploadDeviceAuth(mac, result, message, auth_code, new HDLLinkCallBack() {
+            @Override
+            public void onSuccess(String s) {
+                tv.setText("涓婃姤缁撴灉鎴愬姛");
+                responseTv.setText(s.toString());
+            }
+
+            @Override
+            public void onError(HDLLinkException e) {
+                tv.setText("涓婃姤缁撴灉澶辫触");
+                responseTv.setText(e.getMsg());
+                Log.i(TAG, "onError: 涓婃姤缁撴灉澶辫触");
+            }
+        });
+    }
+
+
     @Override
     protected void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.activity_main);
         responseTv = findViewById(R.id.response_tv);
+        editText = findViewById(R.id.edittext);
+        localSecret = findViewById(R.id.local_secret);
         tv = findViewById(R.id.state_tv);
         rv = findViewById(R.id.rv);
         rv.setLayoutManager(new LinearLayoutManager(this));
 
+        selectnetwork();
         checkIfCertified();
-
+        initDeviceInfo();//鍒濆鍖�
         registerAllTopicsListener();
+        HDLLink.getInstance().setDeleteNetworkListener(new DeleteNetworkListener() {
+            @Override
+            public void onSuccess(Object msg) {
+                LogUtils.i("setDeleteNetworkListener onSucceed = " + msg);
+            }
+
+            @Override
+            public void onFailure() {
+                LogUtils.i("setDeleteNetworkListener onFailure");
+            }
+        });
 
         ActivityResultLauncher<String[]> launcher = registerForActivityResult(new ActivityResultContracts.RequestMultiplePermissions(), new ActivityResultCallback<Map<String, Boolean>>() {
             @Override
@@ -93,9 +250,11 @@
 
         launcher.launch(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.READ_EXTERNAL_STORAGE});
 
-        final List<DemoBean> beans = new ArrayList<>();
+        final List<DemoBean> beans = new ArrayList<DemoBean>();
+        beans.add(new DemoBean("鐢宠璁惧瀵嗛挜"));
         beans.add(new DemoBean("鍏ョ綉璁よ瘉"));
         beans.add(new DemoBean("鎼滅储鎸囧畾缃戝叧鏄惁鍦ㄧ嚎"));
+        beans.add(new DemoBean("涓婃姤oid鍒楄〃"));
         beans.add(new DemoBean("鑾峰彇鍔熻兘鍒楄〃"));
         beans.add(new DemoBean("鍔熻兘灞炴�ц鍙�"));
         beans.add(new DemoBean("璁惧鎺у埗"));
@@ -103,10 +262,11 @@
         beans.add(new DemoBean("鑾峰彇鍦烘櫙鍒楄〃"));
         beans.add(new DemoBean("鍦烘櫙鎺у埗"));
         beans.add(new DemoBean("璁惧鍔熻兘鍒楄〃"));
+        beans.add(new DemoBean("UDP鍙戦��"));
+        beans.add(new DemoBean("TCP鍙戦��"));
         beans.add(new DemoBean("UDP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�"));
         beans.add(new DemoBean("TCP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�"));
-        beans.add(new DemoBean("UDP鍙戦�侊紝涓嶅洖璋冧笉閲嶅彂"));
-        beans.add(new DemoBean("TCP鍙戦�侊紝涓嶅洖璋冧笉閲嶅彂"));
+        beans.add(new DemoBean("閫�缃�"));
         demoAdapter = new DemoAdapter(beans);
         rv.setAdapter(demoAdapter);
 
@@ -122,48 +282,49 @@
             public void onItemClick(@NonNull BaseQuickAdapter<?, ?> adapter, @NonNull View view, int position) {
                 switch (position) {
                     case 0:
+                        //鐢宠璁惧瀵嗛挜
+                        applyDeviceSecret();
+                        break;
+                    case 1:
                         //鍏ョ綉璁よ瘉
                         sendAuthenticateRequest();
                         break;
-                    case 1:
+                    case 2:
                         //鎼滅储缃戝叧
                         searchGatewayBroadcast();
                         break;
-                    case 2:
-                       //鑾峰彇鍔熻兘鍒楄〃
-                        getFunctionList();
-                        break;
                     case 3:
-                        //鍔熻兘灞炴�ц鍙�
-                       getFunctionAttribute();
+                        //涓婃姤oid鍒楄〃
+                        UploadOidList();
                         break;
                     case 4:
+                        //鑾峰彇鍔熻兘鍒楄〃
+                        getFunctionList();
+                        break;
+                    case 5:
+                        //鍔熻兘灞炴�ц鍙�
+                        getFunctionAttribute();
+                        break;
+                    case 6:
                         //璁惧鎺у埗
                         controlDecide();
                         break;
-                    case 5:
+                    case 7:
                         //璇诲彇鐘舵��
                         propertyRead();
                         break;
-                    case 6:
+                    case 8:
                         //鑾峰彇鍦烘櫙鍒楄〃
                         getSceneList();
                         break;
-                    case 7:
-                        //鑾峰彇鍦烘櫙鍒楄〃
+                    case 9:
+                        //鍦烘櫙鎺у埗
                         controlScene();
                         break;
-                    case 8:
+                    case 10:
                         //鍔熻兘鍒楄〃
                         startDevicesListActivity();
                         break;
-                    case 9:
-                        //UDP鍙戦��
-                        udpSendWithCallback();
-                        break;
-                    case 10:
-                        //TCP鍙戦��
-                        tcpSendWithCallback();
                     case 11:
                         //UDP鍙戦��
                         udpSend();
@@ -172,24 +333,38 @@
                         //TCP鍙戦��
                         tcpSend();
                         break;
+                    case 13:
+                        //UDP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�
+                        udpSendWithCallback();
+                        break;
+                    case 14:
+                        //TCP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�
+                        tcpSendWithCallback();
+                        break;
+                    case 15:
+                        //閫�缃�
+                        deleteNetwork();
+                        break;
                 }
             }
         });
     }
 
 
-
-
     public void showToast(String text) {
         Toast.makeText(this, text, Toast.LENGTH_SHORT).show();
+    }
+
+    void selectnetwork() {
+        HDLLink.getInstance().selectNetwork("wlan0");
     }
 
     /**
      * 妫�娴嬫槸鍚﹁璇佽繃
      */
-    void checkIfCertified(){
+    void checkIfCertified() {
         boolean isCertified = HDLLink.getInstance().checkIfCertified();
-        String mes = isCertified?"宸茬粡璁よ瘉杩�":"鏈璇�";
+        String mes = isCertified ? "宸茬粡璁よ瘉杩�" : "鏈璇�";
         showToast(mes);
         tv.setText(mes);
     }
@@ -197,11 +372,14 @@
     /**
      * 娉ㄥ唽鎵�鏈変富棰樻暟鎹殑鐩戝惉
      */
-    void registerAllTopicsListener(){
+    void registerAllTopicsListener() {
         allTopicsListener = new EventListener() {
             @Override
             public void onMessage(Object msg) {
-                LinkResponse response = (LinkResponse)msg;
+                LinkResponse response = (LinkResponse) msg;
+                if ("/user/all/custom/gateway/broadcast_reply".equals(response.getTopic())){
+                    localSecret.setText("瀵嗛挜锛�" + HDLLinkConfig.getInstance().getLocalSecret());
+                }
             }
         };
         HDLLink.getInstance().registerAllTopicsListener(allTopicsListener);
@@ -209,20 +387,21 @@
 
     /**
      * 澶勭悊鏀跺埌鐨勪富棰�
+     *
      * @param response
      */
-    private void handleLinkResponse(LinkResponse response){
+    private void handleLinkResponse(LinkResponse response) {
         //缃戝叧鎼滅储鍥炲
-        if(response.getTopic().contains("/user/all/custom/gateway/search_reply")){
+        if (response.getTopic().contains("/user/all/custom/gateway/search_reply")) {
             String data = response.getData();
             if (!TextUtils.isEmpty(data)) {
-                Log.i("handleLinkResponse", "data:"+data);
+                Log.i("handleLinkResponse", "data:" + data);
                 final BaseLocalResponse<GatewaySearchBean> bean = GsonConvert.getGson().fromJson(data, new TypeToken<BaseLocalResponse<GatewaySearchBean>>() {
                 }.getType());
                 GatewaySearchBean searchBean = bean.getObjects();
-                Log.i("handleLinkResponse", "GatewaySearchBean: "+searchBean.getGatewayId());
+                Log.i("handleLinkResponse", "GatewaySearchBean: " + searchBean.getGatewayId());
             }
-        }else{
+        } else {
             //鍏跺畠涓婚
 
         }
@@ -238,7 +417,6 @@
                 }.getType());
                 searchBean = response.getObjects();
             }
-
         }
         return searchBean;
     }
@@ -246,66 +424,10 @@
     /**
      * 绉婚櫎鎵�鏈変富棰樻暟鎹殑鐩戝惉
      */
-    void removeAllTopicsListener(){
+    void removeAllTopicsListener() {
         HDLLink.getInstance().removeAllTopicsListener(allTopicsListener);
     }
 
-    /**
-     * 鍏ョ綉璁よ瘉
-     */
-    void sendAuthenticateRequest(){
-        tv.setText("寮�濮嬪叆缃戣璇�...");
-        //璁よ瘉鎻愪氦鍙傛暟鍑嗗
-
-        String spkStr = "screen.mirror";//浜у搧spk
-        String macStr = "AA000000000000AC";//璁惧鍞竴MAC鍦板潃
-        String secret = "ee62124c151b737c";//閫氳繃spk鍜宮ac鎻愪氦浜戠璁よ瘉鍚庡垎閰嶇殑secret
-        String mac_key = stringToMD5(stringToMD5(macStr + secret));
-        String versionString = "HDL_V1.0.1";//
-        String time = String.valueOf(System.currentTimeMillis());
-
-        //1.璁剧疆璁よ瘉淇℃伅
-        AuthenticateRequest.RequestBean requestBean = new AuthenticateRequest.RequestBean();
-        requestBean.setMAC(macStr);
-        requestBean.setSupplier("raysgem");
-        requestBean.setFirmwareVersion(versionString);
-        requestBean.setHardwareModel("1956F");
-        AuthenticateRequest.AuthBean authbean = new AuthenticateRequest.AuthBean();
-        authbean.setSpk(spkStr);
-        authbean.setMACKey(mac_key);
-        authbean.setRequest(requestBean);
-
-        //2.璁剧疆璁惧淇℃伅
-        AuthenticateRequest.AuthenticateDeviceInfoBean infoBean = new AuthenticateRequest.AuthenticateDeviceInfoBean();
-        infoBean.setDeviceMAC(macStr);
-        infoBean.setIPMAC(macStr);
-        infoBean.setDeviceName("绾㈠瀹�");//璁惧鍚嶅瓧
-        infoBean.setDeviceModel("HDL");//
-        infoBean.setAccessMode("WIFI");
-        infoBean.setIPGateway("192.168.88.1");
-        infoBean.setIPAddress(IpUtils.getIP(this));
-
-        infoBean.setOID("010105000000FE08");
-        infoBean.setSid("010105000000FE08110100000000");
-//        infoBean.set
-        AuthenticateRequest.VersionBean[] versionBeans = new AuthenticateRequest.VersionBean[]{new AuthenticateRequest.VersionBean("FW", versionString), new AuthenticateRequest.VersionBean("HW", "1956F")};
-        infoBean.setVersions(versionBeans);
-        AuthenticateRequest request = new AuthenticateRequest(IdUtils.getUUId(), time, infoBean, authbean);
-        HDLLink.getInstance().startAuthenticateRequest(request, new HDLLinkCallBack() {
-            @Override
-            public void onError(HDLLinkException e) {
-                tv.setText("璁よ瘉澶辫触");
-                responseTv.setText(e.getMsg());
-                Log.i("TAG", "onError: 璁よ瘉澶辫触");
-            }
-
-            @Override
-            public void onSuccess(String msg) {
-                tv.setText("璁よ瘉鎴愬姛");
-                responseTv.setText(msg.toString());
-            }
-        });
-    }
 
     String stringToMD5(String text) {
         byte[] hash;
@@ -333,18 +455,20 @@
      * 濡傛灉宸茬粡璁よ瘉鍚庯紝鎼滅储鎸囧畾缃戝叧鏄惁鍦ㄧ嚎
      * 骞挎挱鎼滅储璁よ瘉杩囩殑缃戝叧鏄惁鍦ㄧ嚎
      */
-    void searchGatewayBroadcast(){
+    void searchGatewayBroadcast() {
         tv.setText("鎼滅储缃戝叧涓�...");
+        responseTv.setText("");
         HDLLink.getInstance().searchGatewayBroadcast(new HDLAuthSocket.SearchGatewayCallBack() {
             @Override
             public void onError(HDLLinkException e) {
                 tv.setText("缃戝叧涓嶅湪绾�");
                 responseTv.setText(e.getMsg());
             }
+
             @Override
             public void onSuccess(GatewaySearchBean gatewaySearchBean) {
                 tv.setText("缃戝叧鍦ㄧ嚎");
-                responseTv.setText("鎼滅储鎴愬姛 缃戝叧id锛�"+gatewaySearchBean.getGatewayId());
+                responseTv.setText("鎼滅储鎴愬姛 缃戝叧id锛�" + gatewaySearchBean.getGatewayId());
 //                                LogUtils.i("TAG", "onSuccess: 鎼滅储鎴愬姛锛�"+gatewaySearchBean.getGatewayId());
             }
         });
@@ -353,7 +477,7 @@
     /**
      * 鑾峰彇鍔熻兘鍒楄〃
      */
-    void getFunctionList(){
+    void getFunctionList() {
         tv.setText("鑾峰彇鍔熻兘鍒楄〃涓�...");
         responseTv.setText("");
         HDLLink.getInstance().getFunctionList(new HDLLinkCallBack() {
@@ -374,8 +498,9 @@
      * 鍔熻兘灞炴�ц鍙�
      * 鏀寔鎵归噺璇诲彇
      */
-    void getFunctionAttribute(){
+    void getFunctionAttribute() {
         tv.setText("鍔熻兘灞炴�ц鍙�");
+        responseTv.setText("");
         List<String> sids = new ArrayList<>();
         sids.add(testLightSid);
         HDLLink.getInstance().getFunctionAttribute(sids, new HDLLinkCallBack() {
@@ -395,8 +520,9 @@
      * 璇诲彇璁惧鐘舵��
      * 鏀寔鎵归噺璇诲彇
      */
-    void propertyRead(){
+    void propertyRead() {
         tv.setText("璇诲彇鐘舵�佷腑...");
+        responseTv.setText("");
         List<String> list = new ArrayList<>();
         list.add(testLightSid);//瑕佽鍙栬澶囩殑sid
         HDLLink.getInstance().propertyRead(list, new HDLLinkCallBack() {
@@ -405,6 +531,7 @@
                 tv.setText("璇诲彇鎴愬姛");
                 responseTv.setText(data);
             }
+
             @Override
             public void onError(HDLLinkException e) {
                 tv.setText("璇诲彇澶辫触");
@@ -417,14 +544,15 @@
      * 鎺у埗澶辫触
      * 鍥炲鍝嶅簲code涓�200 浠h〃鎵ц鎴愬姛
      */
-    void controlDecide(){
+    void controlDecide() {
         tv.setText("鎺у埗璁惧");
+        responseTv.setText("");
         isOn = !isOn;
         List<DeviceControlRequest> requestList = new ArrayList<>();
         DeviceControlRequest request = new DeviceControlRequest();
         request.setSid(testLightSid);
-        List<DeviceControlRequest.StatusBean>  statusBeanList= new ArrayList<>();
-        DeviceControlRequest.StatusBean bean =  new DeviceControlRequest.StatusBean();
+        List<DeviceControlRequest.StatusBean> statusBeanList = new ArrayList<>();
+        DeviceControlRequest.StatusBean bean = new DeviceControlRequest.StatusBean();
         bean.setKey("on_off");
         bean.setValue(isOn ? "on" : "off");
         statusBeanList.add(bean);
@@ -446,8 +574,9 @@
     /**
      * 鑾峰彇鍦烘櫙鍒楄〃
      */
-    void getSceneList(){
+    void getSceneList() {
         tv.setText("璇诲彇鍦烘櫙鍒楄〃");
+        responseTv.setText("");
         HDLLink.getInstance().getSceneList(new HDLLinkCallBack() {
             @Override
             public void onSuccess(String msg) {
@@ -463,21 +592,23 @@
 
     //鍦烘櫙鍒楄〃
     // {"id":"8a5eaa143ce943b987b577df5a66759b","time_stamp":"1637040217235","objects":[{"sid":"04010560D2C7170A0A0100000000","name":"鍥炲妯″紡","status":"off","group":"255","delay":"0","modify_time":"1634871490"},{"sid":"04010560D2C76E0A0A0100010000","name":"绂诲妯″紡","status":"off","group":"255","delay":"0","modify_time":"1634785823"}]}
+
     /**
      * 鎺у埗鍦烘櫙
      * 鎵ц鎴愬姛鐨勮瘽 鍝嶅簲code涓�200
      */
-    void controlScene(){
+    void controlScene() {
         tv.setText("鍦烘櫙鎺у埗");
+        responseTv.setText("");
         //鎺у埗鍦烘櫙sid鍒楄〃锛屾敮鎸佹壒閲忔帶鍒�
         List<String> sids = new ArrayList<>();
         isOn = !isOn;
-        if(isOn){
+        if (isOn) {
             sids.add("04010560D2C7170A0A0100000000");
-        }else{
+        } else {
             sids.add("04010560D2C76E0A0A0100010000");
         }
-        HDLLink.getInstance().controlScene(sids,new HDLLinkCallBack() {
+        HDLLink.getInstance().controlScene(sids, new HDLLinkCallBack() {
             @Override
             public void onSuccess(String msg) {
                 responseTv.setText(msg);
@@ -491,74 +622,146 @@
     }
 
 
-    void startDevicesListActivity(){
+    void startDevicesListActivity() {
         Intent intent = new Intent(this, DevicesListActivity.class);
         startActivity(intent);
-    }
-
-    /**
-     * TCP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�
-     */
-    private void tcpSendWithCallback() {
-        String time = String.valueOf(System.currentTimeMillis());
-        JsonObject jsonObject = new JsonObject();
-        jsonObject.addProperty("id", IdUtils.getUUId());
-        jsonObject.addProperty("time_stamp", time);
-        HDLLink.getInstance().tcpSendMsg(TopicConstant.GATEWAY_SEARCH, jsonObject.toString(), new HDLLinkCallBack() {
-            @Override
-            public void onSuccess(String data) {
-                responseTv.setText(data);
-            }
-
-            @Override
-            public void onError(HDLLinkException e) {
-                responseTv.setText(e.getMsg());
-            }
-        });
-    }
-
-    /**
-     * UDP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�
-     */
-    private void udpSendWithCallback() {
-        String time = String.valueOf(System.currentTimeMillis());
-        JsonObject jsonObject = new JsonObject();
-        jsonObject.addProperty("id", IdUtils.getUUId());
-        jsonObject.addProperty("time_stamp", time);
-        HDLLink.getInstance().udpSendMsg(TopicConstant.GATEWAY_SEARCH, jsonObject.toString(), new HDLLinkResponseCallBack() {
-            @Override
-            public void onSuccess(LinkResponse linkResponse) {
-                if(linkResponse != null){
-                    responseTv.setText(linkResponse.getData());
-                }
-            }
-
-            @Override
-            public void onError(HDLLinkException e) {
-                responseTv.setText(e.getMsg());
-            }
-        });
     }
 
     /**
      * TCP鍙戦�� 鍙彂涓�娆★紝涓嶇洃鍚洖澶嶏紝涓嶉噸鍙�
      */
     private void tcpSend() {
-        String time = String.valueOf(System.currentTimeMillis());
-        JsonObject jsonObject = new JsonObject();
-        jsonObject.addProperty("id", IdUtils.getUUId());
-        jsonObject.addProperty("time_stamp", time);
-        HDLLink.getInstance().tcpSendMsg(TopicConstant.GATEWAY_SEARCH, jsonObject.toString());
+        tv.setText("TCP鍙戦�� 鍙彂涓�娆★紝涓嶇洃鍚洖澶嶏紝涓嶉噸鍙�");
+        responseTv.setText("");
+        String propertyDownTopic = String.format(TopicConstant.PROPERTY_DOWN, HDLLinkConfig.getInstance().getGatewayId());
+        String bodyStr = getPropertyDownBodyStr();
+        HDLLink.getInstance().tcpSendMsg(propertyDownTopic, bodyStr);
     }
 
     /**
-     * 鍙彂涓�娆★紝涓嶇洃鍚洖澶嶏紝涓嶉噸鍙�
+     * UDP鍙彂涓�娆★紝涓嶇洃鍚洖澶嶏紝涓嶉噸鍙�
      */
     private void udpSend() {
+        tv.setText("UDP鍙戦�� 鍙彂涓�娆★紝涓嶇洃鍚洖澶嶏紝涓嶉噸鍙�");
+        responseTv.setText("");
+        String propertyDownTopic = String.format(TopicConstant.PROPERTY_DOWN, HDLLinkConfig.getInstance().getGatewayId());
+        String bodyStr = getPropertyDownBodyStr();
+        HDLLink.getInstance().udpSendMsg(propertyDownTopic, bodyStr);
+    }
+
+    private String getPropertyDownBodyStr() {
+        isOn = !isOn;
+        List<DeviceControlRequest> requestList = new ArrayList<>();
+        DeviceControlRequest request = new DeviceControlRequest();
+        request.setSid(testLightSid);
+        List<DeviceControlRequest.StatusBean> statusBeanList = new ArrayList<>();
+        DeviceControlRequest.StatusBean bean = new DeviceControlRequest.StatusBean();
+        bean.setKey("on_off");
+        bean.setValue(isOn ? "on" : "off");
+        statusBeanList.add(bean);
+        request.setStatus(statusBeanList);
+        requestList.add(request);
         String time = String.valueOf(System.currentTimeMillis());
-        JsonObject jsonObject = new JsonObject();
-        jsonObject.addProperty("id", IdUtils.getUUId());
-        jsonObject.addProperty("time_stamp", time);
-        HDLLink.getInstance().udpSendMsg(TopicConstant.GATEWAY_SEARCH, jsonObject.toString());
+
+        final BaseLocalResponse<List<DeviceControlRequest>> data = new BaseLocalResponse<>();
+        data.setId(IdUtils.getUUId());
+        data.setTime_stamp(time);
+        data.setObjects(requestList);
+
+        return GsonConvert.getGson().toJson(data);
+    }
+
+    /**
+     * UDP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�
+     */
+    private void udpSendWithCallback() {
+        tv.setText("UDP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�");
+        responseTv.setText("");
+        String propertyDownTopic = String.format(TopicConstant.PROPERTY_DOWN, HDLLinkConfig.getInstance().getGatewayId());
+        String bodyStr = getPropertyDownBodyStr();
+        HDLLink.getInstance().udpSendMsg(propertyDownTopic, bodyStr, new HDLLinkResponseCallBack() {
+            @Override
+            public void onSuccess(LinkResponse msg) {
+                Log.i("udpSendWithCallback", "udpSendWithCallback");
+                responseTv.setText(GsonConvert.getGson().toJson(msg));
+            }
+
+            @Override
+            public void onError(HDLLinkException e) {
+                responseTv.setText(e.getMsg());
+            }
+        });
+    }
+
+    /**
+     * TCP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�
+     */
+    private void tcpSendWithCallback() {
+        tv.setText("TCP鍙戦�侊紝鐩戝惉涓婚鍥炲锛屽甫閲嶅彂甯﹀洖璋�");
+        responseTv.setText("");
+        String propertyDownTopic = String.format(TopicConstant.PROPERTY_DOWN, HDLLinkConfig.getInstance().getGatewayId());
+        String bodyStr = getPropertyDownBodyStr();
+        HDLLink.getInstance().tcpSendMsg(propertyDownTopic, bodyStr, new HDLLinkCallBack() {
+            @Override
+            public void onSuccess(String msg) {
+                Log.i("tcpSendWithCallback", "tcpSendWithCallback");
+                responseTv.setText(msg);
+            }
+
+            @Override
+            public void onError(HDLLinkException e) {
+                responseTv.setText(e.getMsg());
+            }
+        });
+    }
+
+    private void deleteNetwork() {
+        tv.setText("閫�缃�");
+        responseTv.setText("");
+        String oid = HDLLinkConfig.getInstance().getDeviceInfoBean().getOID();
+        HDLLink.getInstance().deleteNetwork(oid, false, new HDLLinkCallBack() {
+            @Override
+            public void onSuccess(String msg) {
+                responseTv.setText(msg);
+                //閫�缃戞垚鍔燂紝鍒犻櫎鏁版嵁
+            }
+
+            @Override
+            public void onError(HDLLinkException e) {
+                responseTv.setText(e.getMsg());
+            }
+        });
+    }
+
+    /**
+     * 涓婃姤oid鍒楄〃
+     */
+    private void UploadOidList() {
+        tv.setText("涓婃姤oid鍒楄〃...");
+        responseTv.setText("");
+
+        //1.璁剧疆璁惧淇℃伅
+        AuthenticateRequest.AuthenticateDeviceInfoBean authenticateDeviceInfoBean = HDLLinkConfig.getInstance().getDeviceInfoBean();
+
+        ListUploadRequest request = new ListUploadRequest();
+        request.setOid(authenticateDeviceInfoBean.getOID());
+        request.setDevice_name(authenticateDeviceInfoBean.getDeviceName());
+        request.setDevice_model(authenticateDeviceInfoBean.getDeviceModel());
+        request.setDevice_mac(authenticateDeviceInfoBean.getDeviceMAC());
+        request.setSrc("LINK");//鏉ヨ嚜鍝釜椹卞姩锛屽Link璁惧娌℃湁鍒欏~"LINK"
+        request.setFrom(authenticateDeviceInfoBean.getOID());//鏉ヨ嚜鍝釜缃戝叧锛屽鏋滄椂Link缃戠粶璁惧锛屽垯濉嚜韬玱id锛涘鏋滄槸椹卞姩鍒欎笉闇�瑕佹瀛楁
+
+        HDLLink.getInstance().UploadOidList(request, new HDLLinkCallBack() {
+            @Override
+            public void onError(HDLLinkException error) {
+                tv.setText(error.getMsg());
+            }
+
+            @Override
+            public void onSuccess(String data) {
+                tv.setText("涓婃姤oid鍒楄〃鎴愬姛");
+                responseTv.setText(data);
+            }
+        });
     }
 }
\ No newline at end of file

--
Gitblit v1.8.0