Shuxia Ning
2024-11-06 adf8dc1c7cae1b12f486dcdb3d7daf4a5a59ec52
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
using DevExpress.XtraEditors;
using DevExpress.XtraGrid.Views.Grid.ViewInfo;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
 
namespace IStation.WinFrmUI.Monitor
{
    public partial class MonitorDataSourcesMgrPage : DocumentPage
    {
        public MonitorDataSourcesMgrPage()
        {
            InitializeComponent();
            this.PageTitle.Caption = "数据来源";
            this.gridView1.SetNormalEditView();
            this.gridView1.BestFitColumns();
            this.gridView1.OptionsView.ShowIndicator = false;
            this.gridView1.OptionsView.GroupDrawMode = DevExpress.XtraGrid.Views.Grid.GroupDrawMode.Office;
            this.gridView1.OptionsBehavior.AllowFixedGroups = DevExpress.Utils.DefaultBoolean.True;
            this.gridView1.OptionsView.ShowFooter = true;
            this.monitorDataSourcesListCtrl1.FocusedChangedEvent += MonitorDataSourcesListCtrl1_FocusedChangedEvent;
        }
 
        public class CurrentViewModel
        {
            public long StationID { get; set; }
            public string StationName { get; set; }
            public long GroupID { get; set; }
            public string GroupName { get; set; }
            public string SignalType { get; set; }
            public string Name { get; set; }
            public long SysId { get; set; }
            public long SignalId { get; set; }
            public string SignId { get; set; }
            public Model.eFormatType FormatType { get; set; }
            public Model.eFormulaType FormulaType { get; set; }
            public string FormulaParas { get; set; }
            public DateTime? MinTime { get; set; }
            public DateTime? MaxTime { get; set; }
            public int? RecordCount { get; set; }
        }
 
        private BLL.SignalType _bllSignalType = new BLL.SignalType();
 
        private Model.MonitorDataSources _model = null;
        private List<CurrentViewModel> _allBindingList = null;
 
        /// <summary>
        /// 清空数据
        /// </summary>
        public void Clear()
        {
            _allBindingList = new List<CurrentViewModel>();
            this.currentViewModelBindingSource.DataSource = _allBindingList;
        }
 
        /// <summary>
        /// 初始化数据
        /// </summary>
        public override void InitialDataSource()
        {
            this.monitorDataSourcesListCtrl1.SetBindingData();
        }
 
        //来源变换
        private void MonitorDataSourcesListCtrl1_FocusedChangedEvent(Model.MonitorDataSources obj)
        {
            _model = obj;
            SetBindingData(obj);
        }
 
        /// <summary>
        /// 绑定数据
        /// </summary>
        public void SetBindingData(Model.MonitorDataSources model)
        {
            WaitFrmHelper.ShowWaitForm();
            _allBindingList = new List<CurrentViewModel>();
            if (model != null)
            {
                var bllMonitorPointGroup = new BLL.MonitorPointGroup();
                var bllMonitorPoint = new BLL.MonitorPoint();
                var bllMonitorDataSetSummary = new BLL.MonitorDataSetSummary();
                var stations = new BLL.Station().GetAll();
                if (stations != null && stations.Any())
                {
                    foreach (var station in stations)
                    {
                        var monitorPointGroups = bllMonitorPointGroup.GetByBelongTypeAndBelongID(IStation.ObjectType.Station, station.ID);
                        if (monitorPointGroups == null || !monitorPointGroups.Any())
                            continue;
 
                        foreach (var group in monitorPointGroups)
                        {
                            var monitorPoints = bllMonitorPoint.GetExSignalWithSignalTypeByBelongTypeAndBelongIDAndGroupID(group.BelongType, group.BelongID, group.ID);
                            if (monitorPoints == null || !monitorPoints.Any())
                                continue;
                            foreach (var item in monitorPoints)
                            {
                                var vm = new CurrentViewModel();
                                vm.StationID = station.ID;
                                vm.StationName = station.Name;
                                vm.GroupID = group.ID;
                                vm.GroupName = group.Name;
                                vm.Name = item.Name;
                                vm.SysId = item.MonitorPointID;
                                vm.SignalId = item.SignalID;
                                vm.SignalType = item.SignalType;
                                vm.FormatType = item.FormatType;
                                var mapper = model.DataSourcesMappings?.Find(x => x.SysId == vm.SysId);
                                if (mapper != null)
                                {
                                    vm.SignId = mapper.SignId;
                                    vm.FormulaType = mapper.FormulaType;
                                    vm.FormulaParas = mapper.FormulaParas;
 
                                    var monitorDataSetSummaries = bllMonitorDataSetSummary.GetByMonitor(model.ID, item.MonitorPointID);
                                    if (monitorDataSetSummaries != null && monitorDataSetSummaries.Any())
                                    {
                                        vm.MinTime = monitorDataSetSummaries.Min(x => x.MinTime);
                                        vm.MaxTime = monitorDataSetSummaries.Max(x => x.MaxTime);
                                        vm.RecordCount = monitorDataSetSummaries.Sum(x => x.Count);
                                    }
                                }
                                _allBindingList.Add(vm);
                            }
                        }
                    }
                }
            }
 
            this.currentViewModelBindingSource.DataSource = _allBindingList;
            this.gridView1.ExpandAllGroups();
            this.gridView1.BestFitColumns();
            WaitFrmHelper.HideWaitForm();
        }
 
        #region GridView
 
        //自定义组名
        private void gridView1_CustomDrawGroupRow(object sender, DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventArgs e)
        {
            var vm = this.gridView1.GetRow(e.RowHandle) as CurrentViewModel;
            var grid = e.Info as GridGroupRowInfo;
            if (grid.Level == 0)
            {
                grid.GroupText = vm.StationName;
            }
            else
            {
                grid.GroupText = vm.GroupName;
            }
        }
 
        //自定义控件
        private void gridView1_CustomRowCellEdit(object sender, DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventArgs e)
        {
            if (e.Column == this.colFormulaType)
            {
                var edit = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
                edit.Items.Add("无", Model.eFormulaType.None, -1);
 
                var vm = this.gridView1.GetRow(e.RowHandle) as CurrentViewModel;
                if (vm==null)
                {
                    return;
                }
                if (vm.FormatType == Model.eFormatType.Numeric)
                {
                    edit.Items.Add("单位换算", Model.eFormulaType.Unit, -1);
                    edit.Items.Add("一元系数", Model.eFormulaType.Once, -1);
                    edit.Items.Add("二元系数", Model.eFormulaType.Twice, -1);
                }
                else
                {
                    edit.Items.Add("单一映射", Model.eFormulaType.Single, -1);
                    edit.Items.Add("比较映射", Model.eFormulaType.Compare, -1);
                    edit.Items.Add("区间映射", Model.eFormulaType.Range, -1);
                }
                edit.EditValueChanged += (s, args) =>
                {
                    vm.FormulaParas = string.Empty;
                };
                e.RepositoryItem = edit;
            }
        }
 
        //单元格点击
        private void gridView1_RowCellClick(object sender, DevExpress.XtraGrid.Views.Grid.RowCellClickEventArgs e)
        {
            if (e.Column == this.colFormulaParas)
            {
                var vm = this.gridView1.GetRow(e.RowHandle) as CurrentViewModel;
                var signalType = _bllSignalType.GetByIdentifier(vm.SignalType);
                if (vm.FormatType == Model.eFormatType.Numeric)
                {
                    switch (vm.FormulaType)
                    {
                        case Model.eFormulaType.Unit:
                            {
                                var dlg = new UnitRatioMatrixDlg();
                                dlg.Set(vm.FormulaParas, signalType);
                                dlg.ReloadDataEvent += (json) =>
                                {
                                    vm.FormulaParas = json;
                                    return true;
                                };
                                dlg.ShowDialog();
                            }
                            break;
                        case Model.eFormulaType.Once:
                            {
                                var dlg = new OnceRatioMatrixDlg();
                                dlg.Set(vm.FormulaParas);
                                dlg.ReloadDataEvent += (json) =>
                                {
                                    vm.FormulaParas = json;
                                    return true;
                                };
                                dlg.ShowDialog();
                            }
                            break;
                        case Model.eFormulaType.Twice:
                            {
                                var dlg = new TwiceRatioMatrixDlg();
                                dlg.Set(vm.FormulaParas);
                                dlg.ReloadDataEvent += (json) =>
                                {
                                    vm.FormulaParas = json;
                                    return true;
                                };
                                dlg.ShowDialog();
                            }
                            break;
                    }
                }
                else
                {
                    switch (vm.FormulaType)
                    {
                        case Model.eFormulaType.Single:
                            {
                                var dlg = new SingleMappingMatrixDlg();
                                dlg.Set(vm.FormulaParas, signalType);
                                dlg.ReloadDataEvent += (json) =>
                                {
                                    vm.FormulaParas = json;
                                    return true;
                                };
                                dlg.ShowDialog();
                            }
                            break;
                        case Model.eFormulaType.Compare:
                            {
                                var dlg = new CompareMappingMatrixDlg();
                                dlg.Set(vm.FormulaParas, signalType);
                                dlg.ReloadDataEvent += (json) =>
                                {
                                    vm.FormulaParas = json;
                                    return true;
                                };
                                dlg.ShowDialog();
                            }
                            break;
                        case Model.eFormulaType.Range:
                            {
                                var dlg = new RangeMappingMatrixDlg();
                                dlg.Set(vm.FormulaParas);
                                dlg.ReloadDataEvent += (json) =>
                                {
                                    vm.FormulaParas = json;
                                    return true;
                                };
                                dlg.ShowDialog();
                            }
                            break;
                    }
                }
            }
        }
 
        #endregion
 
        #region 菜单
 
        //展开
        private void barBtnExpand_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            this.gridView1.ExpandGroupRow(this.gridView1.FocusedRowHandle, true);
        }
 
        //折叠
        private void barBtnCollapse_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            this.gridView1.CollapseGroupRow(this.gridView1.FocusedRowHandle, true);
        }
 
        //全部展开
        private void barBtnExpandAll_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            this.gridView1.ExpandAllGroups();
        }
 
        //全部折叠
        private void barBtnCollapseAll_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            this.gridView1.CollapseAllGroups();
        }
 
        //检索
        private void barCekSearch_CheckedChanged(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            if (this.barCekSearch.Checked)
                this.gridView1.ShowFindPanel();
            else
                this.gridView1.HideFindPanel();
        }
 
        // 刷新数据
        private void barBtnRefresh_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            InitialDataSource();
        }
 
 
        #endregion
 
 
        // 保存
        private void barBtnSave_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            if (_allBindingList == null || !_allBindingList.Any())
                return;
            this.gridView1.ClearColumnErrors();
            this.gridView1.CloseEditor();
            this.gridView1.UpdateCurrentRow();
 
            for (int i = 0; i < _allBindingList.Count; i++)
            {
                var vm = _allBindingList[i];
                if (vm.FormulaType != Model.eFormulaType.None)
                {
                    if (string.IsNullOrEmpty(vm.FormulaParas))
                    {
                        this.gridView1.FocusedRowHandle = i;
                        this.gridView1.SetColumnError(this.colFormulaParas, "必填项");
                        return;
                    }
                }
            }
 
            var mappers = _allBindingList.Where(x => !string.IsNullOrEmpty(x.SignId)).
                                            Select(x => new Model.DataSourcesMapping()
                                            {
                                                SysId = x.SysId,
                                                SignId = x.SignId,
                                                FormulaType = x.FormulaType,
                                                FormulaParas = x.FormulaParas
                                            }).ToList();
 
            var operatingObjList = new List<CurrentViewModel>();
            var oldMappings = _model.DataSourcesMappings?.ToList();
            if (oldMappings != null)
            {
                foreach (var old in oldMappings)
                {
                    var vm = _allBindingList.Find(x => x.SysId == old.SysId);
                    var exist = mappers.Find(x => x.SysId == old.SysId);
                    if (exist == null)
                    {
                        if (vm.RecordCount.HasValue)
                        {
                            operatingObjList.Add(vm);
                        }
                    }
                    else
                    {
                        if (exist.SignId != old.SignId ||
                            exist.FormulaType != old.FormulaType ||
                            exist.FormulaParas != old.FormulaParas)
                        {
                            if (vm.RecordCount.HasValue)
                            {
                                operatingObjList.Add(vm);
                            }
                        }
                    }
                }
            }
 
            _model.DataSourcesMappings = mappers;
            var bol = new BLL.MonitorDataSources().Update(_model);
            if (!bol)
            {
                XtraMessageBox.Show("保存失败!");
                return;
            }
            XtraMessageBox.Show("保存成功!");
 
            if (operatingObjList.Any())
            {
                if (XtraMessageBox.Show($"某些配置项修改前存在历史数据,是否清空?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation) != DialogResult.OK)
                    return;
                var bllMonitorDataSet = new BLL.MonitorDataSet();
                foreach (var item in operatingObjList)
                {
                    var clearBol = bllMonitorDataSet.Clear(_model.ID, item.SysId, item.SignalId);
                }
                SetBindingData(_model);
            }
        }
 
        //导入数据
        private void barBtnImport_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            if (_model == null)
                return;
            var bol = MonitorDataImportHelper.Import(_model.ID, _model.DataSourcesMappings);
            if (!bol)
            {
                return;
            }
            XtraMessageBox.Show("导入成功!");
            SetBindingData(_model);
        }
 
 
 
 
    }
}