-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathEnumMapper.cs
53 lines (43 loc) · 1.63 KB
/
EnumMapper.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
// <copyright file="EnumMapper.cs" company="Software Antics">
// Copyright (c) Software Antics. All rights reserved.
// </copyright>
namespace FinalEngine.Utilities;
using System;
using System.Collections.Generic;
public class EnumMapper : IEnumMapper
{
private readonly IReadOnlyDictionary<Enum, Enum> forwardToReverseMap;
private readonly IReadOnlyDictionary<Enum, Enum> reverseToForwardMap;
public EnumMapper(IReadOnlyDictionary<Enum, Enum> forwardToReverseMap)
{
this.forwardToReverseMap = forwardToReverseMap ?? throw new ArgumentNullException(nameof(forwardToReverseMap));
this.reverseToForwardMap = new Dictionary<Enum, Enum>();
foreach (var key in forwardToReverseMap.Keys)
{
((IDictionary<Enum, Enum>)this.reverseToForwardMap).Add(forwardToReverseMap[key], key);
}
}
public TResult Forward<TResult>(Enum enumeration)
where TResult : Enum
{
return Get<TResult>(this.forwardToReverseMap, enumeration);
}
public TResult Reverse<TResult>(Enum enumeration)
where TResult : Enum
{
return Get<TResult>(this.reverseToForwardMap, enumeration);
}
private static TResult Get<TResult>(IReadOnlyDictionary<Enum, Enum> map, Enum enumeration)
where TResult : Enum
{
ArgumentNullException.ThrowIfNull(enumeration, nameof(enumeration));
try
{
return (TResult)map[enumeration];
}
catch (KeyNotFoundException)
{
throw new KeyNotFoundException($"The specified {nameof(enumeration)} couldn't be located by the enumeration mapper.");
}
}
}