forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpireType.cs
73 lines (65 loc) · 1.81 KB
/
ExpireType.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MissionPlanner.Utilities
{
public class ExpireType<T>
{
DateTime _setAt;
DateTime _expireAt;
T _value;
public T Value
{
get { return _value; }
set { _value = value; }
}
public ExpireType(T input, double seconds, T expiredValue)
{
Value = input;
_setAt = DateTime.Now;
_expireAt = _setAt.AddSeconds(seconds);
}
}
public static class ExpireType
{
static Dictionary<object, DateTime> _setAt = new Dictionary<object, DateTime>();
static Dictionary<object, DateTime> _expireAt = new Dictionary<object, DateTime>();
public static void Set(object input, double seconds)
{
_setAt[input] = DateTime.Now;
_expireAt[input] = DateTime.Now.AddSeconds(seconds);
cleanup();
}
public static bool HasExpired(object check)
{
// has it been set?
if (_expireAt.ContainsKey(check))
{
if (_expireAt[check] < DateTime.Now)
{
return true;
} else
{
return false;
}
}
else
{
return true;
}
}
static void cleanup()
{
var now = DateTime.Now;
foreach (var item in _expireAt.ToArray())
{
if (item.Value < now)
{
_setAt.Remove(item);
_expireAt.Remove(item);
}
}
}
}
}