MySQL 8.3.0
Source Code Documentation
frechet_distance_functor.h
Go to the documentation of this file.
1#ifndef GIS__FRECHET_DISTANCE_FUNCTOR_H_INCLUDED
2#define GIS__FRECHET_DISTANCE_FUNCTOR_H_INCLUDED
3
4// Copyright (c) 2020, 2023, 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 also distributed 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 included with MySQL.
16//
17// This program is distributed in the hope that it will be useful,
18// but WITHOUT ANY WARRANTY; without even the implied warranty of
19// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20// GNU General Public License, version 2.0, for more details.
21//
22// You should have received a copy of the GNU General Public License
23// along with this program; if not, write to the Free Software
24// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25
26/// @file
27///
28/// This file declares the frechet_distance functor interface.
29///
30/// The functor is not intended for use directly by MySQL code. It should be
31/// used indirectly through the gis::frechet_distance() function.
32///
33/// @see gis::frechet_distance
34
35#include <memory> // std::unique_ptr
36
37#include <boost/geometry.hpp>
38#include "sql/gis/functor.h"
39#include "sql/gis/geometries.h"
40
41namespace gis {
42
43/// Frechet_distance functor that calls Boost.Geometry with the correct
44/// parameter types.
45///
46/// The functor throws exceptions and is therefore only intended used to
47/// implement frechet_distance or other geographic functions.
48/// It should not be used directly by other MySQL code.
49class Frechet_distance : public Functor<double> {
50 private:
51 std::unique_ptr<boost::geometry::strategy::distance::geographic<
52 boost::geometry::strategy::andoyer,
53 boost::geometry::srs::spheroid<double>>>
55
56 public:
57 Frechet_distance(double major, double minor);
58 double operator()(const Geometry *g1, const Geometry *g2) const override;
59
60 double eval(const Geometry *g1, const Geometry *g2) const;
61
62 double eval(const Geographic_linestring *g1,
63 const Geographic_linestring *g2) const;
64 double eval(const Cartesian_linestring *g1,
65 const Cartesian_linestring *g2) const;
66};
67
68} // namespace gis
69
70#endif // GIS__FRECHET_DISTANCE_FUNCTOR_H_INCLUDED
A Cartesian 2d linestring.
Definition: geometries_cs.h:70
Frechet_distance functor that calls Boost.Geometry with the correct parameter types.
Definition: frechet_distance_functor.h:49
std::unique_ptr< boost::geometry::strategy::distance::geographic< boost::geometry::strategy::andoyer, boost::geometry::srs::spheroid< double > > > m_geographic_strategy
Definition: frechet_distance_functor.h:54
double eval(const Geometry *g1, const Geometry *g2) const
Definition: frechet_distance.cc:57
Frechet_distance(double major, double minor)
Definition: frechet_distance.cc:46
double operator()(const Geometry *g1, const Geometry *g2) const override
Definition: frechet_distance.cc:52
The base class of all functors that takes two geometry arguments.
Definition: functor.h:164
A geographic (ellipsoidal) 2d linestring.
Definition: geometries_cs.h:124
Abstract superclass for all geometric objects.
Definition: geometries.h:99
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:46
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:2437