-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTypeRegistry.cs
163 lines (150 loc) · 6.68 KB
/
TypeRegistry.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
using CBAM.SQL.Implementation;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using UtilPack;
using TStaticTypeCacheValue = System.Collections.Generic.IDictionary<System.String, CBAM.SQL.PostgreSQL.PgSQLTypeDatabaseData>;
using TypeInfo = System.ValueTuple<CBAM.SQL.PostgreSQL.PgSQLTypeFunctionality, CBAM.SQL.PostgreSQL.PgSQLTypeDatabaseData>;
using TypeInfoWithCLRType = System.ValueTuple<System.Type, CBAM.SQL.PostgreSQL.PgSQLTypeFunctionality, CBAM.SQL.PostgreSQL.PgSQLTypeDatabaseData>;
namespace CBAM.SQL.PostgreSQL.Implementation
{
using SQLConnectionFunctionality = Func<String, IAsyncEnumerable<SQLStatementExecutionResult>>; // Abstractions.Connection<SQLStatementBuilder, SQLStatementBuilderInformation, String, SQLStatementExecutionResult, SQLConnectionVendorFunctionality, IAsyncEnumerable<SQLStatementExecutionResult>>;
internal class TypeRegistryImpl : TypeRegistry
{
private const Char ARRAY_PREFIX = '_';
private readonly IDictionary<Int32, TypeFunctionalityInformation> _typeInfos;
private readonly IDictionary<Type, TypeFunctionalityInformation> _typeInfosByCLRType;
private readonly SQLConnectionVendorFunctionality _vendorFunctionality;
private readonly SQLConnectionFunctionality _connectionFunctionality;
public TypeRegistryImpl(
SQLConnectionVendorFunctionality vendorFunctionality,
SQLConnectionFunctionality connectionFunctionality
)
{
this._vendorFunctionality = ArgumentValidator.ValidateNotNull( nameof( vendorFunctionality ), vendorFunctionality );
this._connectionFunctionality = ArgumentValidator.ValidateNotNull( nameof( connectionFunctionality ), connectionFunctionality );
this._typeInfos = new Dictionary<Int32, TypeFunctionalityInformation>();
this._typeInfosByCLRType = new Dictionary<Type, TypeFunctionalityInformation>();
}
public async ValueTask<Int32> AddTypeFunctionalitiesAsync( params (String DBTypeName, Type CLRType, Func<PgSQLTypeDatabaseData, TypeFunctionalityCreationResult> FunctionalityCreator)[] functionalities )
{
var retVal = 0;
if ( functionalities != null )
{
var dic = functionalities.ToDictionary_Overwrite( tuple => tuple.DBTypeName, tuple => tuple );
retVal = dic.Count;
this.AssignTypeData(
await this.ReadTypeDataFromServer( dic.Keys ),
typeName => dic[typeName].CLRType,
tuple => dic[tuple.DBTypeName].FunctionalityCreator( tuple.BoundData )
);
}
return retVal;
}
public TypeFunctionalityInformation TryGetTypeInfo( Int32 typeID )
{
this._typeInfos.TryGetValue( typeID, out var retVal );
return retVal;
}
public TypeFunctionalityInformation TryGetTypeInfo( Type clrType )
{
TypeFunctionalityInformation retVal;
if ( clrType != null )
{
KeyValuePair<Type, TypeFunctionalityInformation> kvp;
if ( !this._typeInfosByCLRType.TryGetValue( clrType, out retVal ) )
{
if ( ( kvp = this.TryFindByParent( clrType ) ).Value != null )
{
retVal = kvp.Value;
}
else
{
retVal = default;
}
}
}
else
{
retVal = default;
}
return retVal;
}
private KeyValuePair<Type, TypeFunctionalityInformation> TryFindByParent( Type clrType )
{
var child = clrType
#if !NET40 && !NET45
.GetTypeInfo()
#endif
;
return this._typeInfosByCLRType.FirstOrDefault( kvp => kvp.Key
#if !NET40 && !NET45
.GetTypeInfo()
#endif
.IsAssignableFrom( child )
);
}
public async ValueTask<TStaticTypeCacheValue> ReadTypeDataFromServer(
IEnumerable<String> typeNames
)
{
return await this._connectionFunctionality(
"SELECT typname, oid, typdelim, typelem\n" +
"FROM pg_type\n" +
"WHERE typname IN (" + String.Join( ", ", typeNames.Select( typename =>
{
typename = this._vendorFunctionality.EscapeLiteral( typename );
return "'" + typename + "', '" + ARRAY_PREFIX + typename + "'";
} ) ) + ")\n"
).IncludeDataRowsOnly()
.Select( async row => new PgSQLTypeDatabaseData(
// We need to get all values as strings, since we might not have type mapping yet (we might be building it right here)
await row.GetValueAsync<String>( 0 ),
Int32.Parse( await row.GetValueAsync<String>( 1 ) ),
await row.GetValueAsync<String>( 2 ),
Int32.Parse( await row.GetValueAsync<String>( 3 )
) ) )
.ToDictionaryAsync( type => type.TypeName, type => type );
}
public void AssignTypeData(
TStaticTypeCacheValue typeData,
Func<String, Type> clrTypeExtractor,
Func<(String DBTypeName, PgSQLTypeDatabaseData BoundData), TypeFunctionalityCreationResult> funcExtractor
)
{
foreach ( var kvp in typeData )
{
var typeName = kvp.Key;
var boundData = kvp.Value;
PgSQLTypeFunctionality thisFunc;
Boolean isDefaultForThisCLRType;
Type clrType;
if ( typeName[0] == ARRAY_PREFIX )
{
clrType = clrTypeExtractor( typeName.Substring( 1 ) );
thisFunc = new PgSQLTypeFunctionalityForArrays( this, ref clrType, kvp.Value.ElementTypeID );
clrType = clrType.MakeArrayType();
isDefaultForThisCLRType = true;
}
else
{
clrType = clrTypeExtractor( typeName );
var result = funcExtractor( (typeName, boundData) );
(thisFunc, isDefaultForThisCLRType) = (result.TypeFunctionality, result.IsDefaultForCLRType);
}
if ( thisFunc != null )
{
var typeInfo = new TypeFunctionalityInformation( clrType, thisFunc, boundData );
this._typeInfos[boundData.TypeID] = typeInfo;
if ( isDefaultForThisCLRType || !this._typeInfosByCLRType.ContainsKey( clrType ) )
{
this._typeInfosByCLRType[clrType] = typeInfo;
}
}
}
}
}
}