PgErrorAllTable.xaml.cs 9.64 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1
using CommunityToolkit.Mvvm.Input;
潘栩锋's avatar
潘栩锋 committed
2
using FLY.OBJComponents.Common;
3
using FLY.OBJComponents.IService;
4
using Misc;
潘栩锋's avatar
潘栩锋 committed
5 6
using System;
using System.Collections.Generic;
7 8
using System.Collections.ObjectModel;
using System.ComponentModel;
潘栩锋's avatar
潘栩锋 committed
9 10
using System.Linq;
using System.Windows.Controls;
11
using Unity;
潘栩锋's avatar
潘栩锋 committed
12

潘栩锋's avatar
潘栩锋 committed
13
namespace FLY.Thick.Base.UI
潘栩锋's avatar
潘栩锋 committed
14 15 16 17 18 19
{
    /// <summary>
    /// Page_Flow.xaml 的交互逻辑
    /// </summary>
    public partial class PgErrorAllTable : Page
    {
20 21

        PgErrorAllTableVm viewModel;
潘栩锋's avatar
潘栩锋 committed
22 23 24 25 26 27 28 29
        /// <summary>
        /// 
        /// </summary>
        public PgErrorAllTable()
        {
            InitializeComponent();
        }

30
        [InjectionMethod]
潘栩锋's avatar
潘栩锋 committed
31
        public void Init(
32
            IWarningSystem2Service warning,
33 34
            ParamDictionary paramDictionary,
            ToDescriptionHandler toDescription = null)
潘栩锋's avatar
潘栩锋 committed
35
        {
36 37 38
            //界面........................................

            viewModel = new PgErrorAllTableVm();
39
            viewModel.Init(warning, paramDictionary, toDescription);
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
            this.DataContext = viewModel;

        }
    }

    public class PgErrorAllTableVm : INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;

        /// <summary>
        /// 当前页面最后一行Id
        /// </summary>
        public long Id { get; protected set; } = -1;

        /// <summary>
        /// 最新的Id
        /// </summary>
        public long LastId { get; protected set; } = -1;

        private int windowSize = 30;
        /// <summary>
        /// 一页显示的行数
        /// </summary>
        public int WindowSize
        {
            get { return windowSize; }
            set
            {
                if (value < 10)
                    value = 30;
                if (windowSize != value)
                {
                    windowSize = value;
                }
            }
        }

        /// <summary>
        /// 当前就是最新的视图
        /// </summary>
        public bool IsNewest => Id == LastId;

        /// <summary>
        /// 数据加载中
        /// </summary>
        public bool IsLoading { get; protected set; }




        /// <summary>
        /// 通过时间查找数据
        /// </summary>
        public bool IsSearchByTime { get; set; }

        /// <summary>
        /// 查找时间
        /// </summary>
        public DateTime SearchTime { get; set; }

        /// <summary>
        /// 查找Id
        /// </summary>
        public long SearchId { get; set; }



        public ObservableCollection<FlyData_WarningHistory> Values { get; } = new ObservableCollection<FlyData_WarningHistory>();

        #region Cmd
        public RelayCommand PreViewCmd { get; }
        public RelayCommand NextViewCmd { get; }

        public RelayCommand ToNewestCmd { get; }

        public RelayCommand SearchCmd { get; }

        #endregion
        IWarningSystem2Service warning;
        ParamDictionary paramDictionary;
120
        ToDescriptionHandler toDescription;
121 122 123 124 125 126 127 128 129 130 131
        public PgErrorAllTableVm()
        {
            PreViewCmd = new RelayCommand(PreView);
            NextViewCmd = new RelayCommand(NextView);
            ToNewestCmd = new RelayCommand(ToNewest);
            SearchCmd = new RelayCommand(Search);

        }

        public void Init(
            IWarningSystem2Service warning,
132 133
            ParamDictionary paramDictionary,
            ToDescriptionHandler toDescription
134 135 136
            )
        {
            this.warning = warning;
137
            this.paramDictionary = paramDictionary;
138
            this.toDescription = toDescription;
139 140

            //窗口显示数据条数
141
            this.paramDictionary.SetBinding(this, nameof(WindowSize), 30);
142

143 144 145 146 147 148 149 150 151 152 153 154 155
            this.warning.PropertyChanged += BulkDB_PropertyChanged;

            this.PropertyChanged += CtrlTableViewModel_PropertyChanged;

            Misc.BindingOperations.SetBinding(this.warning, nameof(this.warning.LastId), this, nameof(LastId));

            ToNewest();
        }


        private void BulkDB_PropertyChanged(object sender, PropertyChangedEventArgs e)
        {
            if (e.PropertyName == nameof(FObjBase.FObjServiceClient.IsConnected))
潘栩锋's avatar
潘栩锋 committed
156
            {
157
                if ((this.warning as FObjBase.FObjServiceClient).IsConnected)
158
                {
159
                    ToNewest();
160
                }
161 162 163 164 165 166 167 168 169
                else
                {
                    IsLoading = false;
                }
            }
        }

        private void CtrlTableViewModel_PropertyChanged(object sender, PropertyChangedEventArgs e)
        {
170

潘栩锋's avatar
潘栩锋 committed
171 172
        }

173 174 175 176 177 178 179
        bool IsConnected
        {
            get
            {
                return (this.warning as FObjBase.FObjServiceClient).IsConnected;
            }
        }
180

181 182

        void GetTrendReponse(object asyncContext, object retData)
潘栩锋's avatar
潘栩锋 committed
183
        {
184
            IsLoading = false;
185
            var response = retData as Pack_GetTrendReponse<FlyData_WarningHistory>;
186 187

            //向Values 后面添加数据
188
            if (response.Values != null && response.Values.Count > 0)
189 190 191 192
            {
                //从尾向前排的!!!!

                //现在把数据反转,Id从小排到大
193
                response.Values.Reverse();
194 195 196

                Values.Clear();

197
                for (int i = 0; i < response.Values.Count(); i++)
198
                {
199 200 201 202 203
                    var error = response.Values[i].Clone();
                    if (toDescription != null)
                        error.Description = toDescription(error.ErrCode);

                    Values.Add(error);
204 205 206 207 208 209 210 211
                }

                //限制Values长度
                int remove_cnt = Values.Count() - WindowSize;
                for (int i = 0; i < remove_cnt; i++)
                    Values.RemoveAt(0);


212 213 214
                Id = response.Values.Last().ID;
                SearchId = response.Values.Last().ID;
                SearchTime = response.Values.Last().Time;
215 216 217 218 219 220 221
            }
            else
            {
                Values.Clear();
                //没有任何数据
                Id = -1;
            }
潘栩锋's avatar
潘栩锋 committed
222 223
        }

224
        void Search()
潘栩锋's avatar
潘栩锋 committed
225
        {
226 227 228 229 230
            if (IsSearchByTime)
            {
                Search(SearchTime);
            }
            else
潘栩锋's avatar
潘栩锋 committed
231
            {
232
                Search(SearchId);
潘栩锋's avatar
潘栩锋 committed
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
        /// <summary>
        /// WHERE ID 小于 lastId AND ID % graphparam.Interval == 0 ORDER BY ID DESC LIMIT graphparam.Len
        /// </summary>
        /// <param name="id"></param>
        void Search(long id)
        {
            if (id <= 0)
                return;

            if (!IsConnected)
                return;
            if (IsLoading)
                return;

            IsLoading = true;

            //TODO,计算,是否有重叠的数据
            warning.GetTrend(
                new Pack_GetTrendRequest()
                {
                    Id = id,
                    Interval = 1,
                    Count = WindowSize
                },
                GetTrendReponse, this);
        }

        /// <summary>
        /// WHERE Time 小于 lastTime AND ID % graphparam.Interval == 0 ORDER BY ID DESC LIMIT graphparam.Len
        /// </summary>
        /// <param name="lastId"></param>
        void Search(DateTime time)
潘栩锋's avatar
潘栩锋 committed
268
        {
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
            if (!IsConnected)
                return;
            if (IsLoading)
                return;

            IsLoading = true;
            //TODO,计算,是否有重叠的数据
            warning.GetTrend(
                new Pack_GetTrendRequest()
                {
                    Interval = 1,
                    Count = WindowSize,
                    IsSearchByTime = true,
                    Time = time
                },
                GetTrendReponse, this);
潘栩锋's avatar
潘栩锋 committed
285 286
        }

287 288 289 290
        /// <summary>
        /// 下一页
        /// </summary>
        void PreView()
潘栩锋's avatar
潘栩锋 committed
291
        {
292
            Search(Id - WindowSize * 1);
潘栩锋's avatar
潘栩锋 committed
293 294
        }

295 296 297 298
        /// <summary>
        /// 上一页
        /// </summary>
        void NextView()
潘栩锋's avatar
潘栩锋 committed
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

            Search(Id + WindowSize * 1);
        }

        /// <summary>
        /// 显示最新数据
        /// </summary>
        void ToNewest()
        {
            if (!IsConnected)
                return;
            if (IsLoading)
                return;

            IsLoading = true;
            warning.GetTrend(
                new Pack_GetTrendRequest()
                {
                    Id = 0,
                    Interval = 1,
                    Count = WindowSize
                },
                GetTrendReponse, this);
        }
    }
    public class PgErrorAllTableVmUt : PgErrorAllTableVm
    {

        public PgErrorAllTableVmUt()
        {
            DateTime time = DateTime.Now;

            Random random = new Random();
            int len = 120;
            List<FlyData_WarningHistory> bulkdb = new List<FlyData_WarningHistory>();


            for (int i = 0; i < len; i++)
            {
                var error = new FlyData_WarningHistory();
                error.ID = i;
                error.Time = time + TimeSpan.FromSeconds(i * 7);
                error.ErrCode = i % 10;
                error.Description = $"hhah {i}";
                error.State = i % 3 == 0 ? ERR_STATE.ON : ERR_STATE.OFF;
潘栩锋's avatar
潘栩锋 committed
345

346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
                bulkdb.Add(error);
            }

            WindowSize = 30;
            SearchId = 70;

            LastId = bulkdb.Last().ID;
            IsLoading = true;



            int startIndex = (int)(SearchId - WindowSize);
            int size = WindowSize;
            var values = bulkdb.Skip(startIndex).Take(size);
            foreach (var val in values)
                Values.Add(val);

            Id = Values.Last().ID;
            SearchId = Values.Last().ID;
            SearchTime = Values.Last().Time;
潘栩锋's avatar
潘栩锋 committed
366 367 368
        }
    }
}