forked from ServiceStack/ServiceStack.Text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCachedTypeInfo.cs
More file actions
107 lines (90 loc) · 3.48 KB
/
CachedTypeInfo.cs
File metadata and controls
107 lines (90 loc) · 3.48 KB
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
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
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Runtime.Serialization;
using System.Threading;
namespace ServiceStack.Text
{
public class CachedTypeInfo
{
static Dictionary<Type, CachedTypeInfo> CacheMap = new Dictionary<Type, CachedTypeInfo>();
public static CachedTypeInfo Get(Type type)
{
if (CacheMap.TryGetValue(type, out var value))
return value;
var instance = new CachedTypeInfo(type);
Dictionary<Type, CachedTypeInfo> snapshot, newCache;
do
{
snapshot = CacheMap;
newCache = new Dictionary<Type, CachedTypeInfo>(CacheMap)
{
[type] = instance
};
} while (!ReferenceEquals(
Interlocked.CompareExchange(ref CacheMap, newCache, snapshot), snapshot));
return instance;
}
public CachedTypeInfo(Type type)
{
EnumInfo = EnumInfo.GetEnumInfo(type);
}
internal readonly EnumInfo EnumInfo;
}
public class EnumInfo
{
public static EnumInfo GetEnumInfo(Type type)
{
if (type.IsEnum)
return new EnumInfo(type);
var nullableType = Nullable.GetUnderlyingType(type);
if (nullableType?.IsEnum == true)
return new EnumInfo(nullableType);
return null;
}
private readonly Type enumType;
private EnumInfo(Type enumType)
{
this.enumType = enumType;
enumMemberReverseLookup = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase);
var enumMembers = enumType.GetFields(BindingFlags.Public | BindingFlags.Static);
foreach (var fi in enumMembers)
{
var enumValue = fi.GetValue(null);
var strEnum = fi.Name;
var enumMemberAttr = fi.FirstAttribute<EnumMemberAttribute>();
if (enumMemberAttr?.Value != null)
{
if (enumMemberValues == null)
{
enumMemberValues = new Dictionary<object, string>();
}
enumMemberValues[enumValue] = enumMemberAttr.Value;
enumMemberReverseLookup[enumMemberAttr.Value] = enumValue;
}
else
{
enumMemberReverseLookup[strEnum] = enumValue;
}
}
isEnumFlag = enumType.IsEnumFlags();
}
private readonly bool isEnumFlag;
private readonly Dictionary<object, string> enumMemberValues;
private readonly Dictionary<string, object> enumMemberReverseLookup;
public object GetSerializedValue(object enumValue)
{
if (enumMemberValues != null && enumMemberValues.TryGetValue(enumValue, out var memberValue))
return memberValue;
if (isEnumFlag || JsConfig.TreatEnumAsInteger)
return enumValue;
return enumValue.ToString();
}
public object Parse(string serializedValue)
{
if (enumMemberReverseLookup.TryGetValue(serializedValue, out var enumValue))
return enumValue;
return Enum.Parse(enumType, serializedValue, ignoreCase: true); //Also parses quoted int values, e.g. "1"
}
}
}