MySQL 8.4.0
Source Code Documentation
length_functor.h
Go to the documentation of this file.
1#ifndef GIS__LENGTH_FUNCTOR_H_INCLUDED
2#define GIS__LENGTH_FUNCTOR_H_INCLUDED
3
4// Copyright (c) 2017, 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 length functor interface.
30///
31/// The functor is not intended for use directly by MySQL code. It should be
32/// used indirectly through the gis::length() function.
33///
34/// @see gis::length
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/// Length functor that calls Boost.Geometry with the correct parameter types.
45///
46/// The functor throws exceptions and is therefore only intended used to
47/// implement length or other geographic functions. It should not be used
48/// directly by other MySQL code.
49class Length : public Unary_functor<double> {
50 private:
51 std::unique_ptr<boost::geometry::strategy::distance::andoyer<
52 boost::geometry::srs::spheroid<double>>>
54
55 public:
56 Length(double major, double minor);
57 double operator()(const Geometry &g1) const override;
58
59 double eval(const Geometry &g1) const;
60
61 double eval(const Geographic_linestring &g1) const;
62 double eval(const Cartesian_linestring &g1) const;
63
64 double eval(const Geographic_multilinestring &g1) const;
65 double eval(const Cartesian_multilinestring &g1) const;
66};
67
68} // namespace gis
69
70#endif // GIS__LENGTH_FUNCTOR_H_INCLUDED
A Cartesian 2d linestring.
Definition: geometries_cs.h:71
A Cartesian 2d multilinestring.
Definition: geometries_cs.h:602
A geographic (ellipsoidal) 2d linestring.
Definition: geometries_cs.h:125
A geographic (ellipsoidal) 2d multilinestring.
Definition: geometries_cs.h:661
Abstract superclass for all geometric objects.
Definition: geometries.h:100
Length functor that calls Boost.Geometry with the correct parameter types.
Definition: length_functor.h:49
std::unique_ptr< boost::geometry::strategy::distance::andoyer< boost::geometry::srs::spheroid< double > > > m_geographic_strategy
Definition: length_functor.h:53
Length(double major, double minor)
Definition: length.cc:46
double eval(const Geometry &g1) const
Definition: length.cc:52
double operator()(const Geometry &g1) const override
Definition: length.cc:50
The base class of all functors that take one geometry argument.
Definition: functor.h:615
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:2438