-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathRowStore.cs
199 lines (165 loc) · 6.74 KB
/
RowStore.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
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
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;
namespace SecurityDriven.TinyORM
{
using Utils;
#region struct RowStore
public struct RowStore : IReadOnlyDictionary<string, object>, IDynamicMetaObjectProvider, IEquatable<RowStore>
{
static FieldNotFound notFound = new FieldNotFound();
public object[] RowValues;
internal RowStore(object[] rowValues) => this.RowValues = rowValues;
public ResultSetSchema Schema => (ResultSetSchema)this.RowValues[this.RowValues.Length - 1];
public IEnumerable<string> Keys => this.Schema.FieldNames;
public IEnumerable<object> Values => new ArraySegment<object>(this.RowValues, 0, this.RowValues.Length - 1);
public int Count => this.RowValues.Length - 1;
public object this[int i]
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
if (i == (this.RowValues.Length - 1)) ThrowIndexOutOfRangeException();
var result = this.RowValues[i];
return result == DBNull.Value ? null : result;
static void ThrowIndexOutOfRangeException() => throw new IndexOutOfRangeException("Index was outside the bounds of the array.");
}
}
public object this[string key]
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
if (!TryGetIndex(key, out var index))
{
return notFound;
}
var result = this.RowValues[index];
return result == DBNull.Value ? null : result;
}//get
[MethodImpl(MethodImplOptions.AggressiveInlining)]
set
{
if (!TryGetIndex(key, out var index))
{
ThrowArgumentException(key);
}
this.RowValues[index] = value ?? DBNull.Value;
static void ThrowArgumentException(string arg) => throw new ArgumentException("\"" + arg + "\" column is not found.");
}//set
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
bool TryGetIndex(string key, out int index) => this.Schema.FieldMap.TryGetValue(key, out index);
public IEnumerator<KeyValuePair<string, object>> GetEnumerator()
{
var fieldNames = this.Schema.FieldNames;
var rowValues = this.RowValues;
for (int i = 0; i < fieldNames.Length; ++i)
{
yield return new KeyValuePair<string, object>(fieldNames[i], rowValues[i]);
}
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() => this.GetEnumerator();
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override string ToString() => string.Join(Environment.NewLine, this);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override int GetHashCode() => this.RowValues.GetHashCode();
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override bool Equals(object obj) => obj is RowStore rowStore && Equals(rowStore);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool Equals(RowStore other) => this.RowValues == other.RowValues;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static bool operator ==(in RowStore rs1, in RowStore rs2) => rs1.RowValues == rs2.RowValues;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static bool operator !=(in RowStore rs1, in RowStore rs2) => rs1.RowValues != rs2.RowValues;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool ContainsKey(string key) => this.Schema.FieldMap.ContainsKey(key);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool TryGetValue(string key, out object value)
{
if (!TryGetIndex(key, out var index))
{
value = notFound;
return false;
}
value = this.RowValues[index];
if (value == DBNull.Value)
value = null;
return true;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DynamicMetaObject GetMetaObject(Expression parameter) => new RowStoreMetaObject(parameter, BindingRestrictions.Empty, this);
/// <summary>
/// Converts RowStore into an instance of T on a best-effort-match basis. Does not throw on any mismatches.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public T ToObject<T>() where T : class, new() => ToObject<T>(New<T>.Instance);
/// <summary>
/// Converts RowStore into an instance of T on a best-effort-match basis. Does not throw on any mismatches.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public T ToObject<T>(Func<T> objectFactory) where T : class
{
var setters = ReflectionHelper_Setter<T>.Setters;
var result = objectFactory();
//var dbNullValue = DBNull.Value;
var fieldNames = this.Schema.FieldNames;
for (int i = 0; i < fieldNames.Length; ++i)
{
if (setters.TryGetValue(fieldNames[i], out var setter))
{
var val = this.RowValues[i];
//if (val != dbNullValue)
setter(result, val);
//else setter(result, null);
}
}//for
return result;
}// ToObject<T>()
/// <summary>
/// Converts RowStore into an instance of T, and checks existence of all required (non-optional) properties. Failed checks throw an exception.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public T ToCheckedObject<T>(string[] optionalProperties = null) where T : class, new() => ToCheckedObject<T>(New<T>.Instance, optionalProperties);
/// <summary>
/// Converts RowStore into an instance of T, and checks existence of all required (non-optional) properties. Failed checks throw an exception.
/// </summary>
public T ToCheckedObject<T>(Func<T> objectFactory, string[] optionalProperties = null) where T : class
{
var setters = ReflectionHelper_Setter<T>.Setters;
var settersEnumerator = setters.GetEnumerator();
var result = objectFactory();
HashSet<string> optionalPropertyHashSet = null;
while (settersEnumerator.MoveNext())
{
var kvp = settersEnumerator.Current;
var val = this[kvp.Key];
if (val != notFound)
kvp.Value(result, val);
else
{
if (optionalPropertyHashSet == null)
{
if (optionalProperties == null || optionalProperties.Length == 0) goto THROW;
optionalPropertyHashSet = new HashSet<string>(optionalProperties, StringComparer.Ordinal);
}
if (optionalPropertyHashSet.Contains(kvp.Key)) { continue; }
THROW: throw new Exception(string.Format("RowStore has no match for class [{0}] property [{1}].", typeof(T), kvp.Key));
}
}//while
return result;
}// ToCheckedObject<T>()
}// struct RowStore
#endregion
#region FieldNotFound
public sealed class FieldNotFound
{
internal FieldNotFound() { }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1065:DoNotRaiseExceptionsInUnexpectedLocations")]
public sealed override string ToString() => throw new NotImplementedException(@"Field not found. Use ""obj is FieldNotFound"" instead of .ToString().");
}//class FieldNotFound
#endregion
}//ns