MySQL 9.0.0
Source Code Documentation
hausdorff_distance_functor.h
Go to the documentation of this file.
1#ifndef GIS__HAUSDORFF_DISTANCE_FUNCTOR_H_INCLUDED
2#define GIS__HAUSDORFF_DISTANCE_FUNCTOR_H_INCLUDED
3
4// Copyright (c) 2020, 2024, Oracle and/or its affiliates.
5//
6// This program is free software; you can redistribute it and/or modify
7// it under the terms of the GNU General Public License, version 2.0,
8// as published by the Free Software Foundation.
9//
10// This program is designed to work with certain software (including
11// but not limited to OpenSSL) that is licensed under separate terms,
12// as designated in a particular file or component or in included license
13// documentation. The authors of MySQL hereby grant you an additional
14// permission to link the program and your derivative works with the
15// separately licensed software that they have either included with
16// the program or referenced in the documentation.
17//
18// This program is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License, version 2.0, for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with this program; if not, write to the Free Software
25// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
26
27/// @file
28///
29/// This file declares the hausdorff_distance functor interface.
30///
31/// The functor is not intended for use directly by MySQL code. It should be
32/// used indirectly through the gis::hausdorff_distance() function.
33///
34/// @see gis::hausdorff_distance
35
36#include <memory> // std::unique_ptr
37
38#include <boost/geometry.hpp>
39#include "sql/gis/functor.h"
40#include "sql/gis/geometries.h"
41
42namespace gis {
43
44/// HausdorffDistance functor that calls Boost.Geometry with the
45/// correct parameter types.
46///
47/// The functor throws exceptions and is therefore only intended used to
48/// implement hausdorff_distance or other geographic functions.
49/// It should not be used directly by other MySQL code.
50class Hausdorff_distance : public Functor<double> {
51 private:
52 std::unique_ptr<boost::geometry::strategy::distance::geographic<
53 boost::geometry::strategy::andoyer,
54 boost::geometry::srs::spheroid<double>>>
56
57 public:
58 Hausdorff_distance(double major, double minor);
59 double operator()(const Geometry *g1, const Geometry *g2) const override;
60
61 double eval(const Geometry *g1, const Geometry *g2) const;
62
63 double eval(const Cartesian_point *g1, const Cartesian_multipoint *g2) const;
64 double eval(const Cartesian_multipoint *g1, const Cartesian_point *g2) const;
65 double eval(const Cartesian_linestring *g1,
66 const Cartesian_linestring *g2) const;
67 double eval(const Cartesian_multipoint *g1,
68 const Cartesian_multipoint *g2) const;
69 double eval(const Cartesian_linestring *g1,
70 const Cartesian_multilinestring *g2) const;
71 double eval(const Cartesian_multilinestring *g1,
72 const Cartesian_linestring *g2) const;
73 double eval(const Cartesian_multilinestring *g1,
74 const Cartesian_multilinestring *g2) const;
75
76 double eval(const Geographic_point *g1,
77 const Geographic_multipoint *g2) const;
78 double eval(const Geographic_multipoint *g1,
79 const Geographic_point *g2) const;
80 double eval(const Geographic_linestring *g1,
81 const Geographic_linestring *g2) const;
82 double eval(const Geographic_multipoint *g1,
83 const Geographic_multipoint *g2) const;
84 double eval(const Geographic_linestring *g1,
85 const Geographic_multilinestring *g2) const;
86 double eval(const Geographic_multilinestring *g1,
87 const Geographic_linestring *g2) const;
88 double eval(const Geographic_multilinestring *g1,
89 const Geographic_multilinestring *g2) const;
90};
91
92} // namespace gis
93
94#endif // GIS__HAUSDORFF_DISTANCE_FUNCTOR_H_INCLUDED
A Cartesian 2d linestring.
Definition: geometries_cs.h:71
A Cartesian 2d multilinestring.
Definition: geometries_cs.h:602
A Cartesian 2d multipoint.
Definition: geometries_cs.h:501
A Cartesian 2d point.
Definition: geometries_cs.h:47
The base class of all functors that takes two geometry arguments.
Definition: functor.h:165
A geographic (ellipsoidal) 2d linestring.
Definition: geometries_cs.h:125
A geographic (ellipsoidal) 2d multilinestring.
Definition: geometries_cs.h:661
A geographic (ellipsoidal) 2d multipoint.
Definition: geometries_cs.h:552
A geographic (ellipsoidal) 2d point.
Definition: geometries_cs.h:58
Abstract superclass for all geometric objects.
Definition: geometries.h:100
HausdorffDistance functor that calls Boost.Geometry with the correct parameter types.
Definition: hausdorff_distance_functor.h:50
double eval(const Geometry *g1, const Geometry *g2) const
Definition: hausdorff_distance.cc:59
double operator()(const Geometry *g1, const Geometry *g2) const override
Definition: hausdorff_distance.cc:54
std::unique_ptr< boost::geometry::strategy::distance::geographic< boost::geometry::strategy::andoyer, boost::geometry::srs::spheroid< double > > > m_geographic_strategy
Definition: hausdorff_distance_functor.h:55
Hausdorff_distance(double major, double minor)
Definition: hausdorff_distance.cc:48
This file contains the superclasses for GIS functors.
This file declares the geometry class hierarchy used by the server as the internal representation of ...
Definition: area.cc:47
std::conditional_t< !std::is_array< T >::value, std::unique_ptr< T, detail::Deleter< T > >, std::conditional_t< detail::is_unbounded_array_v< T >, std::unique_ptr< T, detail::Array_deleter< std::remove_extent_t< T > > >, void > > unique_ptr
The following is a common type that is returned by all the ut::make_unique (non-aligned) specializati...
Definition: ut0new.h:2439