generated from atc-net/atc-template-dotnet-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObjectExtensions.cs
87 lines (78 loc) · 2.56 KB
/
ObjectExtensions.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
namespace Atc.Wpf.SourceGenerators.Extensions;
internal static class ObjectExtensions
{
[SuppressMessage("Design", "MA0051:Method is too long", Justification = "OK.")]
public static string? TransformDefaultValueIfNeeded(
this object? defaultValue,
string type)
{
if (defaultValue is null)
{
return null;
}
var strDefaultValue = defaultValue
.ToString()?
.EnsureNoNameof()?
.ToString() ?? string.Empty;
if (!type.IsSimpleType())
{
return strDefaultValue;
}
switch (type)
{
case "bool":
strDefaultValue = strDefaultValue switch
{
"true" => "BooleanBoxes.TrueBox",
"True" => "BooleanBoxes.TrueBox",
"false" => "BooleanBoxes.FalseBox",
"False" => "BooleanBoxes.FalseBox",
_ => strDefaultValue,
};
break;
case "decimal":
strDefaultValue = strDefaultValue.Length == 0
? SimpleTypeFactory.CreateDefaultValueAsStrForType(type)
: strDefaultValue.Replace(',', '.') + "m";
break;
case "double":
strDefaultValue = strDefaultValue.Length == 0
? SimpleTypeFactory.CreateDefaultValueAsStrForType(type)
: strDefaultValue.Replace(',', '.') + "d";
break;
case "float":
strDefaultValue = strDefaultValue.Length == 0
? SimpleTypeFactory.CreateDefaultValueAsStrForType(type)
: strDefaultValue.Replace(',', '.') + "f";
break;
case "int" or "long":
if (strDefaultValue.Length == 0)
{
strDefaultValue = "0";
}
break;
case "string":
{
if (strDefaultValue.Length == 0)
{
strDefaultValue = "string.Empty";
}
break;
}
}
return strDefaultValue;
}
public static object? EnsureNoNameof(
this object? value)
{
if (value is null ||
!value.ToString().StartsWith("nameof", StringComparison.Ordinal))
{
return value;
}
return value
.ToString()
.Replace("nameof(", string.Empty)
.Replace(")", string.Empty);
}
}