-
Notifications
You must be signed in to change notification settings - Fork 228
/
NpgsqlModelValidator.cs
232 lines (205 loc) · 9.93 KB
/
NpgsqlModelValidator.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
using Npgsql.EntityFrameworkCore.PostgreSQL.Internal;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
namespace Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal;
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
public class NpgsqlModelValidator : RelationalModelValidator
{
/// <summary>
/// The backend version to target.
/// </summary>
private readonly Version _postgresVersion;
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
public NpgsqlModelValidator(
ModelValidatorDependencies dependencies,
RelationalModelValidatorDependencies relationalDependencies,
INpgsqlSingletonOptions npgsqlSingletonOptions)
: base(dependencies, relationalDependencies)
=> _postgresVersion = npgsqlSingletonOptions.PostgresVersion;
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
public override void Validate(IModel model, IDiagnosticsLogger<DbLoggerCategory.Model.Validation> logger)
{
base.Validate(model, logger);
ValidateIdentityVersionCompatibility(model);
ValidateIndexIncludeProperties(model);
}
/// <summary>
/// Validates that identity columns are used only with PostgreSQL 10.0 or later.
/// </summary>
/// <param name="model">The model to validate.</param>
protected virtual void ValidateIdentityVersionCompatibility(IModel model)
{
if (_postgresVersion.AtLeast(10))
{
return;
}
var strategy = model.GetValueGenerationStrategy();
if (strategy is NpgsqlValueGenerationStrategy.IdentityAlwaysColumn or NpgsqlValueGenerationStrategy.IdentityByDefaultColumn)
{
throw new InvalidOperationException(
$"'{strategy}' requires PostgreSQL 10.0 or later. " +
"If you're using an older version, set PostgreSQL compatibility mode by calling " +
$"'optionsBuilder.{nameof(NpgsqlDbContextOptionsBuilder.SetPostgresVersion)}()' in your model's OnConfiguring. " +
"See the docs for more info.");
}
foreach (var property in model.GetEntityTypes().SelectMany(e => e.GetProperties()))
{
var propertyStrategy = property.GetValueGenerationStrategy();
if (propertyStrategy is NpgsqlValueGenerationStrategy.IdentityAlwaysColumn
or NpgsqlValueGenerationStrategy.IdentityByDefaultColumn)
{
throw new InvalidOperationException(
$"{property.DeclaringType}.{property.Name}: '{propertyStrategy}' requires PostgreSQL 10.0 or later.");
}
}
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override void ValidateValueGeneration(
IEntityType entityType,
IKey key,
IDiagnosticsLogger<DbLoggerCategory.Model.Validation> logger)
{
if (entityType.GetTableName() != null
&& (string?)entityType[RelationalAnnotationNames.MappingStrategy] == RelationalAnnotationNames.TpcMappingStrategy)
{
foreach (var storeGeneratedProperty in key.Properties.Where(
p => (p.ValueGenerated & ValueGenerated.OnAdd) != 0
&& p.GetValueGenerationStrategy() != NpgsqlValueGenerationStrategy.Sequence))
{
logger.TpcStoreGeneratedIdentityWarning(storeGeneratedProperty);
}
}
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected virtual void ValidateIndexIncludeProperties(IModel model)
{
foreach (var index in model.GetEntityTypes().SelectMany(t => t.GetDeclaredIndexes()))
{
var includeProperties = index.GetIncludeProperties();
if (includeProperties?.Count > 0)
{
var notFound = includeProperties
.FirstOrDefault(i => index.DeclaringEntityType.FindProperty(i) is null);
if (notFound is not null)
{
throw new InvalidOperationException(
NpgsqlStrings.IncludePropertyNotFound(index.DeclaringEntityType.DisplayName(), notFound));
}
var duplicate = includeProperties
.GroupBy(i => i)
.Where(g => g.Count() > 1)
.Select(y => y.Key)
.FirstOrDefault();
if (duplicate is not null)
{
throw new InvalidOperationException(
NpgsqlStrings.IncludePropertyDuplicated(index.DeclaringEntityType.DisplayName(), duplicate));
}
var inIndex = includeProperties
.FirstOrDefault(i => index.Properties.Any(p => i == p.Name));
if (inIndex is not null)
{
throw new InvalidOperationException(
NpgsqlStrings.IncludePropertyInIndex(index.DeclaringEntityType.DisplayName(), inIndex));
}
}
}
}
/// <inheritdoc />
protected override void ValidateStoredProcedures(
IModel model,
IDiagnosticsLogger<DbLoggerCategory.Model.Validation> logger)
{
base.ValidateStoredProcedures(model, logger);
foreach (var entityType in model.GetEntityTypes())
{
if (entityType.GetDeleteStoredProcedure() is { } deleteStoredProcedure)
{
ValidateSproc(deleteStoredProcedure, logger);
}
if (entityType.GetInsertStoredProcedure() is { } insertStoredProcedure)
{
ValidateSproc(insertStoredProcedure, logger);
}
if (entityType.GetUpdateStoredProcedure() is { } updateStoredProcedure)
{
ValidateSproc(updateStoredProcedure, logger);
}
}
static void ValidateSproc(IStoredProcedure sproc, IDiagnosticsLogger<DbLoggerCategory.Model.Validation> logger)
{
var entityType = sproc.EntityType;
var storeObjectIdentifier = sproc.GetStoreIdentifier();
if (sproc.ResultColumns.Any())
{
throw new InvalidOperationException(NpgsqlStrings.StoredProcedureResultColumnsNotSupported(
entityType.DisplayName(),
storeObjectIdentifier.DisplayName()));
}
if (sproc.IsRowsAffectedReturned)
{
throw new InvalidOperationException(NpgsqlStrings.StoredProcedureReturnValueNotSupported(
entityType.DisplayName(),
storeObjectIdentifier.DisplayName()));
}
}
}
/// <inheritdoc />
protected override void ValidateJsonEntities(
IModel model,
IDiagnosticsLogger<DbLoggerCategory.Model.Validation> logger)
{
foreach (var entityType in model.GetEntityTypes())
{
if (entityType.IsMappedToJson())
{
throw new InvalidOperationException(NpgsqlStrings.Ef7JsonMappingNotSupported);
}
}
}
/// <inheritdoc />
protected override void ValidateCompatible(
IProperty property,
IProperty duplicateProperty,
string columnName,
in StoreObjectIdentifier storeObject,
IDiagnosticsLogger<DbLoggerCategory.Model.Validation> logger)
{
base.ValidateCompatible(property, duplicateProperty, columnName, storeObject, logger);
if (property.GetCompressionMethod(storeObject) != duplicateProperty.GetCompressionMethod(storeObject))
{
throw new InvalidOperationException(
NpgsqlStrings.DuplicateColumnCompressionMethodMismatch(
duplicateProperty.DeclaringType.DisplayName(),
duplicateProperty.Name,
property.DeclaringType.DisplayName(),
property.Name,
columnName,
storeObject.DisplayName()));
}
}
}