黄学彪
2020-12-17 9f326f4000847e6167d8166fa2f6a66f53cb3734
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
using System;
using System.Collections.Generic;
using System.Text;
using ZigBee.Device;
 
namespace Shared.Phone.UserCenter.HideOption
{
    /// <summary>
    /// 隐匿功能的主界面
    /// </summary>
    public class HideOptionMainForm : EditorCommonForm
    {
        #region ■ 变量声明___________________________
 
        /// <summary>
        /// 列表控件
        /// </summary>
        private VerticalListRefreshControl listView = null;
 
        #endregion
 
        #region ■ 初始化_____________________________
 
        /// <summary>
        /// 画面显示(底层会固定调用此方法,借以完成画面创建)
        /// </summary>
        public void ShowForm()
        {
            //设置头部信息
            base.SetTitleText("调试菜单界面");
 
            listView = new VerticalListRefreshControl(23);
            listView.BackgroundColor = UserCenterColor.Current.White;
            listView.Height = bodyFrameLayout.Height;
            bodyFrameLayout.AddChidren(listView);
            listView.BeginHeaderRefreshingAction += () =>
            {
                //初始化中部信息
                this.InitMiddleFrame();
                listView.EndHeaderRefreshing();
            };
 
            //初始化中部信息
            this.InitMiddleFrame();
 
            if (HdlUserCenterResourse.HideOption.StartDebugApp == 1)
            {
                //开启调试时,不允许关闭这个界面
                this.BackButtonClickEvent += (sender) =>
                {
                    return;
                };
            }
        }
 
        /// <summary>
        /// 初始化中部信息
        /// </summary>
        private void InitMiddleFrame()
        {
            listView.RemoveAll();
 
            var rowTemp = this.AddNormalRowControl(string.Empty, 400, string.Empty, 400);
            var btnTemp = new NormalViewControl(600, 100, true);
            btnTemp.Text = "一般信息部分";
            btnTemp.Gravity = Gravity.Center;
            btnTemp.TextSize = 16;
            btnTemp.IsBold = true;
            btnTemp.TextAlignment = TextAlignment.Center;
            rowTemp.AddChidren(btnTemp);
 
            this.AddNormalRowControl("当前身份", 400, HdlUserCenterResourse.ResidenceOption.AuthorityText, 400);
 
            //this.AddTopButtomRowControl("住宅ID", 400, Common.Config.Instance.Home.Id, 900);
 
            //this.AddTopButtomRowControl("账号GUID", 400, string.IsNullOrEmpty(Common.Config.Instance.Guid) == true ? Common.Config.Instance.Home.MainUserDistributedMark : Common.Config.Instance.Guid, 900);
 
            this.AddNormalRowControl("住宅分享", 400, Common.Config.Instance.Home.IsOtherShare == true ? "是" : "否", 400);
 
            this.AddNormalRowControl("账号类型", 400, Common.Config.Instance.Home.AccountType.ToString(), 400);
 
            this.AddNormalRowControl("远程连接", 400, ZigBee.Device.ZbGateway.IsRemote == true ? "是" : "否", 400);
 
            this.AddNormalRowControl("拥有远程权限", 400, Common.Config.Instance.Home.IsRemoteControl == true ? "是" : "否", 400);
 
            this.AddNormalRowControl("WIFI变量", 400, Shared.Application.IsWifi == true ? "true" : "false", 400);
 
            rowTemp = this.AddNormalRowControl(string.Empty, 400, string.Empty, 400);
            btnTemp = new NormalViewControl(600, 100, true);
            btnTemp.Text = "链接调试部分";
            btnTemp.Gravity = Gravity.Center;
            btnTemp.TextSize = 16;
            btnTemp.IsBold = true;
            btnTemp.TextAlignment = TextAlignment.Center;
            rowTemp.AddChidren(btnTemp);
 
            this.AddNormalRowControl("手机获取的IP", 600, new Shared.Net.NetWiFi().BroadcastIpAddress.ToString(), 600);
 
            if (ZigBee.Common.Application.FindGateWaySocket.udpClient == null)
            {
                this.AddNormalRowControl("Socket链接", 400, "未初始化", 400);
            }
            else
            {
                this.AddNormalRowControl("Socket链接", 400, "已初始化", 400);
            }
 
            int count = ZbGateway.GateWayList.Count;
            var row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.UseClickStatu = false;
            row1.AddLeftCaption("广播到的网关", 400);
            if (count > 0)
            {
                row1.UseClickStatu = true;
                row1.AddRightArrow();
                row1.ButtonClickEvent += (sender, e) =>
                {
                    var form = new HideOptionGatewayListForm();
                    form.AddForm(2);
                };
            }
            row1.AddMostRightView(count + "个", 400);
            row1.AddBottomLine();
 
            //检测能否广播得到网关
            this.AddCheckReceviceGatewayRow();
 
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("收集发送和接收的数据", 600);
            row1.AddBottomLine();
            var btnSwitchLog = row1.AddMostRightSwitchIcon();
            btnSwitchLog.ButtonClickEvent += (sender, e) =>
            {
                if (btnSwitchLog.IsSelected == false)
                {
                    this.ShowMassage(ShowMsgType.Confirm, "是否打开记录发送及接收数据的记录?", () =>
                    {
                        btnSwitchLog.IsSelected = true;
                        HdlFileLogic.Current.DeleteFile(HdlFileNameResourse.SendAndReceveDataLog);
                        HdlUserCenterResourse.HideOption.WriteSendAndReceveDataToFile = 1;
                    });
                }
                else
                {
                    HdlUserCenterResourse.HideOption.WriteSendAndReceveDataToFile = 0;
                    btnSwitchLog.IsSelected = false;
                    var txtvalue = HdlFileLogic.Current.ReadFileTextContent(HdlFileNameResourse.SendAndReceveDataLog);
                    if (txtvalue != null)
                    {
                        var form = new HideOptionFileContentForm();
                        form.AddForm(string.Empty);
 
                        form.SetTextContent(txtvalue);
                    }
                }
            };
 
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("SocketReceive", 600);
            row1.AddBottomLine();
            var btnSocketReceiveLog = row1.AddMostRightSwitchIcon();
            btnSocketReceiveLog.ButtonClickEvent += (sender, e) =>
            {
                if (btnSocketReceiveLog.IsSelected == false)
                {
                    this.ShowMassage(ShowMsgType.Confirm, "是否打开记录SocketReceive的记录?", () =>
                    {
                        btnSocketReceiveLog.IsSelected = true;
                        HdlFileLogic.Current.DeleteFile(HdlFileNameResourse.SocketReceiveDataLog);
                        HdlUserCenterResourse.HideOption.WriteSocketReceiveDataToFile = 1;
                    });
                }
                else
                {
                    HdlUserCenterResourse.HideOption.WriteSocketReceiveDataToFile = 0;
                    btnSocketReceiveLog.IsSelected = false;
                    var txtvalue = HdlFileLogic.Current.ReadFileTextContent(HdlFileNameResourse.SocketReceiveDataLog);
                    if (txtvalue != null)
                    {
                        var form = new HideOptionFileContentForm();
                        form.AddForm(string.Empty);
 
                        form.SetTextContent(txtvalue);
                    }
                }
            };
 
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("重新初始化Socket", 600);
            row1.AddRightArrow();
            row1.AddBottomLine();
            row1.ButtonClickEvent += (sender, e) =>
            {
                this.ShowMassage(ShowMsgType.Confirm, "是否重新初始化Socket对象?", () =>
                {
                    ZigBee.Common.Application.FindGateWaySocket.Stop();
                    ZigBee.Common.Application.FindGateWaySocket.Start();
                    this.ShowMassage(ShowMsgType.Tip, "初始化完成");
                });
            };
 
            rowTemp = this.AddNormalRowControl(string.Empty, 400, string.Empty, 400);
            btnTemp = new NormalViewControl(600, 100, true);
            btnTemp.Text = "查看缓存部分";
            btnTemp.Gravity = Gravity.Center;
            btnTemp.TextSize = 16;
            btnTemp.IsBold = true;
            btnTemp.TextAlignment = TextAlignment.Center;
            rowTemp.AddChidren(btnTemp);
 
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("查看缓存文件", 500);
            row1.AddRightArrow();
            row1.AddBottomLine();
            row1.ButtonClickEvent += (sender, e) =>
            {
                var form = new HideOptionDirectoryListForm();
                form.AddForm();
            };
 
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("设备缓存变量", 500);
            row1.AddRightArrow();
            row1.AddBottomLine();
            row1.ButtonClickEvent += (sender, e) =>
            {
                var form = new HideOptionMemoryListDeviceForm();
                form.AddForm();
            };
 
            rowTemp = this.AddNormalRowControl(string.Empty, 400, string.Empty, 400);
            btnTemp = new NormalViewControl(600, 100, true);
            btnTemp.Text = "其他部分";
            btnTemp.Gravity = Gravity.Center;
            btnTemp.TextSize = 16;
            btnTemp.IsBold = true;
            btnTemp.TextAlignment = TextAlignment.Center;
            rowTemp.AddChidren(btnTemp);
 
            //开启调试功能
            if (HdlUserCenterResourse.HideOption.StartDebugApp == 1)
            {
                row1 = new FrameRowControl(listView.rowSpace / 2);
                listView.AddChidren(row1);
                row1.AddLeftCaption("成员列表", 500);
                row1.AddRightArrow();
                row1.AddBottomLine();
                row1.ButtonClickEvent += (sender, e) =>
                {
                    var form = new Member.MemberListForm();
                    form.AddForm();
                };
 
                row1 = new FrameRowControl(listView.rowSpace / 2);
                listView.AddChidren(row1);
                row1.AddLeftCaption("备份列表", 500);
                row1.AddRightArrow();
                row1.AddBottomLine();
                row1.ButtonClickEvent += (sender, e) =>
                {
                    var form = new HdlBackup.HdlBackupListForm();
                    form.AddForm();
                };
            }
 
            row1 = new FrameRowControl(listView.rowSpace / 2);
            row1.UseClickStatu = false;
            listView.AddChidren(row1);
            row1.AddLeftCaption("记录定位", 500);
            row1.AddBottomLine();
            var btnGbsSwitch = row1.AddMostRightSwitchIcon();
            btnGbsSwitch.ButtonClickEvent += (sender, e) =>
            {
                if (btnGbsSwitch.IsSelected == true)
                {
                    btnGbsSwitch.IsSelected = false;
                    HdlUserCenterResourse.HideOption.WriteGpsPoint = 0;
                    return;
                }
                this.ShowDialogInputForm("????", string.Empty, "请输入识别码", (contr, value) =>
                {
                    if (value == "542397")
                    {
                        HdlUserCenterResourse.HideOption.WriteGpsPoint = 1;
                        btnGbsSwitch.IsSelected = true;
                    }
                    contr.CloseDialog();
                });
            };
 
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("使用旧的设备获取方式", 600);
            row1.AddBottomLine();
            var btnSwitchDeviceMethord = row1.AddMostRightSwitchIcon();
            btnSwitchDeviceMethord.IsSelected = HdlUserCenterResourse.HideOption.UseOldSearchDeviceMethord == 1;
            btnSwitchDeviceMethord.ButtonClickEvent += (sender, e) =>
            {
                btnSwitchDeviceMethord.IsSelected = !btnSwitchDeviceMethord.IsSelected;
                HdlUserCenterResourse.HideOption.UseOldSearchDeviceMethord = btnSwitchDeviceMethord.IsSelected == true ? 1 : 0;
            };
 
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("重置导入标识", 500);
            row1.AddRightArrow();
            row1.AddBottomLine();
            row1.ButtonClickEvent += (sender, e) =>
            {
                this.ShowMassage(ShowMsgType.Confirm, "是否重置这个住宅的导入标识?\r\n重置之后可以再次导入网关", () =>
                {
                    Common.Config.Instance.Home.SendTemplateSuccess = false;
                    Common.Config.Instance.Home.Save();
                    this.ShowMassage(ShowMsgType.Tip, "重置完成");
                });
            };
 
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("上传Log", 500);
            row1.AddRightArrow();
            row1.ButtonClickEvent += (sender, e) =>
            {
                this.ShowMassage(ShowMsgType.Confirm, "是否上传Log文件", () =>
                {
                    HdlThreadLogic.Current.RunThread(() =>
                    {
                        HdlBackupLogic.Current.UpLoadLogBackup();
                    });
                });
            };
 
            listView.AdjustRealHeight(Application.GetRealHeight(23));
        }
 
        /// <summary>
        /// 添加行
        /// </summary>
        /// <param name="caption"></param>
        /// <param name="width1"></param>
        /// <param name="viewText"></param>
        /// <param name="width2"></param>
        private FrameRowControl AddNormalRowControl(string caption, int width1, string viewText, int width2)
        {
            var row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption(caption, width1);
            row1.AddMostRightView(viewText, width2);
            row1.AddBottomLine();
            row1.UseClickStatu = false;
 
            return row1;
        }
 
        /// <summary>
        /// 添加行
        /// </summary>
        /// <param name="caption"></param>
        /// <param name="width1"></param>
        /// <param name="viewText"></param>
        /// <param name="width2"></param>
        private FrameRowControl AddTopButtomRowControl(string caption, int width1, string viewText, int width2)
        {
            var row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddTopView(caption, width1);
            row1.AddBottomView(viewText, width2);
            row1.AddBottomLine();
            row1.UseClickStatu = false;
 
            return row1;
        }
 
        /// <summary>
        /// 检测能否广播得到网关
        /// </summary>
        private void AddCheckReceviceGatewayRow()
        {
            var row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("检测能否广播得到网关", 700);
            row1.AddRightArrow();
            row1.AddBottomLine();
            var btnCount = row1.AddMostRightView("", 400);
            row1.ButtonClickEvent += (sender, e) =>
            {
                int waiteCount = 5;
                this.ShowMassage(ShowMsgType.Confirm, "该操作将等待" + waiteCount + "秒,是否继续?", () =>
                {
                    HdlGatewayResourse.DicReceiveGatewayTest = new Dictionary<string, ZbGateway>();
                    HdlUserCenterResourse.HideOption.CheckCanReceiveGateway = 1;
                    HdlThreadLogic.Current.RunThread(() =>
                    {
                        while (waiteCount > 0)
                        {
                            HdlThreadLogic.Current.RunMain(() =>
                            {
                                btnCount.Text = "请等待" + waiteCount + "秒";
                            });
                            System.Threading.Thread.Sleep(1000);
                            waiteCount--;
                        }
                        HdlThreadLogic.Current.RunMain(() =>
                        {
                            btnCount.Text = string.Empty;
                        });
                        //结束
                        HdlUserCenterResourse.HideOption.CheckCanReceiveGateway = 0;
                        if (HdlGatewayResourse.DicReceiveGatewayTest.Count == 0)
                        {
                            this.ShowMassage(ShowMsgType.Normal, "抱歉,没有广播到任何网关");
                            return;
                        }
                        HdlThreadLogic.Current.RunMain(() =>
                        {
                            var form = new HideOptionGatewayListForm();
                            form.AddForm(3);
                        });
                    });
                });
            };
        }
 
        #endregion
 
        #region ■ 界面关闭___________________________
 
        /// <summary>
        /// 界面关闭
        /// </summary>
        public override void CloseFormBefore()
        {
            HdlGatewayResourse.DicReceiveGatewayTest = null;
            HdlUserCenterResourse.HideOption.CheckCanReceiveGateway = 0;
            HdlUserCenterResourse.HideOption.WriteSendAndReceveDataToFile = 0;
            HdlUserCenterResourse.HideOption.WriteSocketReceiveDataToFile = 0;
 
            base.CloseFormBefore();
        }
 
        #endregion
    }
}