MySQL 9.0.0
Source Code Documentation
is_valid_functor.h
Go to the documentation of this file.
1#ifndef SQL_GIS_IS_VALID_FUNCTOR_H_INCLUDED
2#define SQL_GIS_IS_VALID_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#include <boost/geometry.hpp>
28
29#include "sql/gis/functor.h"
30
31namespace gis {
32
33class Is_valid : public Unary_functor<bool> {
34 private:
35 boost::geometry::strategy::intersection::geographic_segments<>
37
38 public:
39 Is_valid(double semi_major, double semi_minor);
40 bool operator()(const Geometry &g) const override;
41
42 bool eval(const Cartesian_point &g) const;
43 bool eval(const Cartesian_linestring &g) const;
44 bool eval(const Cartesian_polygon &g) const;
45 bool eval(const Cartesian_multipoint &g) const;
46 bool eval(const Cartesian_multipolygon &g) const;
47 bool eval(const Cartesian_multilinestring &g) const;
48 bool eval(const Cartesian_geometrycollection &g) const;
49 bool eval(const Geographic_point &g) const;
50 bool eval(const Geographic_linestring &g) const;
51 bool eval(const Geographic_polygon &g) const;
52 bool eval(const Geographic_multipoint &g) const;
53 bool eval(const Geographic_multipolygon &g) const;
54 bool eval(const Geographic_multilinestring &g) const;
55 bool eval(const Geographic_geometrycollection &g) const;
56};
57} // namespace gis
58#endif // SQL_GIS_IS_VALID_FUNCTOR_H_INCLUDED
A Cartesian 2d geometry collection.
Definition: geometries_cs.h:375
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 multipolygon.
Definition: geometries_cs.h:720
A Cartesian 2d point.
Definition: geometries_cs.h:47
A Cartesian 2d polygon.
Definition: geometries_cs.h:269
A geographic (ellipsoidal) 2d geometry collection.
Definition: geometries_cs.h:438
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 multipolygon.
Definition: geometries_cs.h:774
A geographic (ellipsoidal) 2d point.
Definition: geometries_cs.h:58
A geographic (ellipsoidal) 2d polygon.
Definition: geometries_cs.h:322
Abstract superclass for all geometric objects.
Definition: geometries.h:100
Definition: is_valid_functor.h:33
bool operator()(const Geometry &g) const override
Definition: is_valid.cc:51
bool eval(const Cartesian_point &g) const
Definition: is_valid.cc:53
boost::geometry::strategy::intersection::geographic_segments m_geographic_ll_la_aa_strategy
Definition: is_valid_functor.h:36
Is_valid(double semi_major, double semi_minor)
Definition: is_valid.cc:47
The base class of all functors that take one geometry argument.
Definition: functor.h:615
This file contains the superclasses for GIS functors.
Definition: area.cc:47