forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnumExtensions.cs
More file actions
138 lines (123 loc) · 4.9 KB
/
Copy pathEnumExtensions.cs
File metadata and controls
138 lines (123 loc) · 4.9 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
using System;
using System.Collections.Generic;
using System.Linq;
namespace ServiceStack
{
public static class EnumUtils
{
public static IEnumerable<T> GetValues<T>() where T : Enum => Enum.GetValues(typeof(T)).Cast<T>();
}
public static class EnumExtensions
{
/// <summary>
/// Gets the textual description of the enum if it has one. e.g.
///
/// <code>
/// enum UserColors
/// {
/// [Description("Bright Red")]
/// BrightRed
/// }
/// UserColors.BrightRed.ToDescription();
/// </code>
/// </summary>
/// <param name="enum"></param>
/// <returns></returns>
public static string ToDescription(this Enum @enum)
{
var type = @enum.GetType();
var memInfo = type.GetMember(@enum.ToString());
if (memInfo.Length > 0)
{
var description = memInfo[0].GetDescription();
if (description != null)
return description;
}
return @enum.ToString();
}
public static List<KeyValuePair<string, string>> ToKeyValuePairs<T>(this IEnumerable<T> enums) where T : Enum
=> enums.Map(x => new KeyValuePair<string,string>(
x.ToString(),
x.ToDescription()));
public static List<string> ToList(this Enum @enum)
{
#if !(SL54 || WP)
return new List<string>(Enum.GetNames(@enum.GetType()));
#else
return @enum.GetType().GetFields(BindingFlags.Static | BindingFlags.Public).Select(fi => fi.Name).ToList();
#endif
}
public static TypeCode GetTypeCode(this Enum @enum)
{
return Enum.GetUnderlyingType(@enum.GetType()).GetTypeCode();
}
public static bool Has<T>(this Enum @enum, T value)
{
var typeCode = @enum.GetTypeCode();
switch (typeCode)
{
case TypeCode.Byte:
return (((byte)(object)@enum & (byte)(object)value) == (byte)(object)value);
case TypeCode.Int16:
return (((short)(object)@enum & (short)(object)value) == (short)(object)value);
case TypeCode.Int32:
return (((int)(object)@enum & (int)(object)value) == (int)(object)value);
case TypeCode.Int64:
return (((long)(object)@enum & (long)(object)value) == (long)(object)value);
default:
throw new NotSupportedException($"Enums of type {@enum.GetType().Name}");
}
}
public static bool Is<T>(this Enum @enum, T value)
{
var typeCode = @enum.GetTypeCode();
switch (typeCode)
{
case TypeCode.Byte:
return (byte)(object)@enum == (byte)(object)value;
case TypeCode.Int16:
return (short)(object)@enum == (short)(object)value;
case TypeCode.Int32:
return (int)(object)@enum == (int)(object)value;
case TypeCode.Int64:
return (long)(object)@enum == (long)(object)value;
default:
throw new NotSupportedException($"Enums of type {@enum.GetType().Name}");
}
}
public static T Add<T>(this Enum @enum, T value)
{
var typeCode = @enum.GetTypeCode();
switch (typeCode)
{
case TypeCode.Byte:
return (T)(object)((byte)(object)@enum | (byte)(object)value);
case TypeCode.Int16:
return (T)(object)((short)(object)@enum | (short)(object)value);
case TypeCode.Int32:
return (T)(object)((int)(object)@enum | (int)(object)value);
case TypeCode.Int64:
return (T)(object)((long)(object)@enum | (long)(object)value);
default:
throw new NotSupportedException($"Enums of type {@enum.GetType().Name}");
}
}
public static T Remove<T>(this Enum @enum, T value)
{
var typeCode = @enum.GetTypeCode();
switch (typeCode)
{
case TypeCode.Byte:
return (T)(object)((byte)(object)@enum & ~(byte)(object)value);
case TypeCode.Int16:
return (T)(object)((short)(object)@enum & ~(short)(object)value);
case TypeCode.Int32:
return (T)(object)((int)(object)@enum & ~(int)(object)value);
case TypeCode.Int64:
return (T)(object)((long)(object)@enum & ~(long)(object)value);
default:
throw new NotSupportedException($"Enums of type {@enum.GetType().Name}");
}
}
}
}