lixiaojun
2024-04-30 b4db153d2e28d451592811fea29c6d1bab71887b
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
using Yw.Service.Basic;
using Yw.Service.Monitor;
 
namespace Yw.Server
{
    /// <summary>
    /// 
    /// </summary>
    public class EMWSRunAnalyChangeTimesHelper
    {
        private static readonly ConcurrentDictionary<long, List<int>> _dict = new();//缓存
 
        /// <summary>
        /// 设置
        /// </summary>
        public static void Set(long configureId, int changeTimes, Yw.Model.MonitorPoint monitor, Yw.Model.MonitorRealRecord record)
        {
            _dict.TryAdd(configureId, new List<int>());
            if (_dict[configureId].Count >= changeTimes)
            {
                _dict[configureId].RemoveAt(0);
            }
            var rsa = Yw.Run.RunStatus.Shut;
            if (monitor != null)
            {
                if (record != null)
                {
                    if (int.TryParse(record.DataValue, out int intDataValue))
                    {
                        if (intDataValue > Yw.Monitor.RunStatus.Shut)
                        {
                            rsa = Yw.Run.RunStatus.Run;
                        }
                    }
                }
                var config_interrupt = Yw.Run.SysParas.EnableMonitorInterruptJudgement.GetPValue<bool?>();
                if (config_interrupt.HasValue && config_interrupt.Value)
                {
                    if (monitor.IsInterrupt(record))
                    {
                        rsa = Yw.Run.RunStatus.Shut;
                    }
                }
            }
            _dict[configureId].Add(rsa);
        }
 
        /// <summary>
        /// 是否改变
        /// </summary>
        public static bool HasChanged(long configureId, int changeTimes)
        {
            if (!_dict.ContainsKey(configureId))
            {
                return false;
            }
            if (_dict[configureId].Count < changeTimes)
            {
                return false;
            }
            if (_dict[configureId].Distinct().Count() > 1)
            {
                return false;
            }
            return true;
        }
 
 
 
 
 
 
 
 
 
    }
}