-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathExtensions.cs
More file actions
209 lines (172 loc) · 5.49 KB
/
Extensions.cs
File metadata and controls
209 lines (172 loc) · 5.49 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
using System.Data;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Text.RegularExpressions;
namespace OpenTNF.Library
{
internal static class Extensions
{
// See http://www.geopackage.org/spec/, Table 1. GeoPackage Data Types
private const string GpkgDateFormat = "yyyy-MM-dd";
private const string GpkgDateTimeFormat = "yyyy-MM-ddTHH:mm:ss.fffZ";
private static readonly uint[] Lookup32 = CreateLookup32();
private static uint[] CreateLookup32()
{
var result = new uint[256];
for (int i = 0; i < 256; i++)
{
string s = i.ToString("X2");
result[i] = ((uint)s[0]) + ((uint)s[1] << 16);
}
return result;
}
public static string ToHex(this byte[] value)
{
var lookup32 = Lookup32;
var result = new char[value.Length * 2];
for (int i = 0; i < value.Length; i++)
{
var val = lookup32[value[i]];
result[2 * i] = (char)val;
result[2 * i + 1] = (char)(val >> 16);
}
return FormatHex(new string(result));
}
private static string FormatHex(string value)
{
var res = Regex.Replace(value, ".{4}", "$0 ");
return Regex.Replace(res, "(.{39})(.)", "$0" + Environment.NewLine);
}
public static bool? ToBoolean(this object value)
{
if (value is DBNull)
{
return null;
}
return Convert.ToBoolean(value);
}
public static DateTime? ToDateTime(this object value)
{
if (value is DBNull)
{
return null;
}
if (value is DateTime)
{
return (DateTime)value;
}
if (value is string || value is int)
{
DateTime date;
if (DateTime.TryParseExact(value.ToString(), "yyyyMMdd", CultureInfo.InvariantCulture, DateTimeStyles.None, out date))
{
return date;
}
if (DateTime.TryParse(value.ToString(), out date))
{
return date;
}
}
return null;
}
public static DateTime? ToUniversalDateTime(this object value)
{
return value?.ToDateTime()?.ToUniversalTime();
}
public static string ToDateTimeString(this DateTime? dateTimeVal)
{
return dateTimeVal?.ToDateTimeString();
}
public static string ToDateTimeString(this DateTime dateTimeVal)
{
return dateTimeVal.ToUniversalTime().ToString(GpkgDateTimeFormat);
}
public static string ToDateTimeUtcMidnightString(this DateTime? dateTimeVal)
{
return dateTimeVal?.ToDateTimeUtcMidnightString();
}
public static string ToDateTimeUtcMidnightString(this DateTime dateTimeVal)
{
return new DateTime(dateTimeVal.Year, dateTimeVal.Month, dateTimeVal.Day, 0, 0, 0, DateTimeKind.Utc).ToString(GpkgDateTimeFormat);
}
public static string ToDateString(this DateTime? dateTimeVal)
{
return dateTimeVal?.ToString(GpkgDateFormat);
}
public static double? ToDouble(this object value)
{
if (value is DBNull)
{
return null;
}
if (value is decimal)
{
return Convert.ToDouble(value);
}
return (double)value;
}
public static double? ToDouble(this IDataRecord reader, int index)
{
if (reader[index] is DBNull)
{
return null;
}
return (double)reader.GetDecimal(index);
}
public static Int16? ToInt16(this object value)
{
if (value is DBNull)
{
return null;
}
return Convert.ToInt16(value);
}
public static int? ToInt32(this object value)
{
if (value is DBNull)
{
return null;
}
return Convert.ToInt32(value);
}
public static Int64? ToInt64(this object value)
{
if (value is DBNull)
{
return null;
}
return Convert.ToInt64(value);
}
public static int ToInt(this object value)
{
return Convert.ToInt32(value);
}
public static string FromDbString(this object value)
{
if (value is DBNull)
{
return null;
}
return value.ToString();
}
public static object ReadIfExists(this IDataRecord dataRecord, string name)
{
if (dataRecord.HasName(name))
{
return dataRecord[name];
}
return DBNull.Value;
}
public static bool HasName(this IDataRecord dataRecord, string name)
{
for (int i = 0; i < dataRecord.FieldCount; i++)
{
if (string.Equals(dataRecord.GetName(i), name, StringComparison.InvariantCultureIgnoreCase))
{
return true;
}
}
return false;
}
}
}