HDL Home App 第二版本 旧平台金堂用 正在使用
黄学彪
2019-10-10 2ed75b8b337048e5d75e6d9ec8307633134f02fd
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
using Shared.Common;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using ZigBee.Device;
 
namespace Shared.Phone.UserCenter.HdlBackup
{
    /// <summary>
    /// 网关备份的界面
    /// </summary>
    public class HdlGatewayBackUpForm : EditorCommonForm
    {
        #region ■ 变量声明___________________________
 
        /// <summary>
        /// 列表控件
        /// </summary>
        private VerticalScrolViewLayout listView = null;
        /// <summary>
        /// 网关对象(这个是真实物理网关对象)
        /// </summary>
        private ZbGateway zbRealGateway = null;
 
        #endregion
 
        #region ■ 初始化_____________________________
 
        /// <summary>
        /// 画面显示(底层会固定调用此方法,借以完成画面创建)
        /// </summary>
        /// <param name="i_zbGateway"></param>
        public void ShowForm(ZbGateway i_zbGateway)
        {
            this.zbRealGateway = i_zbGateway;
 
            //设置标题信息
            base.SetTitleText(Language.StringByID(R.MyInternationalizationString.uBackupAndRecover));
 
            //右上添加按钮
            var btnTopIcon = new MostRightIconControl(69, 69);
            btnTopIcon.UnSelectedImagePath = "Item/Add.png";
            topFrameLayout.AddChidren(btnTopIcon);
            btnTopIcon.InitControl();
            btnTopIcon.ButtonClickEvent += (sender, e) =>
            {
                //显示添加备考名画面
                //this.ShowAddBackupForm();
            };
 
            //初始化中部控件
            //this.InitMiddleFrame();
        }
 
        ///// <summary>
        ///// 初始化中部控件
        ///// </summary>
        //private void InitMiddleFrame()
        //{
        //    //清空bodyFrame
        //    this.ClearBodyFrame();
 
        //    listView = new VerticalScrolViewLayout();
        //    listView.Height = bodyFrameLayout.Height;
        //    bodyFrameLayout.AddChidren(listView);
 
        //    HdlThreadLogic.Current.Run(() =>
        //    {
        //        //从云端获取数据
        //        this.SetBackupInfoToForm();
        //    });
        //}
 
        #endregion
 
        //#region ■ 从云端获取数据_____________________
 
        ///// <summary>
        ///// 从云端获取数据
        ///// </summary>
        //private async void SetBackupInfoToForm()
        //{
        //    //进度条
        //    this.ShowProgressBar();
 
        //    //从云端获取数据 
        //    var pageData = await HdlBackupLogic.Current.GetBackupListNameFromDB(2, Common.LocalGateway.Current.GetGatewayId(zbRealGateway));
        //    //关闭
        //    this.CloseProgressBar();
 
        //    if (pageData == null)
        //    {
        //        return;
        //    }
 
        //    Application.RunOnMainThread(() =>
        //    {
        //        if (listView != null)
        //        {
        //            listView.RemoveAll();
        //        }
        //    });
 
        //    foreach (BackupListNameInfo fileInfo in pageData)
        //    {
        //        Application.RunOnMainThread(() =>
        //        {
        //            if (this.Parent != null)
        //            {
        //                //添加备份行
        //                this.AddRowlayout(fileInfo);
        //            }
        //        });
        //    }
        //}
 
        //#endregion
 
        //#region ■ 添加备份行_________________________
 
        ///// <summary>
        ///// 添加备份行
        ///// </summary>
        ///// <param name="fileInfo"></param>
        //private void AddRowlayout(BackupListNameInfo fileInfo)
        //{
        //    //行
        //    var rowLayout = new StatuRowLayout(listView);
        //    //图标
        //    var btnPoint = new RowLeftIconView();
        //    btnPoint.SelectedImagePath = "Center/BackupSelected.png";
        //    btnPoint.UnSelectedImagePath = "Center/Backup.png";
        //    rowLayout.AddChidren(btnPoint);
 
        //    //备份名字
        //    var txtText = new RowCenterView();
        //    txtText.Text = fileInfo.BackupName;
        //    rowLayout.AddChidren(txtText);
        //    txtText.X -= ControlCommonResourse.PointXXLeft;
 
        //    //编辑备注名
        //    rowLayout.MouseUpEvent += (sender, e) =>
        //    {
        //        //显示编辑备考名画面
        //        this.ShowEditorBackupForm(fileInfo);
        //    };
 
        //    //下载图标
        //    var btnLoad = new MostRightEmptyView();
        //    //启用点亮功能
        //    btnLoad.UseClickStatu = true;
        //    btnLoad.UnSelectedImagePath = "Item/DownLoad.png";
        //    btnLoad.SelectedImagePath = "Item/DownLoadSelected.png";
        //    rowLayout.AddChidren(btnLoad, ChidrenBindMode.NotBind);
        //    //下载图标太右边不好看 
        //    btnLoad.X -= Application.GetRealWidth(50);
        //    btnLoad.MouseUpEventHandler += (sender, e) =>
        //    {
        //        //是否要下载并恢复数据?
        //        string msg = Language.StringByID(R.MyInternationalizationString.uDownLoadAndRecoverMsg);
        //        this.ShowConfirmMsg(msg, "LoadBackupInfo", fileInfo.Id);
        //    };
 
        //    //删除
        //    var btnDelete = new RowDeleteButton();
        //    rowLayout.AddRightView(btnDelete);
        //    btnDelete.MouseUpEventHandler += (sender, e) =>
        //    {
        //        //确定要删除文件吗?
        //        string msg = Language.StringByID(R.MyInternationalizationString.uDoDeleteFileMsg);
        //        this.ShowConfirmMsg(msg, "DeleteBackInfo", fileInfo.Id, ShowErrorMode.YES);
        //    };
        //}
 
        //#endregion
 
        //#region ■ 读取备份文档_______________________
 
        ///// <summary>
        ///// 读取备份文档
        ///// </summary>
        ///// <param name="BackupClassId"></param>
        //public void LoadBackupInfo(string BackupClassId)
        //{
        //    HdlThreadLogic.Current.Run(async () =>
        //    {
        //        //获取网关上面存在的全部文件
        //        var listFile = await this.GetGatewayFileFromGateway();
        //        if (listFile == null)
        //        {
        //            return;
        //        }
        //        //从云端获取备份的文件
        //        bool result = await HdlBackupLogic.Current.LoadGatewayBackupInfo(BackupClassId, zbRealGateway, listFile);
        //        if (result == false)
        //        {
        //            //网关恢复失败
        //            string msg2 = Language.StringByID(R.MyInternationalizationString.uGatewayFileRecoverFail);
        //            this.ShowNormalMsg(msg2);
        //            return;
        //        }
 
        //        Application.RunOnMainThread(() =>
        //        {
        //            //关闭自身
        //            this.CloseForm();
        //        });
 
        //        //网关恢复成功
        //        string msg = Language.StringByID(R.MyInternationalizationString.uGatewayFileRecoverSuccess);
        //        this.ShowNormalMsg(msg);
        //    });
        //}
 
        //#endregion
 
        //#region ■ 上传数据___________________________
 
        ///// <summary>
        ///// 上传数据
        ///// </summary>
        ///// <param name="backName"></param>
        //private async void UpLoadBackInfo(string backName)
        //{
        //    //展开进度条
        //    this.ShowProgressBar();
 
        //    //创建一个备份名字
        //    string backupClassId = await HdlBackupLogic.Current.CreatNewBackupNameToDB(backName, 2, Common.LocalGateway.Current.GetGatewayId(zbRealGateway));
        //    if (backupClassId == null)
        //    {
        //        //创建备份名字失败
        //        string msg = Language.StringByID(R.MyInternationalizationString.uCreatBackupNameFail);
        //        this.ShowErrorMsg(msg);
 
        //        //关闭进度条
        //        this.CloseProgressBar();
        //        return;
        //    }
        //    //添加附加情报:获取网关数据
        //    string appendText = Language.StringByID(R.MyInternationalizationString.uGetGatewayData);
        //    ProgressBar.SetAppendText(appendText);
 
        //    //这里是从网关获取备份文件:将网关文件存入到指定的路径下
        //    string directory = await this.SetGatewayFileInDirectory();
        //    //关闭进度条
        //    this.CloseProgressBar();
        //    if (directory == null)
        //    {
        //        //如果上传失败的话,就把它删除
        //        this.DeleteBackInfo(backupClassId, ShowErrorMode.NO);
        //        return;
        //    }
 
        //    //添加附加情报:上传数据
        //    appendText = Language.StringByID(R.MyInternationalizationString.uDataUpLoad);
        //    ProgressBar.SetAppendText(appendText);
 
        //    HdlThreadLogic.Current.Run(async () =>
        //    {
        //        //上传数据到云端
        //        directory = UserCenterLogic.CombinePath(directory);
        //        bool result = await HdlBackupLogic.Current.UpLoadBackupFileToDB(backupClassId, 2, directory);
        //        //清空附加情报
        //        ProgressBar.SetAppendText(string.Empty);
 
        //        if (result == false)
        //        {
        //            //文件上传失败
        //            string msg = Language.StringByID(R.MyInternationalizationString.uFileUpLoadFail);
        //            this.ShowErrorMsg(msg);
 
        //            //如果上传失败的话,就把它删除
        //            this.DeleteBackInfo(backupClassId, ShowErrorMode.NO);
 
        //            return;
        //        }
 
        //        //刷新画面
        //        this.SetBackupInfoToForm();
        //    });
        //}
 
        //#endregion
 
        //#region ■ 编辑备份名称_______________________
 
        ///// <summary>
        ///// 编辑备份名称
        ///// </summary>
        ///// <param name="BackupClassId"></param>
        ///// <param name="backName"></param>
        //private async void EditorBackInfo(string BackupClassId, string backName)
        //{
        //    //开启进度条
        //    this.ShowProgressBar();
 
        //    var Pra = new EditorBackUpNamePra();
        //    Pra.BackupClassId = BackupClassId;
        //    Pra.BackupName = backName;
        //    //获取控制主人账号的Token
        //    Pra.LoginAccessToken = UserCenterLogic.GetConnectMainToken();
 
        //    bool result = await UserCenterLogic.GetResultStatuByRequestHttps("App/UpdateHomeAppGatewayName", true, Pra);
        //    if (result == false)
        //    {
        //        //编辑备份名称失败
        //        string msg = Language.StringByID(R.MyInternationalizationString.uEditorBackupNameFail);
        //        this.ShowErrorMsg(msg);
        //        //关闭进度条
        //        this.CloseProgressBar();
        //        return;
        //    }
 
        //    this.SetBackupInfoToForm();
        //}
 
        //#endregion
 
        //#region ■ 删除备份文档_______________________
 
        ///// <summary>
        ///// 删除备份文档
        ///// </summary>
        ///// <param name="BackupClassId"></param>
        ///// <param name="showMode"></param>
        //public async void DeleteBackInfo(string BackupClassId, ShowErrorMode showMode = ShowErrorMode.YES)
        //{
        //    //进度条
        //    this.ShowProgressBar();
 
        //    bool success = await HdlBackupLogic.Current.DeleteDbBackupData(BackupClassId);
 
        //    //关闭进度条
        //    this.CloseProgressBar();
 
        //    if (success == false)
        //    {
        //        if (showMode == ShowErrorMode.YES)
        //        {
        //            //删除备份失败
        //            string msg = Language.StringByID(R.MyInternationalizationString.uDeleteBackupFail);
        //            this.ShowErrorMsg(msg);
        //        }
        //        return;
        //    }
 
        //    this.SetBackupInfoToForm();
        //}
 
        //#endregion
 
        //#region ■ 显示编辑备考名画面_________________
 
        ///// <summary>
        ///// 显示编辑备考名画面
        ///// </summary>
        ///// <param name="fileInfo"></param>
        ///// <returns></returns>
        //private void ShowEditorBackupForm(BackupListNameInfo fileInfo)
        //{
        //    //生成一个弹窗画面
        //    var dialogForm = new DialogInputFrameControl(this, DialogFrameMode.OnlyInput);
 
        //    //编辑备份
        //    dialogForm.SetTitleText(Language.StringByID(R.MyInternationalizationString.uEditorBackup));
        //    //请输入备注名称
        //    dialogForm.SetTipText(Language.StringByID(R.MyInternationalizationString.uPleaseInpuBackup));
        //    dialogForm.InputText = fileInfo.BackupName;
 
        //    //按下确认按钮
        //    dialogForm.ComfirmClickEvent += (() =>
        //    {
        //        string txtvalue = dialogForm.InputText;
        //        //检测备考名称
        //        if (this.CheckBackupName(txtvalue) == false)
        //        {
        //            return;
        //        }
 
        //        //画面关闭
        //        dialogForm.CloseDialog();
 
        //        //名字一样时,不处理
        //        if (txtvalue != fileInfo.BackupName)
        //        {
        //            //编辑备份名称
        //            this.EditorBackInfo(fileInfo.Id, txtvalue);
        //        }
        //    });
        //}
 
        ///// <summary>
        ///// 显示添加备考名画面
        ///// </summary>
        ///// <returns></returns>
        //private void ShowAddBackupForm()
        //{
        //    //生成一个弹窗画面
        //    var dialogForm = new DialogInputFrameControl(this, DialogFrameMode.OnlyInput);
 
        //    //添加备份
        //    dialogForm.SetTitleText(Language.StringByID(R.MyInternationalizationString.uAddBackup));
        //    //请输入备注名称
        //    dialogForm.SetTipText(Language.StringByID(R.MyInternationalizationString.uPleaseInpuBackup));
 
        //    //按下确认按钮
        //    dialogForm.ComfirmClickEvent += (() =>
        //    {
        //        string txtvalue = dialogForm.InputText;
        //        //检测备考名称
        //        if (this.CheckBackupName(txtvalue) == false)
        //        {
        //            return;
        //        }
 
        //        //画面关闭
        //        dialogForm.CloseDialog();
 
        //        //上传备份
        //        this.UpLoadBackInfo(txtvalue);
        //    });
        //}
 
        //#endregion
 
        //#region ■ 获取网关文件_______________________
 
        ///// <summary>
        ///// 将网关文件存入到指定的路径下
        ///// </summary>
        ///// <returns></returns>
        //private async Task<string> SetGatewayFileInDirectory()
        //{
        //    //上传网关备份文件到云端的临时【文件夹】
        //    string dir = System.IO.Path.Combine(DirNameResourse.LocalMemoryDirectory, DirNameResourse.GatewayBackupDirectory);
        //    Global.CreateEmptyDirectory(dir, true);
 
        //    //从网关获取它的文件
        //    var listFile = await this.GetGatewayFileFromGateway();
        //    if (listFile == null)
        //    {
        //        return null;
        //    }
 
        //    int timeOutCount = 0;
        //    bool receiving = false;
 
        //    string checkTopic = Common.LocalGateway.Current.GetGatewayId(zbRealGateway) + "/FileTransfer/DownloadFile";
        //    var listByteSource = new List<byte>();
        //    //接收数据
        //    Action<string, byte[]> action = (topic, dataContent) =>
        //    {
        //        string[] arry = topic.Split(new string[] { "/" }, StringSplitOptions.RemoveEmptyEntries);
        //        string checkValue = arry[0] + "/" + arry[1] + "/" + arry[2];
        //        if (arry.Length < 3 || checkValue != checkTopic)
        //        {
        //            return;
        //        }
        //        //刷新超时时间
        //        timeOutCount = 0;
        //        byte[] fileBytes = dataContent;
        //        if (fileBytes[5] != 1)
        //        {
        //            if (fileBytes.Length == 2056)
        //            {
        //                var tempBytes = new byte[2048];
        //                System.Array.Copy(fileBytes, 8, tempBytes, 0, 2048);
        //                listByteSource.AddRange(tempBytes);
        //            }
        //            else
        //            {
        //                var tempBytes = new byte[fileBytes.Length - 8];
        //                System.Array.Copy(fileBytes, 8, tempBytes, 0, tempBytes.Length);
        //                listByteSource.AddRange(tempBytes);
        //            }
        //        }
        //        else
        //        {
        //            var tempBytes = new byte[fileBytes.Length - 8];
        //            System.Array.Copy(fileBytes, 8, tempBytes, 0, tempBytes.Length);
        //            listByteSource.AddRange(tempBytes);
 
        //            string [] Arryfile = listFile[0].Split(new string[] { "/" }, StringSplitOptions.None);
        //            string fileName = Arryfile[Arryfile.Length - 1];
        //            //将输入写入本地的临时文件夹
        //            Global.WriteFileToDirectoryByBytes(dir, fileName, listByteSource.ToArray());
        //            listByteSource.Clear();
 
        //            //移除死循环内的指定目标
        //            listFile.RemoveAt(0);
        //            receiving = false;
        //        }
        //    };
        //    zbRealGateway.FileContentAction += action;
 
        //    //设置进度条的最大值
        //    this.SetProgressMax(listFile.Count);
 
        //    while (listFile.Count > 0)
        //    {
        //        timeOutCount++;
        //        if (timeOutCount == 150)
        //        {
        //            //30秒超时:响应超时,获取网关文件失败
        //            string msg = Language.StringByID(R.MyInternationalizationString.uResponseTimeoutsAndGetGatewayFileFail);
        //            this.ShowErrorMsg(msg);
        //            zbRealGateway.FileContentAction -= action;
        //            return null;
        //        }
 
        //        //接收中
        //        if (receiving == true)
        //        {
        //            await Task.Delay(200);
        //            continue;
        //        }
        //        receiving = true;
 
        //        string[] Arryfile = listFile[0].Split(new string[] { "/" }, StringSplitOptions.None);
        //        string fileName = Arryfile[Arryfile.Length - 1];
        //        //下载文件
        //        var saveFileName = await zbRealGateway.SetDownloadFileAsync(fileName);
        //        //检测网关返回的共通错误状态码
        //        var error = HdlCheckLogic.Current.CheckCommonErrorCode(saveFileName);
        //        if (error != null)
        //        {
        //            this.ShowMassage(error);
        //            zbRealGateway.FileContentAction -= action;
        //            return null;
        //        }
        //        if (saveFileName == null || saveFileName.setDownloadFileResponseData == null || saveFileName.setDownloadFileResponseData.Result != 0)
        //        {
        //            //获取网关文件失败
        //            string msg = Language.StringByID(R.MyInternationalizationString.uGetGatewayFileFail);
        //            this.ShowErrorMsg(msg);
        //            zbRealGateway.FileContentAction -= action;
        //            return null;
        //        }
        //        //设置进度值
        //        this.SetProgressValue(1);
        //    }
        //    zbRealGateway.FileContentAction -= action;
        //    action = null;
 
        //    return dir;
        //}
 
        ///// <summary>
        ///// 从网关获取它的文件
        ///// </summary>
        ///// <returns></returns>
        //private async Task<List<string>> GetGatewayFileFromGateway()
        //{
        //    var fileData = await zbRealGateway.FileTransferLsDirAsync();
        //    //检测网关返回的共通错误状态码
        //    string error = HdlCheckLogic.Current.CheckCommonErrorCode(fileData);
        //    if (error != null)
        //    {
        //        this.ShowErrorMsg(error);
        //        return null;
        //    }
 
        //    if (fileData == null || fileData.fileTransferLsDiResponseData == null || fileData.fileTransferLsDiResponseData.Result != 0)
        //    {
        //        //获取网关文件失败
        //        string msg = Language.StringByID(R.MyInternationalizationString.uGetGatewayFileFail);
        //        this.ShowErrorMsg(msg);
        //        return null;
        //    }
        //    var listFile = new List<string>();
        //    foreach (var filedata in fileData.fileTransferLsDiResponseData.Dir)
        //    {
        //        listFile.Add(filedata.File);
        //    }
        //    return listFile;
        //}
 
        //#endregion
 
        //#region ■ 一般方法___________________________
 
        ///// <summary>
        ///// 检测备考名称
        ///// </summary>
        ///// <param name="backName"></param>
        ///// <returns></returns>
        //private bool CheckBackupName(string backName)
        //{
        //    if (backName == string.Empty)
        //    {
        //        //请输入备注名称
        //        string msg = Language.StringByID(R.MyInternationalizationString.uPleaseInpuBackup);
        //        this.ShowErrorMsg(msg);
        //        return false;
        //    }
        //    return true;
        //}
        //#endregion
    }
}