JLChen
2020-06-04 6d55af8792cf8fbef0055e677b900fc352dba9a2
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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
using System;
using System.Collections.Generic;
 
namespace Shared.SimpleControl.Phone
{
    /// <summary>
    /// 后台中间界面
    /// </summary>
    public class SystemMiddle : FrameLayout
    {
        /// <summary>
        /// 记录当前选择的网关是哪个,在搜索设备的时候做记录
        /// </summary>
        public static string curGatewayMAC = "";
        public static string curGatewayIP = "";
        /// <summary>
        /// 中间界面
        /// </summary>
        public VerticalScrolViewLayout VerticalScrolViewMiddle = new VerticalScrolViewLayout () {
            Height = Application.GetRealHeight (846+90- UserMiddle.userMenuItemHeight),
            BackgroundColor = SkinStyle.Current.ViewColor
        };
 
        /// <summary>
        /// 底部
        /// </summary>
        Button AddSystemEquipmentButton = new Button () {
           Height = Application.GetRealHeight (90),
           TextID = R.MyInternationalizationString.AddSystemEquipment,
           TextAlignment = TextAlignment.Center,
           TextColor = SkinStyle.Current.TextColor1,
           BackgroundColor = SkinStyle.Current.MainColor
       };
 
        /// <summary>
        /// 初始化当前视图
        /// </summary>
        public void Init ()
        {
            RemoveAll ();
            VerticalScrolViewMiddle.BackgroundColor = SkinStyle.Current.ViewColor;
            AddChidren (VerticalScrolViewMiddle);
            ShowGateWayView ();
        }
        /// <summary>
        /// 底部的按键,搜索网关
        /// </summary>
        void InitBottomButton ()
        {
            var bottomView = new FrameLayout () {
                Y = Application.GetRealHeight (846 + 90 - UserMiddle.userMenuItemHeight),
                Height = Application.GetRealHeight (UserMiddle.userMenuItemHeight + 3),
                BackgroundColor = SkinStyle.Current.MainColor,
            };
            AddChidren (bottomView);
            bottomView.AddChidren (AddSystemEquipmentButton);
            AddSystemEquipmentButton.MouseUpEventHandler += (sender, e) => {
                MainPage.Loading.Start ();
                AddSystemEquipmentButton.Enable = false;
                new System.Threading.Thread (() => {
                    try {
                        #region 搜索设备
                        CommonPage.LocalPhoneFindDevice = true;
                        CommonPage.RandomHigh = (byte)new Random ().Next (255);
                        CommonPage.RandomLow = (byte)new Random ().Next (255);
                        CommonPage.GateWayList.Clear ();
                        CommonPage.FindGateway = true;
                        //如果两次都没有数据反馈,就不读取
                        int readCount = 2;
                        while (0 < readCount) {
                            readCount--;
                            System.IO.MemoryStream ms = new System.IO.MemoryStream ();
                            ms.WriteByte (CommonPage.RandomHigh);
                            ms.WriteByte (CommonPage.RandomLow);
 
                            List<Common> list = CommonPage.GateWayList;
 
                            int tempCount = list.Count;
                            string s = ";";
                            for (int i = 0; i < list.Count; i++) {
                                Common common = list [i];
                                if (s.Contains (";" + common.SubnetID.ToString () + ":" + common.DeviceID.ToString ()))
                                    continue;
                                s += common.SubnetID.ToString () + ":" + common.DeviceID.ToString () + ";";
                                ms.WriteByte (common.SubnetID);
                                ms.WriteByte (common.DeviceID);
                            }
                            Console.WriteLine ("搜索网关,搜索地址是:" + CommonPage.EndPoint.ToString () + "    " + CommonPage.GateWayList.Count);
                            Control control = new Control ();
                            control.Send (new Target () {
                                IPEndPoint = CommonPage.EndPoint,
                                Command = Command.ReadGateway,
                                SubnetID = 0xFF,
                                DeviceID = 0xFF,
                                AddData = ms.ToArray ()
                            }, SendCount.Zero, false);
 
                            control.Send (new Target () {
                                IPEndPoint = new System.Net.IPEndPoint (new Net.NetWiFi ().BroadcastIpAddress, 6000),
                                Command = Command.ReadGateway,
                                SubnetID = 0xFF,
                                DeviceID = 0xFF,
                                AddData = ms.ToArray ()
                            }, SendCount.Zero, false);
 
                            System.Threading.Thread.Sleep (800);
                            //如果数量不相等,就重置次数
                            if (tempCount != CommonPage.GateWayList.Count) {
                                readCount = 2;
                            }
                        }
                        CommonPage.FindGateway = false;
                        if (CommonPage.GateWayList.Count > 0) {
                            bool inLAN = false;
                            if (CommonPage.GateWayList.Find ((obj) => UserConfig.Instance.GatewayMAC == obj.MAC.Replace (".", "")) != null) {
                                inLAN = true;
                            }
                            if (inLAN) {
                                foreach (var gateway in CommonPage.GateWayList) {
                                    IO.FileUtils.SaveEquipmentMessage (gateway);
                                }
                            } else if (MainPage.LoginUser.AccountString == "464027401@qq.com") {
                                foreach (var gateway in CommonPage.GateWayList) {
                                    IO.FileUtils.SaveEquipmentMessage (gateway);
                                }
                            } else {
                                Application.RunOnMainThread (() => {
                                    new Alert (Language.StringByID (R.MyInternationalizationString.Tip),
                                               Language.StringByID (R.MyInternationalizationString.TipHasNotInListMAC),
                                               Language.StringByID (R.MyInternationalizationString.confirm)).Show ();
                                });
                            }
                        }
                        CommonPage.LocalPhoneFindDevice = false;
                        #endregion
                        Application.RunOnMainThread (() => {
                            ShowGateWayView ();
                        });
                    } catch (Exception ex) {
                        Console.WriteLine (ex.ToString ());
                    } finally {
                        System.Threading.Thread.Sleep (5000);
                        Application.RunOnMainThread (() => {
                            MainPage.Loading.Hide ();
                            AddSystemEquipmentButton.Enable = true;
                        });
                    }
                }) { IsBackground = true }.Start ();
            };
        }
 
        /// <summary>
        /// 显示出已经查找到的网关设备
        /// </summary>
        public void ShowGateWayView ()
        {
            VerticalScrolViewMiddle.RemoveAll ();
            AddChidren (AddSystemEquipmentButton);
            VerticalScrolViewMiddle.Height = Application.GetRealHeight (846);
            InitBottomButton ();
            bool firstInitWireless = true;
            bool firstInitMusic = true;
            bool firstInitOnePortBus = true;
            bool firstInitOfflintOnePortBus = true;
            bool firstInitRCU = true;
            try {
                List<string> filesList = IO.FileUtils.ReadFiles ().FindAll ((obj) => obj.Split ('_').Length == 4 && obj.Split ('_') [0] == "Equipment");
                foreach (var f in filesList) {
                    string [] str = f.Split ('_');
                    if (str.Length == 4 && str [0] == "Equipment") {
                        var one = System.Text.Encoding.UTF8.GetString (IO.FileUtils.ReadFile (f));
                        var commGateway = Newtonsoft.Json.JsonConvert.DeserializeObject<Common> (one);
                        if (commGateway == null) {
                            continue;
                        }
                        // buspro上传的数据
                        if (commGateway.obj1 == 1 && (str [1].ToString () == DeviceType.OnePortWirelessFR.ToString () || str [1].ToString () == DeviceType.SuperWireless.ToString () || str [1].ToString () == DeviceType.OnePortBus.ToString ())) {
                            if (firstInitOfflintOnePortBus) {
                                FrameLayout OnePortWirelessFRFrameLayout = new FrameLayout () {
                                    Height = Application.GetRealHeight (98),
                                    Width = LayoutParams.MatchParent,
                                    BackgroundColor = SkinStyle.Current.TitileView,
                                };
                                VerticalScrolViewMiddle.AddChidren (OnePortWirelessFRFrameLayout);//如果有无线网关才把顶栏加上
 
                                firstInitOfflintOnePortBus = false;
                                Button btnIcon = new Button () {
                                    X = Application.GetRealWidth (15),
                                    Height = Application.GetRealHeight (66),
                                    Width = Application.GetRealWidth (66),
                                    UnSelectedImagePath = "Item/Wireless.png",
                                    SelectedImagePath = "Item/WirelessSelected.png",
                                    Gravity = Gravity.CenterVertical,
                                };
                                OnePortWirelessFRFrameLayout.AddChidren (btnIcon);
 
                                Button btnGatewayName = new Button () {
                                    X = btnIcon.Right,
                                    Height = Application.GetRealHeight (41),
                                    Width = Application.GetRealWidth (400),
                                    TextID = R.MyInternationalizationString.OfflineDevice,
                                    Gravity = Gravity.CenterVertical,
                                    TextAlignment = TextAlignment.CenterLeft,
                                    TextColor = SkinStyle.Current.TextColor1,
                                };
                                OnePortWirelessFRFrameLayout.AddChidren (btnGatewayName);
                            }
 
                            RowLayout wirelessView = new RowLayout () {
                                Height = Application.GetRealHeight (93),
                                BackgroundColor = SkinStyle.Current.ViewColor,
                            };
                            VerticalScrolViewMiddle.AddChidren (wirelessView);
                            //2020-03-14 取消跳转一键配置页面
                            //AddWirelessGateway (commGateway, (sender, e) => {
                            //    GotoSystemMqttGatewaySetting (commGateway);
                            //}, wirelessView);
 
                            //AddWirelessGateway (commGateway, null, wirelessView);
                        } else if (str [1].ToString () == DeviceType.OnePortWirelessFR.ToString () || str [1].ToString () == DeviceType.SuperWireless.ToString ()) {
                            var onePortWirelessFR = Newtonsoft.Json.JsonConvert.DeserializeObject<OnePortWirelessFR> (one);
                            if (onePortWirelessFR == null) {
                                continue;
                            }
                            if (firstInitWireless) {
                                FrameLayout OnePortWirelessFRFrameLayout = new FrameLayout () {
                                    Height = Application.GetRealHeight (98),
                                    Width = LayoutParams.MatchParent,
                                    BackgroundColor = SkinStyle.Current.MainColor,
                                };
                                VerticalScrolViewMiddle.AddChidren (OnePortWirelessFRFrameLayout);
 
                                firstInitWireless = false;
                                Button btnIcon = new Button () {
                                    X = Application.GetRealWidth (15),
                                    Height = Application.GetRealHeight (66),
                                    Width = Application.GetRealWidth (66),
                                    UnSelectedImagePath = "Item/Wireless.png",
                                    SelectedImagePath = "Item/WirelessSelected.png",
                                    Gravity = Gravity.CenterVertical,
                                };
                                OnePortWirelessFRFrameLayout.AddChidren (btnIcon);
 
                                Button btnGatewayName = new Button () {
                                    X = btnIcon.Right,
                                    Height = Application.GetRealHeight (41),
                                    Width = Application.GetRealWidth (400),
                                    TextID = R.MyInternationalizationString.WirelessGateWay,
                                    Gravity = Gravity.CenterVertical,
                                    TextAlignment = TextAlignment.CenterLeft,
                                    TextColor = SkinStyle.Current.TextColor1,
                                };
                                OnePortWirelessFRFrameLayout.AddChidren (btnGatewayName);
 
                            }
                            RowLayout wirelessView = new RowLayout () {
                                Height = Application.GetRealHeight (93),
                                BackgroundColor = SkinStyle.Current.ViewColor,
                            };
                            VerticalScrolViewMiddle.AddChidren (wirelessView);
                            AddWirelessGateway (onePortWirelessFR, (sender, e) => {
                                //new SystemWirelessGateway ().ShowWirelessGateway (onePortWirelessFR);
                                var sysOneBus = new SystemWirelessGateway ();
                                SystemHomePage.sysMiddleGatewayPageView.AddChidren (sysOneBus);
                                sysOneBus.ShowWirelessGateway (onePortWirelessFR);
                                SystemHomePage.sysMiddleGatewayPageView.PageIndex = SystemHomePage.sysMiddleGatewayPageView.ChildrenCount - 1;
                            }, wirelessView);
                        } else if (str [1].ToString () == DeviceType.OnePortBus.ToString ()) {
                            var onePortBus = Newtonsoft.Json.JsonConvert.DeserializeObject<OnePortBus> (one);
                            if (onePortBus == null) {
                                continue;
                            }
                            if (firstInitOnePortBus) {
                                FrameLayout OnePortBusFrameLayout = new FrameLayout () {
                                    Height = Application.GetRealHeight (98),
                                    BackgroundColor = SkinStyle.Current.MainColor,
                                };
                                VerticalScrolViewMiddle.AddChidren (OnePortBusFrameLayout);
                                firstInitOnePortBus = false;
                                Button button1 = new Button () {
                                    X = Application.GetRealWidth (15),
                                    Height = Application.GetRealHeight (66),
                                    Width = Application.GetRealWidth (66),
                                    UnSelectedImagePath = "Item/OnePort.png",
                                    SelectedImagePath = "Item/OnePortSelected.png",
                                    Gravity = Gravity.CenterVertical,
                                };
                                OnePortBusFrameLayout.AddChidren (button1);
 
                                Button textButton1 = new Button () {
                                    X = button1.Right,
                                    Height = Application.GetRealHeight (41),
                                    Width = Application.GetRealWidth (400),
                                    TextID = R.MyInternationalizationString.CableGateWay,
                                    Gravity = Gravity.CenterVertical,
                                    TextAlignment = TextAlignment.CenterLeft,
                                    TextColor = SkinStyle.Current.TextColor1,
                                };
                                OnePortBusFrameLayout.AddChidren (textButton1);
 
                            }
                            RowLayout wirelessView = new RowLayout () {
                                Height = Application.GetRealHeight (93),
                                BackgroundColor = SkinStyle.Current.ViewColor,
                            };
                            VerticalScrolViewMiddle.AddChidren (wirelessView);
 
                            AddWirelessGateway (onePortBus, (sender, e) => {
                                var sysOneBus = new SystemOnePortBus ();
                                SystemHomePage.sysMiddleGatewayPageView.AddChidren (sysOneBus);
                                sysOneBus.ShowOnePortBus (onePortBus);
                                SystemHomePage.sysMiddleGatewayPageView.PageIndex = SystemHomePage.sysMiddleGatewayPageView.ChildrenCount - 1;
                            }, wirelessView);
                        } else if (str [1].ToString () == DeviceType.RCU.ToString ()) {
                            var RCU_Devcie = Newtonsoft.Json.JsonConvert.DeserializeObject<RCU> (one);
                            if (RCU_Devcie == null) {
                                continue;
                            }
                            if (!RCU_Devcie.LinkNetworkLine) {
                                continue;
                            }
                            if (firstInitRCU) {
                                FrameLayout OnePortBusFrameLayout = new FrameLayout () {
                                    Height = Application.GetRealHeight (98),
                                    BackgroundColor = SkinStyle.Current.MainColor,
                                };
                                VerticalScrolViewMiddle.AddChidren (OnePortBusFrameLayout);
                                firstInitRCU = false;
                                Button button1 = new Button () {
                                    X = Application.GetRealWidth (15),
                                    Height = Application.GetRealHeight (66),
                                    Width = Application.GetRealWidth (66),
                                    UnSelectedImagePath = "Item/OnePort.png",
                                    SelectedImagePath = "Item/OnePortSelected.png",
                                    Gravity = Gravity.CenterVertical,
                                };
                                OnePortBusFrameLayout.AddChidren (button1);
 
                                Button textButton1 = new Button () {
                                    X = button1.Right,
                                    Height = Application.GetRealHeight (41),
                                    Width = Application.GetRealWidth (400),
                                    Text = "RCU",
                                    Gravity = Gravity.CenterVertical,
                                    TextAlignment = TextAlignment.CenterLeft,
                                    TextColor = SkinStyle.Current.TextColor1,
                                };
                                OnePortBusFrameLayout.AddChidren (textButton1);
                            }
                            RowLayout wirelessView = new RowLayout () {
                                Height = Application.GetRealHeight (93),
                                BackgroundColor = SkinStyle.Current.ViewColor,
                            };
                            VerticalScrolViewMiddle.AddChidren (wirelessView);
 
                            AddWirelessGateway (RCU_Devcie, (sender, e) => {
                                //new SystemRCU ().ShowRCU (RCU_Devcie);
                                var sysOneBus = new SystemRCU ();
                                SystemHomePage.sysMiddleGatewayPageView.AddChidren (sysOneBus);
                                sysOneBus.ShowRCU (RCU_Devcie);
                                SystemHomePage.sysMiddleGatewayPageView.PageIndex = SystemHomePage.sysMiddleGatewayPageView.ChildrenCount - 1;
                            }, wirelessView);
                        } else if (str [1].ToString () == DeviceType.MusicModel.ToString () || str [1].ToString () == DeviceType.MusicA31.ToString ()) {
                            var musicModel = Newtonsoft.Json.JsonConvert.DeserializeObject<MusicModel> (one);
                            if (musicModel == null) {
                                continue;
                            }
 
                            if (firstInitMusic) {
                                FrameLayout MusicTitleView = new FrameLayout () {
                                    Height = Application.GetRealHeight (98),
                                    Width = LayoutParams.MatchParent,
                                    BackgroundColor = SkinStyle.Current.MainColor,
                                };
                                VerticalScrolViewMiddle.AddChidren (MusicTitleView);//如果有无线网关才把顶栏加上
 
                                firstInitMusic = false;
                                Button btnIcon = new Button () {
                                    X = Application.GetRealWidth (15),
                                    Height = Application.GetRealHeight (66),
                                    Width = Application.GetRealWidth (66),
                                    UnSelectedImagePath = "Item/Music.png",
                                    SelectedImagePath = "Item/Music.png",
                                    Gravity = Gravity.CenterVertical,
                                };
                                MusicTitleView.AddChidren (btnIcon);
 
                                Button btnGatewayName = new Button () {
                                    X = btnIcon.Right,
                                    Height = Application.GetRealHeight (41),
                                    Width = Application.GetRealWidth (400),
                                    TextID = R.MyInternationalizationString.MusicModel,
                                    Gravity = Gravity.CenterVertical,
                                    TextAlignment = TextAlignment.CenterLeft,
                                    TextColor = SkinStyle.Current.TextColor1,
                                };
                                MusicTitleView.AddChidren (btnGatewayName);
 
                            }
 
                            RowLayout rlMusicModel = new RowLayout () {
                                Height = Application.GetRealHeight (98),
                                Width = LayoutParams.MatchParent,
                                BackgroundColor = SkinStyle.Current.ViewColor,
                            };
                            VerticalScrolViewMiddle.AddChidren (rlMusicModel);
                            AddWirelessGateway (musicModel, (sender, e) => {
                                //new SystemRCU ().ShowRCU (RCU_Devcie);
                                var sysMusic = new SystemMusicModel ();
                                SystemHomePage.sysMiddleGatewayPageView.AddChidren (sysMusic);
                                sysMusic.ShowMusicModel (musicModel);
                                SystemHomePage.sysMiddleGatewayPageView.PageIndex = SystemHomePage.sysMiddleGatewayPageView.ChildrenCount - 1;
                            }, rlMusicModel);
                           
                        }
                    }
                    Application.RunOnMainThread (() => {
                        MainPage.Loading.Hide ();
                    });
                }
                //InitBottomButton ();
            } catch (Exception ex) {
                Console.WriteLine (ex.ToString ());
            }
        }
 
        /// <summary>
        /// 显示网关
        /// </summary>
        void AddWirelessGateway (Common common, EventHandler<MouseEventArgs> eHandler, RowLayout wirelessView)
        {
            int subnetID = common.SubnetID;
            string remark = common.Name;
 
            Button btnDelFile = new Button () {
                TextID = R.MyInternationalizationString.Del,
                BackgroundColor = SkinStyle.Current.DelColor,
            };
            btnDelFile.MouseUpEventHandler += (sender, e) => {
                Alert alert = new Alert (Language.StringByID (R.MyInternationalizationString.Tip), Language.StringByID (R.MyInternationalizationString.TipDeleteEquipmentMessage)
                                     , Language.StringByID (R.MyInternationalizationString.Cancel), Language.StringByID (R.MyInternationalizationString.Confrim));
                alert.Show ();
                alert.ResultEventHandler += ( sender1,  e1) => {
                    if (e1) {
                        var delFile = IO.FileUtils.ReadFiles ().FindAll ((w) => {
                            return (w.Split ('_') [0] == "Equipment") && (w.Split ('_') [2] == subnetID.ToString ());
                        });
                        for (int k = 0; k < delFile.Count; k++) {
                            IO.FileUtils.DeleteFile (delFile [k]);
                        }
                        ShowGateWayView ();
                    }
                };
            };
            wirelessView.AddRightView (btnDelFile);
 
            Button pointButton1 = new Button () {
                Width = Application.GetRealHeight (13),
                Height = Application.GetRealHeight (13),
                X = Application.GetRealWidth (80),
                UnSelectedImagePath = "Item/Point.png",
                SelectedImagePath = "Item/PointSelected.png",
                Gravity = Gravity.CenterVertical,
            };
            wirelessView.AddChidren (pointButton1);
 
            Button nameButton1 = new Button () {
                Width = Application.GetRealWidth (342),
                Height = LayoutParams.MatchParent,
                Text = remark,
                TextAlignment = TextAlignment.CenterLeft,
                X = pointButton1.Right + Application.GetRealWidth (20),
                TextColor = SkinStyle.Current.TextColor1
            };
            wirelessView.AddChidren (nameButton1);
 
            Button rightButton1 = new Button () {
                X = Application.GetRealWidth (550),
                Width = Application.GetRealWidth (28),
                Height = Application.GetRealHeight (40),
                Gravity = Gravity.CenterVertical,
                UnSelectedImagePath = "Item/Right.png",
                SelectedImagePath = "Item/RightSelected.png",
            };
            wirelessView.AddChidren (rightButton1);
 
            rightButton1.MouseUpEventHandler += eHandler;
            wirelessView.MouseUpEventHandler += eHandler;
            nameButton1.MouseUpEventHandler += eHandler;
        }
 
        /// <summary>
        /// 跳转Mqtt网关配置页面
        /// </summary>
        /// <param name="common"></param>
        void GotoSystemMqttGatewaySetting (Common common) {
 
            //if (common.Type == DeviceType.OnePortMqttFR || common.Type == DeviceType.OnePortBusMqtt) {
                SystemMqttGatewaySetting mSystemMqttGatewaySetting = new SystemMqttGatewaySetting ();
                UserMiddle.SettingPageView.AddChidren (mSystemMqttGatewaySetting);
                mSystemMqttGatewaySetting.ShowView (common);
                UserMiddle.SettingPageView.PageIndex = UserMiddle.SettingPageView.ChildrenCount - 1;
            //} else {
                
            //}
        }
 
    }
 
 
    public class SysMiddle : FrameLayout
    {
 
        /// <summary>
        /// 中间界面
        /// </summary>
        public VerticalScrolViewLayout VerticalScrolViewMiddle = new VerticalScrolViewLayout () {
            Height = Application.GetRealHeight (846),
            BackgroundColor = SkinStyle.Current.ViewColor
        };
 
        public static List<Common> hideListCommon = new List<Common> ();
 
        public void Init ()
        {
            RemoveAll ();
            VerticalScrolViewMiddle.BackgroundColor = SkinStyle.Current.ViewColor;
            AddChidren (VerticalScrolViewMiddle);
            ShowEquipmentBase ();
        }
 
        /// <summary>
        /// 显示设备列表信息.
        /// </summary>
        void ShowEquipmentBase ()
        {
            VerticalScrolViewMiddle.RemoveAll ();
            VerticalScrolViewMiddle.Height = Application.GetRealHeight (846 + 90);
            hideListCommon = new List<Common> ();
            List<string> localFileList = IO.FileUtils.ReadFiles ();
            List<string> offlineDeviceList = new List<string> ();
 
            var gateWayListZ = localFileList.FindAll ((obj) => {
                return obj.Split ('_').Length == 4 && obj.StartsWith ("Equipment_") ;
            });
            var gateWayList = gateWayListZ.FindAll ((obj) => {
                return obj.Split ('_') [1].ToString () == DeviceType.OnePortBus.ToString () ||
                    obj.Split ('_') [1].ToString () == DeviceType.RCU.ToString () ||
                    obj.Split ('_') [1].ToString () == DeviceType.OnePortWirelessFR.ToString ();
            });
            foreach (var offline in localFileList) {
                if (offline.Split ('_').Length == 5 && offline.Split ('_') [0] == "Equipment") {
                    var ss = IO.FileUtils.ReadFile (offline);
                    Common commonOffline = Newtonsoft.Json.JsonConvert.DeserializeObject<Common> (CommonPage.MyEncodingUTF8.GetString (IO.FileUtils.ReadFile (offline)));
                    if (commonOffline == null)
                        continue;
                    if (commonOffline.obj1 == 1) {
                        offlineDeviceList.Add (offline);
                    }
                }
            }
 
            foreach (var gatewayFileName in gateWayList) {
                if (offlineDeviceList.Contains (gatewayFileName))
                    continue;
                var tempStrings = gatewayFileName.Split ('_');
                if (tempStrings [1].ToString () == DeviceType.OnePortBus.ToString () ||
                    tempStrings [1].ToString () == DeviceType.RCU.ToString () ||
                    tempStrings [1].ToString () == DeviceType.OnePortWirelessFR.ToString ()) {
                    var one = System.Text.Encoding.UTF8.GetString (IO.FileUtils.ReadFile (gatewayFileName));
                    if (one.Length == 0) {
                        IO.FileUtils.DeleteFile (gatewayFileName);
                        continue;
                    }
                    #region titel
                    FrameLayout OnePortBusFrameLayout = new FrameLayout () {
                        Height = Application.GetRealHeight (98),
                        BackgroundColor = SkinStyle.Current.MainColor
                    };
                    VerticalScrolViewMiddle.AddChidren (OnePortBusFrameLayout);
                    Button btnLineTop = new Button () {
                        Height = 1,
                        BackgroundColor = 0xFF2f2f2f,
                    };
                    VerticalScrolViewMiddle.AddChidren (btnLineTop);
 
                    FrameLayout busEquipmentBody = new FrameLayout () {
                        Height = 0,
                        Tag = 0,
                    };
                    VerticalScrolViewMiddle.AddChidren (busEquipmentBody);
                    Button button1 = new Button () {
                        X = Application.GetRealWidth (20),
                        Height = Application.GetRealHeight (66),
                        Width = Application.GetRealWidth (66),
                        UnSelectedImagePath = "Item/OnePort.png",
                        SelectedImagePath = "Item/OnePortSelected.png",
                        Gravity = Gravity.CenterVertical,
                    };
                    OnePortBusFrameLayout.AddChidren (button1);
 
                    Button textButton1 = new Button () {
                        X = Application.GetRealWidth (20) + button1.Right,
                        Height = Application.GetRealHeight (41),
                        Width = Application.GetRealWidth (400),
                        Gravity = Gravity.CenterVertical,
                        TextAlignment = TextAlignment.CenterLeft,
                        TextColor = SkinStyle.Current.TextColor1,
                    };
                    OnePortBusFrameLayout.AddChidren (textButton1);
 
                    Button downSelectedButton1 = new Button () {
                        X = Application.GetRealWidth (550),
                        Height = Application.GetRealHeight (46),
                        Width = Application.GetRealWidth (47),
                        UnSelectedImagePath = "Item/Down.png",
                        SelectedImagePath = "Item/DownSelected.png",
                        Gravity = Gravity.CenterVertical,
                        IsSelected = true,
                    };
                    OnePortBusFrameLayout.AddChidren (downSelectedButton1);
                    EventHandler<MouseEventArgs> eHandler = (sender, e) => {
                        downSelectedButton1.IsSelected = !downSelectedButton1.IsSelected;
                        if (downSelectedButton1.IsSelected) {
                            busEquipmentBody.Height = Convert.ToInt32 (busEquipmentBody.Tag);
                        } else {
                            busEquipmentBody.Height = 0;
                        }
                    };
                    downSelectedButton1.MouseUpEventHandler += eHandler;
                    button1.MouseUpEventHandler += eHandler;
                    textButton1.MouseUpEventHandler += eHandler;
                    #endregion
                    if (tempStrings [1].ToString () == DeviceType.OnePortWirelessFR.ToString ()) {
                        var onePortWirelessFR = Newtonsoft.Json.JsonConvert.DeserializeObject<OnePortWirelessFR> (one);
                        textButton1.Text = onePortWirelessFR.Name;
                        button1.SelectedImagePath = "Item/WirelessSelected.png";
                        button1.UnSelectedImagePath = "Item/Wireless.png";
                    } else if (tempStrings [1].ToString () == DeviceType.OnePortBus.ToString ()) {
                        var onePortBus = Newtonsoft.Json.JsonConvert.DeserializeObject<OnePortBus> (one);
                        textButton1.Text = onePortBus.Name;
                        button1.SelectedImagePath = "Item/OnePortSelected.png";
                        button1.UnSelectedImagePath = "Item/OnePort.png";
                    } else if (tempStrings [1].ToString () == DeviceType.RCU.ToString ()) {
                        var rcu = Newtonsoft.Json.JsonConvert.DeserializeObject<RCU> (one);
                        textButton1.Text = rcu.Name;
                        button1.SelectedImagePath = "Item/OnePortSelected.png";
                        button1.UnSelectedImagePath = "Item/OnePort.png";
                    }
                    button1.IsSelected = false;
                    int equipmentHeight = 0;
                    int count = 0;
 
                    foreach (var deviceFile in localFileList) {
                        if (tempStrings [1].ToString () != DeviceType.RCU.ToString ()) {
                            if (deviceFile == gatewayFileName
                               || deviceFile.Split ('_') [0] != "Equipment"
                               || deviceFile.Split ('_').Length != 4) {
                                continue;
                            }
                        } else {
                            if (deviceFile.Split ('_') [0] != "Equipment" || deviceFile.Split ('_').Length != 4) {
                                continue;
                            }
                        }
                        if (offlineDeviceList.Contains (deviceFile))
                            continue;
                        if (deviceFile.Split ('_') [2] != tempStrings [2]) {
                            continue;
                        }
 
                        string localFileType = deviceFile.Split ('_') [1];
 
                        byte [] equipmentUsefullBytes = IO.FileUtils.ReadFile (deviceFile);
 
                        string equipmentString;
                        Common common = null;
                        equipmentString = CommonPage.MyEncodingUTF8.GetString (equipmentUsefullBytes);
                        common = Newtonsoft.Json.JsonConvert.DeserializeObject<Common> (equipmentString);
                        if (common == null) {
                            continue;
                        }
 
                        if (common.isMixBox) {
                            hideListCommon.Add (common);
                        } else {
                            RowLayout frameLayout = new RowLayout () {
                                Height = Application.GetRealHeight (93),
                            };
                            frameLayout.Y = count++ * frameLayout.Height;
 
                            busEquipmentBody.AddChidren (frameLayout);
 
                            Button btnDelFile = new Button () {
                                TextID = R.MyInternationalizationString.Del,
                                BackgroundColor = SkinStyle.Current.DelColor
                            };
                            btnDelFile.MouseUpEventHandler += (sender, e) => {
                                Alert alert = new Alert (Language.StringByID (R.MyInternationalizationString.Tip), Language.StringByID (R.MyInternationalizationString.TipDeleteEquipmentMessage)
                                    , Language.StringByID (R.MyInternationalizationString.Cancel), Language.StringByID (R.MyInternationalizationString.Confrim));
                                alert.Show ();
                                alert.ResultEventHandler += (sender1, e1) => {
                                    if (e1) {
                                        //"_" + deviceFile.Split ('_') [1] +
                                        string delFlag = "_" + deviceFile.Split ('_') [2] + "_" + deviceFile.Split ('_') [3];
                                        var delFile = IO.FileUtils.ReadFiles ().FindAll ((w) => {
                                            return w.Contains (delFlag);
                                        });
 
                                        for (int i = 0; i < delFile.Count; i++) {
                                            IO.FileUtils.DeleteFile (delFile [i]);
                                        }
                                        ShowEquipmentBase ();
                                    }
                                };
                            };
                            frameLayout.AddRightView (btnDelFile);
 
                            busEquipmentBody.Height += Application.GetRealHeight (93);
                            equipmentHeight += Application.GetRealHeight (93);
                            busEquipmentBody.Tag = equipmentHeight;
                            Button pointButton = new Button () {
                                Width = Application.GetRealHeight (13),
                                Height = Application.GetRealHeight (13),
                                X = Application.GetRealWidth (80),
                                UnSelectedImagePath = "Item/Point.png",
                                SelectedImagePath = "Item/PointSelected.png",
                                Gravity = Gravity.CenterVertical,
                            };
                            frameLayout.AddChidren (pointButton);
 
                            Button btnName = new Button () {
                                Width = Application.GetRealWidth (642),
                                Height = LayoutParams.MatchParent,
                                Text = common.Name,
                                TextAlignment = TextAlignment.CenterLeft,
                                X = pointButton.Right + Application.GetRealWidth (20),
                                TextColor = SkinStyle.Current.TextColor1
                            };
                            frameLayout.AddChidren (btnName);
 
                            if (common.Type != DeviceType.DeviceCommon) {
                                Button btnRight = new Button () {
                                    X = Application.GetRealWidth (550),
                                    Width = Application.GetRealWidth (28),
                                    Height = Application.GetRealHeight (40),
                                    Gravity = Gravity.CenterVertical,
                                    UnSelectedImagePath = "Item/Right.png",
                                    SelectedImagePath = "Item/RightSelected.png",
                                };
                                frameLayout.AddChidren (btnRight);
                                EventHandler<MouseEventArgs> mouseEvent = (sender, e) => {
                                    //new SystemEquipmentBase ().EquipmentBaseViewShow (common);
                                    var systemEquipmentBase = new SystemEquipmentBase ();
                                    SystemHomePage.sysMiddleDevicePageView.AddChidren (systemEquipmentBase);
                                    systemEquipmentBase.EquipmentBaseViewShow (common);
                                    SystemHomePage.sysMiddleDevicePageView.PageIndex = SystemHomePage.sysMiddleDevicePageView.ChildrenCount - 1;
                                };
                                btnRight.MouseUpEventHandler += mouseEvent;
                                btnName.MouseUpEventHandler += mouseEvent;
                                frameLayout.MouseUpEventHandler += mouseEvent;
                            }
                        }
                    }
                }
            }
 
            if (offlineDeviceList.Count != 0) {
                #region titel
                FrameLayout OnePortBusFrameLayout = new FrameLayout () {
                    Height = Application.GetRealHeight (98),
                    BackgroundColor = SkinStyle.Current.MainColor
                };
                VerticalScrolViewMiddle.AddChidren (OnePortBusFrameLayout);
                Button btnLineTop = new Button () {
                    Height = 1,
                    BackgroundColor = 0xFF2f2f2f,
                };
                VerticalScrolViewMiddle.AddChidren (btnLineTop);
 
                FrameLayout busEquipmentBody = new FrameLayout () {
                    Height = 0,
                    Tag = 0,
                };
                VerticalScrolViewMiddle.AddChidren (busEquipmentBody);
                Button button1 = new Button () {
                    X = Application.GetRealWidth (20),
                    Height = Application.GetRealHeight (66),
                    Width = Application.GetRealWidth (66),
                    UnSelectedImagePath = "Item/OnePort.png",
                    SelectedImagePath = "Item/OnePortSelected.png",
                    Gravity = Gravity.CenterVertical,
                };
                OnePortBusFrameLayout.AddChidren (button1);
 
                Button textButton1 = new Button () {
                    X = Application.GetRealWidth (20) + button1.Right,
                    Height = Application.GetRealHeight (41),
                    Width = Application.GetRealWidth (400),
                    Gravity = Gravity.CenterVertical,
                    TextAlignment = TextAlignment.CenterLeft,
                    TextID = R.MyInternationalizationString.OfflineDevice,
                    TextColor = SkinStyle.Current.TextColor1
                };
                OnePortBusFrameLayout.AddChidren (textButton1);
 
                Button downSelectedButton1 = new Button () {
                    X = Application.GetRealWidth (550),
                    Height = Application.GetRealHeight (46),
                    Width = Application.GetRealWidth (47),
                    UnSelectedImagePath = "Item/Down.png",
                    SelectedImagePath = "Item/DownSelected.png",
                    Gravity = Gravity.CenterVertical,
                    IsSelected = true,
                };
                OnePortBusFrameLayout.AddChidren (downSelectedButton1);
                EventHandler<MouseEventArgs> eHandler = (sender, e) => {
                    downSelectedButton1.IsSelected = !downSelectedButton1.IsSelected;
                    if (downSelectedButton1.IsSelected) {
                        busEquipmentBody.Height = Convert.ToInt32 (busEquipmentBody.Tag);
                    } else {
                        busEquipmentBody.Height = 0;
                    }
                };
                downSelectedButton1.MouseUpEventHandler += eHandler;
                button1.MouseUpEventHandler += eHandler;
                textButton1.MouseUpEventHandler += eHandler;
                #endregion
 
                int count = 0;
                int equipmentHeight = 0;
                foreach (var offlineDevice in offlineDeviceList) {
                    string localFileType = offlineDevice.Split ('_') [1];
                    byte [] equipmentUsefullBytes = IO.FileUtils.ReadFile (offlineDevice);
                    string equipmentString;
                    Common common = null;
                    //设备界面要显示的设备,必须在这里添加显示
                    equipmentString = CommonPage.MyEncodingUTF8.GetString (equipmentUsefullBytes);
                    common = Newtonsoft.Json.JsonConvert.DeserializeObject<Common> (equipmentString);
                    if (common == null) {
                        continue;
                    }
 
                    if (common.isMixBox) {
                        hideListCommon.Add (common);
                    } else {
                        RowLayout frameLayout = new RowLayout () {
                            Height = Application.GetRealHeight (93),
                        };
                        frameLayout.Y = count++ * frameLayout.Height;
 
                        busEquipmentBody.AddChidren (frameLayout);
 
                        Button btnDelFile = new Button () {
                            TextID = R.MyInternationalizationString.Del,
                            BackgroundColor = SkinStyle.Current.DelColor
                        };
                        btnDelFile.MouseUpEventHandler += (sender, e) => {
                            Alert alert = new Alert (Language.StringByID (R.MyInternationalizationString.Tip), Language.StringByID (R.MyInternationalizationString.TipDeleteEquipmentMessage)
                                , Language.StringByID (R.MyInternationalizationString.Cancel), Language.StringByID (R.MyInternationalizationString.Confrim));
                            alert.Show ();
                            alert.ResultEventHandler += ( sender1,  e1) => {
                                if (e1) {
                                    IO.FileUtils.DeleteFile (offlineDevice);
                                    ShowEquipmentBase ();
                                }
                            };
                        };
                        frameLayout.AddRightView (btnDelFile);
 
                        busEquipmentBody.Height += Application.GetRealHeight (93);
                        equipmentHeight += Application.GetRealHeight (93);
                        busEquipmentBody.Tag = equipmentHeight;
                        Button pointButton = new Button () {
                            Width = Application.GetRealHeight (13),
                            Height = Application.GetRealHeight (13),
                            X = Application.GetRealWidth (80),
                            UnSelectedImagePath = "Item/Point.png",
                            SelectedImagePath = "Item/PointSelected.png",
                            Gravity = Gravity.CenterVertical,
                        };
                        frameLayout.AddChidren (pointButton);
 
                        Button btnName = new Button () {
                            Width = Application.GetRealWidth (642),
                            Height = LayoutParams.MatchParent,
                            Text = common.Name,
                            TextAlignment = TextAlignment.CenterLeft,
                            X = pointButton.Right + Application.GetRealWidth (20),
                            TextColor = SkinStyle.Current.TextColor1
                        };
                        frameLayout.AddChidren (btnName);
                    }
                }
            }
        }
    }
 
}