forked from nhibernate/NHibernate.Spatial
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMySQL57SpatialDialect.cs
572 lines (513 loc) · 22.3 KB
/
MySQL57SpatialDialect.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
// Copyright 2016 - Andreas Ravnestad ([email protected])
//
// This file is part of NHibernate.Spatial.
// NHibernate.Spatial is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NHibernate.Spatial is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
// You should have received a copy of the GNU Lesser General Public License
// along with NHibernate.Spatial; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
using NHibernate.Dialect;
using NHibernate.Spatial.Dialect.Function;
using NHibernate.Spatial.Metadata;
using NHibernate.Spatial.Type;
using NHibernate.SqlCommand;
using NHibernate.Type;
using NHibernate.Util;
using System;
using System.Text;
namespace NHibernate.Spatial.Dialect
{
/// <summary>
///
/// </summary>
public class MySQL57SpatialDialect : MySQL5Dialect, ISpatialDialect
{
protected const string DialectPrefix = SpatialDialect.IsoPrefix;
private static readonly IType geometryType = new CustomType(typeof(MySQLGeometryType), null);
/// <summary>
/// Initializes a new instance of the <see cref="MySQLDialect"/> class.
/// </summary>
public MySQL57SpatialDialect()
{
SpatialDialect.LastInstantiated = this;
RegisterBasicFunctions();
RegisterFunctions();
}
// TODO: Use ISessionFactory.ConnectionProvider.Driver.MultipleQueriesSeparator
public string MultipleQueriesSeparator => ";";
public override string ToBooleanValueString(bool value)
{
return value ? "true" : "false";
}
#region Functions registration
private void RegisterBasicFunctions()
{
// Relations
RegisterSpatialFunction(SpatialRelation.Contains);
RegisterSpatialFunction(SpatialRelation.CoveredBy);
RegisterSpatialFunction(SpatialRelation.Covers);
RegisterSpatialFunction(SpatialRelation.Crosses);
RegisterSpatialFunction(SpatialRelation.Disjoint);
RegisterSpatialFunction(SpatialRelation.Equals);
RegisterSpatialFunction(SpatialRelation.Intersects);
RegisterSpatialFunction(SpatialRelation.Overlaps);
RegisterSpatialFunction(SpatialRelation.Touches);
RegisterSpatialFunction(SpatialRelation.Within);
// Analysis
RegisterSpatialFunction(SpatialAnalysis.Buffer);
RegisterSpatialFunction(SpatialAnalysis.ConvexHull);
RegisterSpatialFunction(SpatialAnalysis.Difference);
RegisterSpatialFunction(SpatialAnalysis.Distance);
RegisterSpatialFunction(SpatialAnalysis.Intersection);
RegisterSpatialFunction(SpatialAnalysis.SymDifference);
RegisterSpatialFunction(SpatialAnalysis.Union);
// Validations
RegisterSpatialFunction(SpatialValidation.IsClosed);
RegisterSpatialFunction(SpatialValidation.IsEmpty);
RegisterSpatialFunction(SpatialValidation.IsRing);
RegisterSpatialFunction(SpatialValidation.IsSimple);
RegisterSpatialFunction(SpatialValidation.IsValid);
}
protected override void RegisterFunctions()
{
RegisterSpatialFunction("Boundary");
RegisterSpatialFunction("Centroid");
RegisterSpatialFunction("EndPoint");
RegisterSpatialFunction("Envelope");
RegisterSpatialFunction("ExteriorRing");
RegisterSpatialFunction("GeometryN", 2);
RegisterSpatialFunction("InteriorRingN", 2);
RegisterSpatialFunction("PointN", 2);
RegisterSpatialFunction("PointOnSurface");
RegisterSpatialFunction("Simplify", 2);
RegisterSpatialFunction("StartPoint");
RegisterSpatialFunction("Transform", 2);
RegisterSpatialFunction("GeomCollFromText", 2);
RegisterSpatialFunction("GeomCollFromWKB", 2);
RegisterSpatialFunction("GeomFromText", 2);
RegisterSpatialFunction("GeomFromWKB", 2);
RegisterSpatialFunction("LineFromText", 2);
RegisterSpatialFunction("LineFromWKB", 2);
RegisterSpatialFunction("PointFromText", 2);
RegisterSpatialFunction("PointFromWKB", 2);
RegisterSpatialFunction("PolyFromText", 2);
RegisterSpatialFunction("PolyFromWKB", 2);
RegisterSpatialFunction("MLineFromText", 2);
RegisterSpatialFunction("MLineFromWKB", 2);
RegisterSpatialFunction("MPointFromText", 2);
RegisterSpatialFunction("MPointFromWKB", 2);
RegisterSpatialFunction("MPolyFromText", 2);
RegisterSpatialFunction("MPolyFromWKB", 2);
RegisterSpatialFunction("AsBinary", NHibernateUtil.Binary);
RegisterSpatialFunction("AsText", NHibernateUtil.String);
RegisterSpatialFunction("AsGML", NHibernateUtil.String);
RegisterSpatialFunction("GeometryType", NHibernateUtil.String);
RegisterSpatialFunction("Area", NHibernateUtil.Double);
RegisterSpatialFunction("Length", NHibernateUtil.Double);
RegisterSpatialFunction("X", NHibernateUtil.Double);
RegisterSpatialFunction("Y", NHibernateUtil.Double);
RegisterSpatialFunction("SRID", NHibernateUtil.Int32);
RegisterSpatialFunction("Dimension", NHibernateUtil.Int32);
RegisterSpatialFunction("NumGeometries", NHibernateUtil.Int32);
RegisterSpatialFunction("NumInteriorRings", NHibernateUtil.Int32);
RegisterSpatialFunction("NumPoints", NHibernateUtil.Int32);
RegisterSpatialFunction("Relate", NHibernateUtil.Boolean, 3);
}
protected void RegisterSpatialFunction(string standardName, string dialectName, IType returnedType, int allowedArgsCount)
{
RegisterFunction(SpatialDialect.HqlPrefix + standardName, new SpatialStandardSafeFunction(dialectName, returnedType, allowedArgsCount));
}
protected void RegisterSpatialFunction(string standardName, string dialectName, IType returnedType)
{
RegisterSpatialFunction(standardName, dialectName, returnedType, 1);
}
protected void RegisterSpatialFunction(string name, IType returnedType, int allowedArgsCount)
{
RegisterSpatialFunction(name, SpatialDialect.IsoPrefix + name, returnedType, allowedArgsCount);
}
protected void RegisterSpatialFunction(string name, IType returnedType)
{
RegisterSpatialFunction(name, SpatialDialect.IsoPrefix + name, returnedType);
}
protected void RegisterSpatialFunction(string name, int allowedArgsCount)
{
RegisterSpatialFunction(name, GeometryType, allowedArgsCount);
}
protected void RegisterSpatialFunction(string name)
{
RegisterSpatialFunction(name, GeometryType);
}
protected void RegisterSpatialFunction(SpatialRelation relation)
{
RegisterFunction(SpatialDialect.HqlPrefix + relation, new SpatialRelationFunction(this, relation));
}
protected void RegisterSpatialFunction(SpatialValidation validation)
{
RegisterFunction(SpatialDialect.HqlPrefix + validation, new SpatialValidationFunction(this, validation));
}
protected void RegisterSpatialFunction(SpatialAnalysis analysis)
{
RegisterFunction(SpatialDialect.HqlPrefix + analysis, new SpatialAnalysisFunction(this, analysis));
}
#endregion Functions registration
#region ISpatialDialect Members
/// <summary>
/// Creates the geometry user type.
/// </summary>
/// <returns></returns>
public virtual IGeometryUserType CreateGeometryUserType()
{
return new MySQLGeometryType();
}
/// <summary>
/// Gets the type of the geometry.
/// </summary>
/// <value>The type of the geometry.</value>
public virtual IType GeometryType => geometryType;
/// <summary>
/// Gets the spatial transform string.
/// </summary>
/// <param name="geometry">The geometry.</param>
/// <param name="srid">The srid.</param>
/// <returns></returns>
public virtual SqlString GetSpatialTransformString(object geometry, int srid)
{
throw new NotSupportedException("MySQL 5.7 does not support spatial transform");
}
/// <summary>
/// Gets the spatial validation string.
/// </summary>
/// <param name="geometry">The geometry.</param>
/// <param name="validation">The validation.</param>
/// <param name="criterion">if set to <c>true</c> [criterion].</param>
/// <returns></returns>
public virtual SqlString GetSpatialValidationString(object geometry, SpatialValidation validation, bool criterion)
{
// In MySQL 5.7, the ST_Valid function requires geometries to have an SRID of 0
// See: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html#function_st-isvalid
if (validation == SpatialValidation.IsValid)
{
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add(validation.ToString())
.Add("(")
.Add("ST_GeomFromWKB(ST_AsWKB(")
.AddObject(geometry)
.Add("), 0)")
.Add(")")
.ToSqlString();
}
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add(validation.ToString())
.Add("(")
.AddObject(geometry)
.Add(")")
.ToSqlString();
}
/// <summary>
/// Gets the spatial aggregate string.
/// </summary>
/// <param name="geometry">The geometry.</param>
/// <param name="aggregate">The aggregate.</param>
/// <returns></returns>
public virtual SqlString GetSpatialAggregateString(object geometry, SpatialAggregate aggregate)
{
string aggregateFunction;
switch (aggregate)
{
// MySQL doesn't support spatial aggregate functions directly, therefore
// we replicate it by grouping the geometry from each row into a geometry
// collection and then performing the function on the geometry collection
// See: https://forums.mysql.com/read.php?23,249284,249284#msg-249284
case SpatialAggregate.Collect:
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add("GeometryCollectionFromText(CONCAT(\"GEOMETRYCOLLECTION(\", GROUP_CONCAT(")
.Add(DialectPrefix)
.Add("AsText(")
.AddObject(geometry)
.Add(")), \")\"))")
.ToSqlString();
case SpatialAggregate.ConvexHull:
case SpatialAggregate.Envelope:
aggregateFunction = aggregate.ToString();
break;
case SpatialAggregate.Intersection:
case SpatialAggregate.Union:
throw new NotSupportedException($"MySQL does not support {aggregate} spatial aggregate function");
default:
throw new ArgumentException("Invalid spatial aggregate argument");
}
var collectAggregate = GetSpatialAggregateString(geometry, SpatialAggregate.Collect);
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add(aggregateFunction)
.Add("(")
.Add(collectAggregate)
.Add(")")
.ToSqlString();
}
public SqlString GetSpatialRelationString(object geometry, SpatialRelation relation, object anotherGeometry, bool criterion)
{
switch (relation)
{
case SpatialRelation.Covers:
string[] patterns =
{
"T*****FF*",
"*T****FF*",
"***T**FF*",
"****T*FF*",
};
var builder = new SqlStringBuilder();
builder.Add("(");
for (int i = 0; i < patterns.Length; i++)
{
if (i > 0)
{
builder.Add(" OR ");
}
builder
.Add("Relate")
.Add("(")
.AddObject(geometry)
.Add(", ")
.AddObject(anotherGeometry)
.Add(", '")
.Add(patterns[i])
.Add("')")
.ToSqlString();
}
builder.Add(")");
return builder.ToSqlString();
case SpatialRelation.CoveredBy:
return GetSpatialRelationString(anotherGeometry, SpatialRelation.Covers, geometry, criterion);
default:
return new SqlStringBuilder(6)
.Add(SpatialDialect.IsoPrefix)
.Add(relation.ToString())
.Add("(")
.AddObject(geometry)
.Add(", ")
.AddObject(anotherGeometry)
.Add(")")
.ToSqlString();
}
}
public SqlString GetSpatialRelateString(object geometry, object anotherGeometry, object pattern, bool isStringPattern, bool criterion)
{
var builder = new SqlStringBuilder();
builder
.Add("Relate(")
.AddObject(geometry)
.Add(", ")
.AddObject(anotherGeometry);
if (pattern != null)
{
builder.Add(", ");
if (isStringPattern)
{
builder
.Add("'")
.Add((string) pattern)
.Add("'");
}
else
{
builder.AddObject(pattern);
}
}
return builder
.Add(")")
.Add(criterion ? " = 1" : "")
.ToSqlString();
}
public SqlString GetSpatialFilterString(string tableAlias, string geometryColumnName, string primaryKeyColumnName, string tableName, Parameter parameter)
{
return new SqlStringBuilder(7)
.Add("MBRIntersects(")
.Add(tableAlias)
.Add(".")
.Add(geometryColumnName)
.Add(",")
.Add(parameter)
.Add(")")
.ToSqlString();
}
/// <summary>
/// Gets the spatial analysis string.
/// </summary>
/// <param name="geometry">The geometry.</param>
/// <param name="analysis">The analysis.</param>
/// <param name="extraArgument">The extra argument.</param>
/// <returns></returns>
public virtual SqlString GetSpatialAnalysisString(object geometry, SpatialAnalysis analysis, object extraArgument)
{
switch (analysis)
{
case SpatialAnalysis.Buffer:
if (!(extraArgument is Parameter || new SqlString(Parameter.Placeholder).Equals(extraArgument)))
{
extraArgument = Convert.ToString(extraArgument, System.Globalization.NumberFormatInfo.InvariantInfo);
}
return new SqlStringBuilder(6)
.Add(DialectPrefix)
.Add("Buffer(")
.AddObject(geometry)
.Add(", ")
.AddObject(extraArgument)
.Add(")")
.ToSqlString();
case SpatialAnalysis.ConvexHull:
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add("ConvexHull(")
.AddObject(geometry)
.Add(")")
.ToSqlString();
case SpatialAnalysis.Difference:
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add("Difference(")
.AddObject(geometry)
.Add(",")
.AddObject(extraArgument)
.Add(")")
.ToSqlString();
case SpatialAnalysis.Intersection:
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add("Intersection(")
.AddObject(geometry)
.Add(",")
.AddObject(extraArgument)
.Add(")")
.ToSqlString();
case SpatialAnalysis.SymDifference:
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add("SymDifference(")
.AddObject(geometry)
.Add(",")
.AddObject(extraArgument)
.Add(")")
.ToSqlString();
case SpatialAnalysis.Union:
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add(analysis.ToString())
.Add("(")
.AddObject(geometry)
.Add(",")
.AddObject(extraArgument)
.Add(")")
.ToSqlString();
case SpatialAnalysis.Distance:
return new SqlStringBuilder()
.Add(DialectPrefix)
.Add("Distance(")
.AddObject(geometry)
.Add(",")
.AddObject(extraArgument)
.Add(")")
.ToSqlString();
default:
throw new ArgumentException("Invalid spatial analysis argument");
}
}
/// <summary>
/// Gets the spatial create string.
/// </summary>
/// <param name="schema">The schema.</param>
/// <returns></returns>
public string GetSpatialCreateString(string schema)
{
return null;
}
/// <summary>
/// Quotes the schema.
/// </summary>
/// <param name="schema">The schema.</param>
/// <returns></returns>
protected string QuoteSchema(string schema)
{
if (string.IsNullOrEmpty(schema))
{
return null;
}
return QuoteForSchemaName(schema) + StringHelper.Dot;
}
/// <summary>
/// Gets the spatial create string.
/// </summary>
/// <param name="schema">The schema.</param>
/// <param name="table">The table.</param>
/// <param name="column">The column.</param>
/// <param name="srid">The srid.</param>
/// <param name="subtype">The subtype.</param>
/// <param name="dimension">The dimension.</param>
/// <param name="isNullable">Whether or not the column is nullable</param>
/// <returns></returns>
public virtual string GetSpatialCreateString(string schema, string table, string column, int srid, string subtype, int dimension, bool isNullable)
{
var builder = new StringBuilder();
string quotedSchema = QuoteSchema(schema);
string quoteForTableName = QuoteForTableName(table);
string quoteForColumnName = QuoteForColumnName(column);
builder.AppendFormat("ALTER TABLE {0}{1} DROP COLUMN {2}"
, quotedSchema
, quoteForTableName
, quoteForColumnName
);
builder.Append(MultipleQueriesSeparator);
builder.AppendFormat("ALTER TABLE {0}{1} ADD {2} {3} {4}"
, quotedSchema
, quoteForTableName
, quoteForColumnName
, subtype
, isNullable ? "NULL" : "NOT NULL"
);
builder.Append(MultipleQueriesSeparator);
return builder.ToString();
}
/// <summary>
/// Gets the spatial drop string.
/// </summary>
/// <param name="schema">The schema.</param>
/// <returns></returns>
public string GetSpatialDropString(string schema)
{
return null;
}
/// <summary>
/// Gets the spatial drop string.
/// </summary>
/// <param name="schema">The schema.</param>
/// <param name="table">The table.</param>
/// <param name="column">The column.</param>
/// <returns></returns>
public string GetSpatialDropString(string schema, string table, string column)
{
return null;
}
/// <summary>
/// Gets a value indicating whether it supports spatial metadata.
/// </summary>
/// <value>
/// <c>true</c> if it supports spatial metadata; otherwise, <c>false</c>.
/// </value>
public virtual bool SupportsSpatialMetadata(MetadataClass metadataClass)
{
return false;
}
#endregion ISpatialDialect Members
}
}