-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathCounter_DateTime.cs
67 lines (54 loc) · 1.78 KB
/
Counter_DateTime.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
namespace VerifyTests;
public partial class Counter
{
public static void UseDateTimeComparer(IEqualityComparer<DateTime> comparer)
{
InnerVerifier.ThrowIfVerifyHasBeenRun();
dateTimeComparer = comparer;
}
static IEqualityComparer<DateTime> dateTimeComparer = new DateTimeComparer();
Dictionary<DateTime, (int intValue, string stringValue)> dateTimeCache = new(dateTimeComparer);
static Dictionary<DateTime, string> globalNamedDateTimes = [];
#region DateTimeComparer
class DateTimeComparer : IEqualityComparer<DateTime>
{
public bool Equals(DateTime x, DateTime y) =>
x == y &&
x.Kind == y.Kind;
public int GetHashCode(DateTime obj) =>
obj.GetHashCode() + (int) obj.Kind;
}
#endregion
int currentDateTime;
internal static void AddNamed(DateTime value, string name)
{
InnerVerifier.ThrowIfVerifyHasBeenRun();
globalNamedDateTimes.Add(value, name);
}
public int Next(DateTime input) =>
NextValue(input)
.intValue;
public string NextString(DateTime input) =>
NextValue(input)
.stringValue;
(int intValue, string stringValue) NextValue(DateTime input)
{
if (namedDateTimes.TryGetValue(input, out var name) ||
globalNamedDateTimes.TryGetValue(input, out name))
{
return new(0, name);
}
return dateTimeCache.GetOrAdd(
input,
_ => BuildDateTimeValue());
}
(int intValue, string stringValue) BuildDateTimeValue()
{
var value = Interlocked.Increment(ref currentDateTime);
if (dateCounting)
{
return (value, $"DateTime_{value}");
}
return (value, "{Scrubbed}");
}
}