1
wxr
2022-12-30 9ebd6edb9beddf1a6881b2ca924ed43bf5cedfbe
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
        
using System;
using System.Collections.Generic;
using Shared;
using Shared.SimpleControl;
 
namespace SmartHome
{
    public class SearchServerOnePortListPage : FrameLayout
    {
        #region 文本
        string text_Title = "远程";
        string text_userName = "组名";
        string text_projectName = "工程名";
        string text_password = "密码";
        string text_entry_userName_tip = "请输入组名。";
        string text_entry_projectName_tip = "请输入工程名。";
        string text_entry_password_tip = "请输入密码。";
        string text_link = "连接";
        string text_back = "后退";
        string text_reading = "读取中";
        /// <summary>
        /// 已升级
        /// </summary>
        string text_Upgraded = "已升级";
        /// <summary>
        /// 正在升级
        /// </summary>
        string text_Upgrading = "正在升级";
        /// <summary>
        /// 升级失败
        /// </summary>
        string text_UpgradeFailed = "升级失败";
        /// <summary>
        /// 未知版本
        /// </summary>
        string text_UnknownVersion = "未知版本";
        /// <summary>
        /// 读取失败
        /// </summary>
        string text_readFailure = "读取失败";
 
        string txt_breakLink = "断开连接";
        string txt_connectionSucceeded = "搜索完成";
 
        string txt_linkSeverFailed = "连接服务器失败";
        string txt_DataError = "数据异常";
        string txt_QueryFailed = "查询失败";
        string txt_NoData = "无数据";
        string txt_Search = "搜索";
        #endregion
 
 
        /// <summary>
        /// 中间界面
        /// </summary>
        public VerticalScrolViewLayout contentView;
        public VerticalScrolViewLayout infoView;
        public VerticalScrolViewLayout listView;
 
 
        public override void RemoveFromParent ()
        {
            CommonPage.IsRemote = false;
            base.RemoveFromParent ();
        }
 
        public SearchServerOnePortListPage ()
        {
            if (Language.CurrentLanguage != "Chinese") {
                text_Title = "Remote";
                text_userName = "Group name";
                text_projectName = "project name";
                text_password = "Password";
                text_entry_userName_tip = "Please enter the group name.";
                text_entry_projectName_tip = "Please enter the project name.";
                text_entry_password_tip = "Please input a password.";
                text_Upgraded = "Upgraded";
                text_Upgrading = "Upgrading";
                text_UpgradeFailed = "Upgrade failed";
                text_UnknownVersion = "Other version";
                text_readFailure = "Read failure";
                text_back = "Back";
                text_link = "Link";
                text_reading = "Reading";
                txt_breakLink = "Break link";
                txt_connectionSucceeded = "Search complete";
                txt_linkSeverFailed = "Failed to connect to the server";
                txt_DataError = "Data exception";
                txt_QueryFailed = "Query failed";
                txt_Search = "search";
                txt_NoData = "No data";
            }
        }
 
        public void ShowPage ()
        {
            BackgroundColor = SkinStyle.Current.MainColor;
            initTop ();
            initContentView ();
        }
 
 
        void initTop ()
        {
            FrameLayout topView = new FrameLayout () {
                Height = Application.GetRealHeight (126),
            };
            AddChidren (topView);
 
 
            Button NameButton = new Button () {
                Width = Application.GetRealWidth (400),
                Height = Application.GetMinReal (90),
                Text = text_Title,
                TextColor = SkinStyle.Current.TextColor1,
                Gravity = Gravity.CenterHorizontal,
                TextAlignment = TextAlignment.Center,
                Y = Application.GetRealHeight (30),
                TextSize = 20,
            };
            topView.AddChidren (NameButton);
 
 
            var btnBack = new Button () {
                X = Application.GetRealWidth (34),
                Y = Application.GetRealHeight (30),
                Width = Application.GetRealWidth (200),
                Height = Application.GetMinReal (90),
                TextAlignment = TextAlignment.CenterLeft,
                Text = text_back,
                TextColor = 0xCC0195F9,
            };
            topView.AddChidren (btnBack);
            btnBack.MouseUpEventHandler = (sender, e) => {
                this.RemoveFromParent ();
            };
 
 
        }
        void initContentView ()
        {
            var remoteClient = new SystemRemote ();
            string userName = "";
            string projectName = "";
            string password = "";
 
            contentView = new VerticalScrolViewLayout () {
                Y = Application.GetRealHeight (126),
                Height = Application.GetRealHeight (1136 - 126),
                BackgroundColor = SkinStyle.Current.ViewColor,
                ScrollEnabled = false,
            };
            AddChidren (contentView);
 
            infoView = new VerticalScrolViewLayout () {
                Height = Application.GetRealHeight (1136 - 126 - 90),
                ScrollEnabled = false,
            };
            contentView.AddChidren (infoView);
 
            #region 
            var userNameView = new FrameLayout () {
                Height = Application.GetRealHeight (93),
                BackgroundColor = SkinStyle.Current.ViewColor,
            };
            infoView.AddChidren (userNameView);
 
            var btnUserNameTitle = new Button () {
                X = Application.GetRealWidth (32),
                Text = text_userName,
                TextColor = SkinStyle.Current.TextColor1,
            };
            btnUserNameTitle.Width = btnUserNameTitle.GetTextWidth () + Application.GetRealWidth (30);
            userNameView.AddChidren (btnUserNameTitle);
 
            var tvUserName = new EditText () {
                Width = Application.GetRealWidth (400),
                X = btnUserNameTitle.Right,
                TextColor = SkinStyle.Current.TextColor1,
            };
            userNameView.AddChidren (tvUserName);
 
            var btnLine = new Button () {
                Height = Application.GetRealHeight (2),
                BackgroundColor = SkinStyle.Current.LineColor,
            };
            infoView.AddChidren (btnLine);
            #endregion
 
            var rightButton1 = new Button () {
                Height = Application.GetRealHeight (93),
                TextAlignment = TextAlignment.Center,
            };
            infoView.AddChidren (rightButton1);
 
 
            listView = new VerticalScrolViewLayout () {
                Height = Application.GetRealHeight (1136 - 126 - 90 - 93 * 2),
            };
            infoView.AddChidren (listView);
 
            //--------------
            var btnOption = new Button () {
                TextAlignment = TextAlignment.Center,
                TextColor = SkinStyle.Current.TextColor1,
                BackgroundColor = SkinStyle.Current.MainColor,
                Text = txt_Search,
                Height = Application.GetRealHeight (90),
            };
            contentView.AddChidren (btnOption);
 
#if DEBUG
            userName = tvUserName.Text = "gs";
            //projectName = tvProjectName.Text = "www";
            //password = tvPassword.Text = "wwwwww";
#endif
 
 
            btnOption.MouseUpEventHandler = (sender, e) => {
 
                userName = tvUserName.Text.Trim ();
                if (string.IsNullOrEmpty (userName)) {
                    MainPage.AddTip (text_entry_userName_tip);
                    return;
                }
 
                listView.RemoveAll ();
                rightButton1.Text = "";
 
                CommonPage.IsRemote = true;
                var sendBytes = new byte [29];
                var b1 = CommonPage.MyEncodingGB2312.GetBytes (userName);
                byte [] ggn = new byte [20];
                Array.Copy (b1, 0, ggn, 0, 20 < b1.Length ? 20 : b1.Length);
                Array.Copy (ggn, 0, sendBytes, 9, 20);
 
                string newIp = "118.31.3.103";
                if(Language.CurrentLanguage!= "Chinese") {
                    newIp = "157.175.231.123";
                }
 
 
                new System.Threading.Thread (() => {
                    CommonPage.IsRemote = true;
                    Application.RunOnMainThread (() => {
                        MainPage.Loading.Start ();
                    });
                    try {
                        //读取旧服务器上的工程列表
                        var sss = Control.ControlBytesSendHasReturn (Command.GetRemoteOnePortListInfo, 0xFB, 0xFB, sendBytes);
                        var oldGatewayList = new List<GatewayBase> ();
                        if (sss != null) {
                            try {
                                if (sss [1] == 248) {
                                    Application.RunOnMainThread (() => {
                                        MainPage.Loading.Start ();
                                        rightButton1.Text = txt_connectionSucceeded;
                                        rightButton1.TextColor = SkinStyle.Current.TextColor1;
                                    });
 
                                    var count = sss [2] * 256 + sss [3];
 
                                    for (int i = 1; i <= count; i++) {
                                        byte [] arayImp = new byte [23];
                                        if (b1.Length <= 20)
                                            Array.Copy (b1, 0, arayImp, 1, b1.Length);
                                        else
                                            Array.Copy (b1, 0, arayImp, 1, 20);
                                        arayImp [21] = (byte)(i / 256);
                                        arayImp [22] = (byte)(i % 256);
                                        var oneProtData = Control.ControlBytesSendHasReturn (Command.GetRemoteOnePortInfo, 0xFB, 0xFB, arayImp);
                                        if (oneProtData != null) {
                                            try {
                                                var groupName = CommonPage.MyEncodingGB2312.GetString (oneProtData, 1, 20).Trim ('\0');
                                                var projectName22 = CommonPage.MyEncodingGB2312.GetString (oneProtData, 23, 20).Trim ('\0');
                                                var userName22 = CommonPage.MyEncodingGB2312.GetString (oneProtData, 43, 8).Trim ('\0');
                                                var isOnline = oneProtData [57] == 1;
 
                                                GatewayBase gatewayBase = new GatewayBase () {
                                                    Remote_GroupName = groupName,
                                                    Remote_ProjectName = projectName22,
                                                    Remote_UserName = userName22,
                                                    isOnline = isOnline,
                                                };
                                                oldGatewayList.Add (gatewayBase);
 
 
                                            }catch (Exception ex) {
 
                                            }
                                        } else {
 
                                        }
                                    }
 
 
 
 
                                    //读取新服务器上的工程列表
                                    var sss2 = Control.ControlBytesSendHasReturn (Command.GetRemoteOnePortListInfo, 0xFB, 0xFB, sendBytes, newIp);
                                    var newGatewayList = new List<GatewayBase> ();
                                    try {
                                        if (sss [1] == 248) {
                                            var countNew = sss [2] * 256 + sss [3];
 
                                            for (int i = 1; i <= countNew; i++) {
                                                byte [] arayImp = new byte [23];
                                                if (b1.Length <= 20)
                                                    Array.Copy (b1, 0, arayImp, 1, b1.Length);
                                                else
                                                    Array.Copy (b1, 0, arayImp, 1, 20);
                                                arayImp [21] = (byte)(i / 256);
                                                arayImp [22] = (byte)(i % 256);
                                                var oneProtData = Control.ControlBytesSendHasReturn (Command.GetRemoteOnePortInfo, 0xFB, 0xFB, arayImp, newIp);
                                                if (oneProtData != null) {
                                                    try {
                                                        var groupName = CommonPage.MyEncodingGB2312.GetString (oneProtData, 1, 20).Trim ('\0');
                                                        var projectName22 = CommonPage.MyEncodingGB2312.GetString (oneProtData, 23, 20).Trim ('\0');
                                                        var userName22 = CommonPage.MyEncodingGB2312.GetString (oneProtData, 43, 8).Trim ('\0');
 
                                                        var oldGateway = oldGatewayList.Find ((obj) => obj.Remote_GroupName == groupName &&
                                                         obj.Remote_ProjectName == projectName22 && obj.Remote_UserName == userName22);
                                                        if (oldGateway != null) {
                                                            oldGateway.isMoveToNewServer = true;
                                                        }
                                                    } catch (Exception ex) {
 
                                                    }
                                                } else {
 
                                                }
                                            }
                                        } else if (sss [1] == 245) {
                                            Application.RunOnMainThread (() => {
                                                rightButton1.Text = txt_NoData;
                                                rightButton1.TextColor = 0x99FF0000;
                                            });
                                        } else {
                                            Application.RunOnMainThread (() => {
                                                rightButton1.Text = txt_QueryFailed;
                                                rightButton1.TextColor = 0x99FF0000;
                                            });
                                        }
                                    } catch (Exception ex) {
                                        Application.RunOnMainThread (() => {
                                            rightButton1.Text = txt_DataError;
                                            rightButton1.TextColor = 0x99FF0000;
                                        });
                                    } finally {
 
                                    }
 
 
                                    Application.RunOnMainThread (() => {
                                        foreach (var one in oldGatewayList) {
                                            RowLayout wirelessView = new RowLayout () {
                                                Height = Application.GetRealHeight (93),
                                                BackgroundColor = SkinStyle.Current.ViewColor,
                                            };
                                            listView.AddChidren (wirelessView);
                                            showGatewayRow (one,wirelessView);
                                        }
                                    });
 
                                } else if(sss[1] == 245) {
                                    Application.RunOnMainThread (() => {
                                        rightButton1.Text = txt_NoData;
                                        rightButton1.TextColor = 0x99FF0000;
                                    });
                                }
                                else {
                                    Application.RunOnMainThread (() => {
                                        rightButton1.Text = txt_QueryFailed;
                                        rightButton1.TextColor = 0x99FF0000;
                                    });
                                }
                            } catch (Exception ex) {
                                Application.RunOnMainThread (() => {
                                    rightButton1.Text = txt_DataError;
                                    rightButton1.TextColor = 0x99FF0000;
                                });
                            } finally {
 
                            }
 
                        } else {
                            Application.RunOnMainThread (() => {
                                rightButton1.Text = txt_linkSeverFailed;
                                rightButton1.TextColor = 0x99FF0000;
                            });
                        }
                    }catch(Exception ex) {
 
                    } finally {
                        Application.RunOnMainThread (() => {
                            MainPage.Loading.Hide ();
                        });
                    }
 
 
 
                }) { IsBackground = true }.Start ();
            };
 
 
 
 
 
 
        }
 
 
 
 
        /// <summary>
        /// 显示
        /// </summary>
        void showGatewayRow (GatewayBase gatewayBase, RowLayout wirelessView)
        {
 
            Button pointButton1 = new Button () {
                Width = Application.GetRealHeight (20),
                Height = Application.GetRealHeight (20),
                X = Application.GetRealWidth (60),
                Radius = (uint)Application.GetRealHeight (7),
                Gravity = Gravity.CenterVertical,
                BackgroundColor = gatewayBase.isOnline ? 0xFF00FF00: 0xFF000000
            };
            wirelessView.AddChidren (pointButton1);
            
 
            Button nameButton1 = new Button () {
                Width = Application.GetRealWidth (342),
                Height = LayoutParams.MatchParent,
                Text = gatewayBase.Remote_ProjectName,
                TextAlignment = TextAlignment.CenterLeft,
                X = pointButton1.Right + Application.GetRealWidth (20),
                TextColor = SkinStyle.Current.TextColor1,
            };
            wirelessView.AddChidren (nameButton1);
 
            Button rightButton1 = new Button () {
                X = Application.GetRealWidth (480),
                Width = Application.GetRealWidth (150),
                Height = Application.GetRealHeight (40),
                Gravity = Gravity.CenterVertical,
                TextAlignment = TextAlignment.CenterLeft,
                TextColor = SkinStyle.Current.TextColor1,
                IsMoreLines = true,
                TextSize = 12,
                Text = text_link,
            };
 
            if (gatewayBase.isMoveToNewServer && !gatewayBase.isOnline) {
                wirelessView.AddChidren (rightButton1);
                rightButton1.Text = text_Upgraded;
            } else {
                if (gatewayBase.isOnline)
                    wirelessView.AddChidren (rightButton1);
                EventHandler<MouseEventArgs> eventHandler = (sender, e) => {
                    LinkOnePort (gatewayBase.Remote_UserName, gatewayBase.Remote_ProjectName);
                };
                nameButton1.MouseUpEventHandler = eventHandler;
                rightButton1.MouseUpEventHandler = eventHandler;
                wirelessView.MouseUpEventHandler = eventHandler;
            }
        }
 
        void LinkOnePort (string userName, string projectName) {
            var page = new RemoteOnePort (userName, projectName);
            MainPage.MainFrameLayout.AddChidren (page);
            page.ShowPage ();
 
        }
 
 
 
 
    }
}