-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtility.cs
109 lines (91 loc) · 2.52 KB
/
Utility.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
using System;
using System.Collections.Generic;
using System.Globalization;
namespace RealtyCloudAPI
{
internal static class Utility
{
public delegate bool TryObjectBuild<T>(IDictionary<string, object> data, out T value);
public static bool TryGetString(this IDictionary<string, object> data, string key, out string value)
{
object obj;
if(data.TryGetValue(key, out obj) && obj is string)
{
value = (string)obj;
return true;
}
value = string.Empty;
return false;
}
public static bool TryGetDecimal(this IDictionary<string, object> data, string key, out decimal value)
{
string str;
if(data.TryGetString(key, out str))
{
str = str.Replace(',', '.');
return decimal.TryParse(str, NumberStyles.Any, CultureInfo.InvariantCulture, out value);
}
value = decimal.Zero;
return false;
}
public static bool TryGetInt(this IDictionary<string, object> data, string key, out int value)
{
string str;
if(data.TryGetString(key, out str))
{
return int.TryParse(str, NumberStyles.Any, CultureInfo.InvariantCulture, out value);
}
value = 0;
return false;
}
public static bool TryGetBool(this IDictionary<string, object> data, string key, out bool value)
{
string str;
if(data.TryGetString(key, out str))
{
return bool.TryParse(str, out value);
}
value = false;
return false;
}
public static bool TryGetDateTime(this IDictionary<string, object> data, string key, out DateTime value)
{
string str;
if(data.TryGetString(key, out str))
{
return DateTime.TryParse(str, out value);
}
value = DateTime.MinValue;
return false;
}
public static bool TryGetObj<T>(this IDictionary<string, object> data, string key, TryObjectBuild<T> builder, out T value)
{
object obj;
if(data.TryGetValue(key, out obj) && obj is IDictionary<string, object>)
{
return builder.Invoke(obj as IDictionary<string, object>, out value);
}
value = default(T);
return false;
}
public static bool TryGetObjArray<T>(this IDictionary<string, object> data, string key, TryObjectBuild<T> builder, out T[] value)
{
object obj;
if(data.TryGetValue(key, out obj) && obj is IList<object>)
{
var list = (IList<object>)obj;
value = new T[list.Count];
for(int i = 0; i < list.Count; i++)
{
if(!(list[i] is IDictionary<string, object> && builder.Invoke(list[i] as IDictionary<string, object>, out value[i])))
{
return false;
}
}
return true;
}
value = null;
return false;
}
}
}