forked from mysql/mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem_geofunc_internal.cc
706 lines (606 loc) · 20.3 KB
/
item_geofunc_internal.cc
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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
/* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <item_geofunc_internal.h>
void handle_gis_exception(const char *funcname)
{
try
{
throw;
}
catch (const boost::geometry::centroid_exception &)
{
my_error(ER_BOOST_GEOMETRY_CENTROID_EXCEPTION, MYF(0), funcname);
}
catch (const boost::geometry::overlay_invalid_input_exception &)
{
my_error(ER_BOOST_GEOMETRY_OVERLAY_INVALID_INPUT_EXCEPTION, MYF(0),
funcname);
}
catch (const boost::geometry::turn_info_exception &)
{
my_error(ER_BOOST_GEOMETRY_TURN_INFO_EXCEPTION, MYF(0), funcname);
}
catch (const boost::geometry::detail::self_get_turn_points::self_ip_exception &)
{
my_error(ER_BOOST_GEOMETRY_SELF_INTERSECTION_POINT_EXCEPTION, MYF(0),
funcname);
}
catch (const boost::geometry::empty_input_exception &)
{
my_error(ER_BOOST_GEOMETRY_EMPTY_INPUT_EXCEPTION, MYF(0), funcname);
}
catch (const boost::geometry::inconsistent_turns_exception &)
{
my_error(ER_BOOST_GEOMETRY_INCONSISTENT_TURNS_EXCEPTION, MYF(0));
}
catch (const boost::geometry::exception &)
{
my_error(ER_BOOST_GEOMETRY_UNKNOWN_EXCEPTION, MYF(0), funcname);
}
catch (const std::bad_alloc &e)
{
my_error(ER_STD_BAD_ALLOC_ERROR, MYF(0), e.what(), funcname);
}
catch (const std::domain_error &e)
{
my_error(ER_STD_DOMAIN_ERROR, MYF(0), e.what(), funcname);
}
catch (const std::length_error &e)
{
my_error(ER_STD_LENGTH_ERROR, MYF(0), e.what(), funcname);
}
catch (const std::invalid_argument &e)
{
my_error(ER_STD_INVALID_ARGUMENT, MYF(0), e.what(), funcname);
}
catch (const std::out_of_range &e)
{
my_error(ER_STD_OUT_OF_RANGE_ERROR, MYF(0), e.what(), funcname);
}
catch (const std::overflow_error &e)
{
my_error(ER_STD_OVERFLOW_ERROR, MYF(0), e.what(), funcname);
}
catch (const std::range_error &e)
{
my_error(ER_STD_RANGE_ERROR, MYF(0), e.what(), funcname);
}
catch (const std::underflow_error &e)
{
my_error(ER_STD_UNDERFLOW_ERROR, MYF(0), e.what(), funcname);
}
catch (const std::logic_error &e)
{
my_error(ER_STD_LOGIC_ERROR, MYF(0), e.what(), funcname);
}
catch (const std::runtime_error &e)
{
my_error(ER_STD_RUNTIME_ERROR, MYF(0), e.what(), funcname);
}
catch (const std::exception &e)
{
my_error(ER_STD_UNKNOWN_EXCEPTION, MYF(0), e.what(), funcname);
}
catch (...)
{
my_error(ER_GIS_UNKNOWN_EXCEPTION, MYF(0), funcname);
}
}
/**
Merge all components as appropriate so that the object contains only
components that don't overlap.
@tparam Coordsys Coordinate system type, specified using those defined in
boost::geometry::cs.
@param[out] pnull_value takes back null_value set during the operation.
*/
template<typename Coordsys>
void BG_geometry_collection::
merge_components(my_bool *pnull_value)
{
if (is_comp_no_overlapped())
return;
POS pos;
Item_func_spatial_operation ifso(pos, NULL, NULL,
Item_func_spatial_operation::op_union);
bool do_again= true;
uint32 last_composition[6]= {0}, num_unchanged_composition= 0;
size_t last_num_geos= 0;
/*
After each merge_one_run call, see whether the two indicators change:
1. total number of geometry components;
2. total number of each of the 6 types of geometries
If they don't change for N*N/4 times, break out of the loop. Here N is
the total number of geometry components.
There is the rationale:
Given a geometry collection, it's likely that one effective merge_one_run
merges a polygon P and the linestring that crosses it (L) to a
polygon P'(the same one) and another linestring L', the 2 indicators above
don't change but the merge is actually done. If we merge P'
and L' again, they should not be considered cross, but given certain data
BG somehow believes L` still crosses P` even the P and P` are valid, and
it will give us a L'' and P'' which is different from L' and P'
respectively, and L'' is still considered crossing P'',
hence the loop here never breaks out.
If the collection has N components, and we have X [multi]linestrings and
N-X polygons, the number of pairs that can be merged is Y = X * (N-X),
so the largest Y is N*N/4. If the above 2 indicators stay unchanged more
than N*N/4 times the loop runs, we believe all possible combinations in
the collection are enumerated and no effective merge is being done any more.
Note that the L'' and P'' above is different from L' and P' so we can't
compare GEOMETRY byte string, and geometric comparison is expensive and may
still compare unequal and we would still be stuck in the endless loop.
*/
while (!*pnull_value && do_again)
{
do_again= merge_one_run<Coordsys>(&ifso, pnull_value);
if (!*pnull_value && do_again)
{
const size_t num_geos= m_geos.size();
uint32 composition[6]= {0};
for (size_t i= 0; i < num_geos; ++i)
composition[m_geos[i]->get_type() - 1]++;
if (num_geos != last_num_geos ||
memcmp(composition, last_composition, sizeof(composition)))
{
memcpy(last_composition, composition, sizeof(composition));
last_num_geos= num_geos;
num_unchanged_composition= 0;
}
else
num_unchanged_composition++;
if (num_unchanged_composition > (last_num_geos * last_num_geos / 4 + 2))
break;
}
}
}
// Explicit template instantiation
template
void
BG_geometry_collection::merge_components<boost::geometry::cs::cartesian>(char*);
template<typename Coordsys>
inline bool
linestring_overlaps_polygon_outerring(const Gis_line_string &ls,
const Gis_polygon &plgn)
{
Gis_polygon_ring &oring= plgn.outer();
Gis_line_string ls2(oring.get_ptr(), oring.get_nbytes(),
oring.get_flags(), oring.get_srid());
return boost::geometry::overlaps(ls, ls2);
}
template<typename Coordsys>
bool linear_areal_intersect_infinite(Geometry *g1, Geometry *g2,
my_bool *pnull_value)
{
bool res= false;
/*
If crosses check succeeds, make sure g2 is a valid [multi]polygon, invalid
ones can be accepted by BG and the cross check would be considered true,
we should reject such result and return false in this case.
*/
if (Item_func_spatial_rel::bg_geo_relation_check<Coordsys>
(g1, g2, Item_func::SP_CROSSES_FUNC, pnull_value) && !*pnull_value)
{
Geometry::wkbType g2_type= g2->get_type();
if (g2_type == Geometry::wkb_polygon)
{
Gis_polygon plgn(g2->get_data_ptr(),
g2->get_data_size(), g2->get_flags(), g2->get_srid());
res= bg::is_valid(plgn);
}
else if (g2_type == Geometry::wkb_multipolygon)
{
Gis_multi_polygon mplgn(g2->get_data_ptr(), g2->get_data_size(),
g2->get_flags(), g2->get_srid());
res= bg::is_valid(mplgn);
}
else
DBUG_ASSERT(false);
return res;
}
if (*pnull_value)
return false;
if (g1->get_type() == Geometry::wkb_linestring)
{
Gis_line_string ls(g1->get_data_ptr(),
g1->get_data_size(), g1->get_flags(), g1->get_srid());
if (g2->get_type() == Geometry::wkb_polygon)
{
Gis_polygon plgn(g2->get_data_ptr(),
g2->get_data_size(), g2->get_flags(), g2->get_srid());
res= linestring_overlaps_polygon_outerring
<Coordsys>(ls, plgn);
}
else
{
Gis_multi_polygon mplgn(g2->get_data_ptr(), g2->get_data_size(),
g2->get_flags(), g2->get_srid());
for (size_t i= 0; i < mplgn.size(); i++)
{
if (linestring_overlaps_polygon_outerring<Coordsys>
(ls, mplgn[i]))
return true;
}
}
}
else
{
Gis_multi_line_string mls(g1->get_data_ptr(), g1->get_data_size(),
g1->get_flags(), g1->get_srid());
if (g2->get_type() == Geometry::wkb_polygon)
{
Gis_polygon plgn(g2->get_data_ptr(),
g2->get_data_size(), g2->get_flags(), g2->get_srid());
for (size_t i= 0; i < mls.size(); i++)
{
if (linestring_overlaps_polygon_outerring<Coordsys>
(mls[i], plgn))
return true;
}
}
else
{
Gis_multi_polygon mplgn(g2->get_data_ptr(), g2->get_data_size(),
g2->get_flags(), g2->get_srid());
for (size_t j= 0; j < mls.size(); j++)
{
for (size_t i= 0; i < mplgn.size(); i++)
{
if (linestring_overlaps_polygon_outerring<Coordsys>
(mls[j], mplgn[i]))
return true;
}
}
}
}
return res;
}
/**
Create this class for exception safety --- destroy the objects referenced
by the pointers in the set when destroying the container.
*/
template<typename T>
class Pointer_vector : public std::vector<T *>
{
typedef std::vector<T*> parent;
public:
~Pointer_vector()
{
for (typename parent::iterator i= this->begin(); i != this->end(); ++i)
delete (*i);
}
};
// A unary predicate to locate a target Geometry object pointer from a sequence.
class Is_target_geometry
{
Geometry *m_target;
public:
Is_target_geometry(Geometry *t) :m_target(t)
{
}
bool operator()(Geometry *g)
{
return g == m_target;
}
};
class Rtree_entry_compare
{
public:
Rtree_entry_compare()
{
}
bool operator()(const BG_rtree_entry &re1, const BG_rtree_entry &re2) const
{
return re1.second < re2.second;
}
};
/**
One run of merging components.
@tparam Coordsys Coordinate system type, specified using those defined in
boost::geometry::cs.
@param ifso the Item_func_spatial_operation object, we here rely on it to
do union operation.
@param[out] pnull_value takes back null_value set during the operation.
@return whether need another call of this function.
*/
template<typename Coordsys>
bool BG_geometry_collection::merge_one_run(Item_func_spatial_operation *ifso,
my_bool *pnull_value)
{
Geometry *gres= NULL;
bool has_new= false;
my_bool &null_value= *pnull_value;
Pointer_vector<Geometry> added;
std::vector<String> added_wkbbufs;
added.reserve(16);
added_wkbbufs.reserve(16);
Rtree_index rtree;
make_rtree(m_geos, &rtree);
Rtree_result rtree_result;
for (Geometry_list::iterator i= m_geos.begin(); i != m_geos.end(); ++i)
{
if (*i == NULL)
continue;
BG_box box;
make_bg_box(*i, &box);
if (!is_box_valid(box))
continue;
rtree_result.clear();
rtree.query(bgi::intersects(box), std::back_inserter(rtree_result));
/*
Normally the rtree should be non-empty because at least there is *i
itself. But if box has NaN coordinates, the rtree can be empty since
all coordinate comparisons with NaN numbers are false. also if the
min corner point have greater coordinates than the max corner point,
the box isn't valid and the rtree can be empty.
*/
DBUG_ASSERT(rtree_result.size() != 0);
// Sort rtree_result by Rtree_entry::second in order to make
// components in fixed order.
Rtree_entry_compare rtree_entry_compare;
std::sort(rtree_result.begin(), rtree_result.end(), rtree_entry_compare);
// Used to stop the nested loop.
bool stop_it= false;
for (Rtree_result::iterator j= rtree_result.begin();
j != rtree_result.end(); ++j)
{
Geometry *geom2= m_geos[j->second];
if (*i == geom2 || geom2 == NULL)
continue;
// Equals is much easier and faster to check, so check it first.
if (Item_func_spatial_rel::bg_geo_relation_check<Coordsys>
(geom2, *i, Item_func::SP_EQUALS_FUNC, &null_value) && !null_value)
{
*i= NULL;
break;
}
if (null_value)
{
stop_it= true;
break;
}
if (Item_func_spatial_rel::bg_geo_relation_check<Coordsys>
(*i, geom2, Item_func::SP_WITHIN_FUNC, &null_value) && !null_value)
{
*i= NULL;
break;
}
if (null_value)
{
stop_it= true;
break;
}
if (Item_func_spatial_rel::bg_geo_relation_check<Coordsys>
(geom2, *i, Item_func::SP_WITHIN_FUNC, &null_value) && !null_value)
{
m_geos[j->second]= NULL;
continue;
}
if (null_value)
{
stop_it= true;
break;
}
/*
If *i and geom2 is a polygon and a linestring that intersect only
finite number of points, the union result is the same as the two
geometries, and we would be stuck in an infinite loop. So we must
detect and exclude this case. All other argument type combinations
always will get a geometry different from the two arguments.
*/
char d11= (*i)->feature_dimension();
char d12= geom2->feature_dimension();
Geometry *geom_d1= NULL;
Geometry *geom_d2= NULL;
bool is_linear_areal= false;
if (((d11 == 1 && d12 == 2) || (d12 == 1 && d11 == 2)))
{
geom_d1= (d11 == 1 ? *i : geom2);
geom_d2= (d11 == 2 ? *i : geom2);
if (d11 != 1)
{
const char tmp_dim= d11;
d11= d12;
d12= tmp_dim;
}
is_linear_areal= true;
}
/*
As said above, if one operand is linear, the other is areal, then we
only proceed the union of them if they intersect infinite number of
points, i.e. L crosses A or L touches A's outer ring. Note that if L
touches some of A's inner rings, L must be crossing A, so not gonna
check the inner rings.
*/
if ((!is_linear_areal &&
Item_func_spatial_rel::bg_geo_relation_check<Coordsys>
(*i, geom2, Item_func::SP_INTERSECTS_FUNC, &null_value) &&
!null_value) ||
(is_linear_areal && linear_areal_intersect_infinite
<Coordsys>(geom_d1, geom_d2, &null_value)))
{
String wkbres;
if (null_value)
{
stop_it= true;
break;
}
gres= ifso->bg_geo_set_op<Coordsys>(*i, geom2,
&wkbres);
null_value= ifso->null_value;
if (null_value)
{
if (gres != NULL && gres != *i && gres != geom2)
delete gres;
stop_it= true;
break;
}
if (gres != *i)
*i= NULL;
if (gres != geom2)
m_geos[j->second]= NULL;
if (gres != NULL && gres != *i && gres != geom2)
{
added.push_back(gres);
String tmp_wkbbuf;
added_wkbbufs.push_back(tmp_wkbbuf);
added_wkbbufs.back().takeover(wkbres);
has_new= true;
gres= NULL;
}
/*
Done with *i, it's either adopted, or removed or merged to a new
geometry.
*/
break;
} // intersects
if (null_value)
{
stop_it= true;
break;
}
} // for (*j)
if (stop_it)
break;
} // for (*i)
// Remove deleted Geometry object pointers, then append new components if any.
Is_target_geometry pred(NULL);
Geometry_list::iterator jj= std::remove_if(m_geos.begin(),
m_geos.end(), pred);
m_geos.resize(jj - m_geos.begin());
for (Pointer_vector<Geometry>::iterator i= added.begin();
i != added.end(); ++i)
{
/*
Fill rather than directly use *i for consistent memory management.
The objects pointed by pointers in added will be automatically destroyed.
*/
fill(*i);
}
// The added and added_wkbbufs arrays are destroyed and the Geometry objects
// in 'added' are freed, and memory buffers in added_wkbbufs are freed too.
return has_new;
}
inline void reassemble_geometry(Geometry *g)
{
Geometry::wkbType gtype= g->get_geotype();
if (gtype == Geometry::wkb_polygon)
down_cast<Gis_polygon *>(g)->to_wkb_unparsed();
else if (gtype == Geometry::wkb_multilinestring)
down_cast<Gis_multi_line_string *>(g)->reassemble();
else if (gtype == Geometry::wkb_multipolygon)
down_cast<Gis_multi_polygon *>(g)->reassemble();
}
template <typename BG_geotype>
bool post_fix_result(BG_result_buf_mgr *resbuf_mgr,
BG_geotype &geout, String *res)
{
DBUG_ASSERT(geout.has_geom_header_space());
reassemble_geometry(&geout);
// Such objects returned by BG never have overlapped components.
if (geout.get_type() == Geometry::wkb_multilinestring ||
geout.get_type() == Geometry::wkb_multipolygon)
geout.set_components_no_overlapped(true);
if (geout.get_ptr() == NULL)
return true;
if (res)
{
const char *resptr= geout.get_cptr() - GEOM_HEADER_SIZE;
size_t len= geout.get_nbytes();
/*
The resptr buffer is now owned by resbuf_mgr and used by res, resptr
will be released properly by resbuf_mgr.
*/
resbuf_mgr->add_buffer(const_cast<char *>(resptr));
/*
Pass resptr as const pointer so that the memory space won't be reused
by res object. Reuse is forbidden because the memory comes from BG
operations and will be freed upon next same val_str call.
*/
res->set(resptr, len + GEOM_HEADER_SIZE, &my_charset_bin);
// Prefix the GEOMETRY header.
write_geometry_header(const_cast<char *>(resptr), geout.get_srid(),
geout.get_geotype());
/*
Give up ownership because the buffer may have to live longer than
the object.
*/
geout.set_ownmem(false);
}
return false;
}
// Explicit template instantiation
template
bool post_fix_result<Gis_line_string>(BG_result_buf_mgr*,
Gis_line_string&, String*);
template
bool post_fix_result<Gis_multi_line_string>(BG_result_buf_mgr*,
Gis_multi_line_string&, String*);
template
bool post_fix_result<Gis_multi_point>(BG_result_buf_mgr*,
Gis_multi_point&, String*);
template
bool post_fix_result<Gis_multi_polygon>(BG_result_buf_mgr*,
Gis_multi_polygon&, String*);
template
bool post_fix_result<Gis_point>(BG_result_buf_mgr*, Gis_point&, String*);
template
bool post_fix_result<Gis_polygon>(BG_result_buf_mgr*, Gis_polygon&, String*);
class Is_empty_geometry : public WKB_scanner_event_handler
{
public:
bool is_empty;
Is_empty_geometry() :is_empty(true)
{
}
virtual void on_wkb_start(Geometry::wkbByteOrder bo,
Geometry::wkbType geotype,
const void *wkb, uint32 len, bool has_hdr)
{
if (is_empty && geotype != Geometry::wkb_geometrycollection)
is_empty= false;
}
virtual void on_wkb_end(const void *wkb)
{
}
virtual bool continue_scan() const
{
return is_empty;
}
};
bool is_empty_geocollection(const Geometry *g)
{
if (g->get_geotype() != Geometry::wkb_geometrycollection)
return false;
uint32 num= uint4korr(g->get_cptr());
if (num == 0)
return true;
Is_empty_geometry checker;
uint32 len= g->get_data_size();
wkb_scanner(g->get_cptr(), &len, Geometry::wkb_geometrycollection,
false, &checker);
return checker.is_empty;
}
bool is_empty_geocollection(const String &wkbres)
{
if (wkbres.ptr() == NULL)
return true;
uint32 geotype= uint4korr(wkbres.ptr() + SRID_SIZE + 1);
if (geotype != static_cast<uint32>(Geometry::wkb_geometrycollection))
return false;
if (uint4korr(wkbres.ptr() + SRID_SIZE + WKB_HEADER_SIZE) == 0)
return true;
Is_empty_geometry checker;
uint32 len= static_cast<uint32>(wkbres.length()) - GEOM_HEADER_SIZE;
wkb_scanner(wkbres.ptr() + GEOM_HEADER_SIZE, &len,
Geometry::wkb_geometrycollection, false, &checker);
return checker.is_empty;
}