GEOS  3.9.1dev
SweeplineNestedRingTester.h
Go to the documentation of this file.
1 /**********************************************************************
2  *
3  * GEOS - Geometry Engine Open Source
4  * http://geos.osgeo.org
5  *
6  * Copyright (C) 2005-2006 Refractions Research Inc.
7  * Copyright (C) 2001-2002 Vivid Solutions Inc.
8  *
9  * This is free software; you can redistribute and/or modify it under
10  * the terms of the GNU Lesser General Public Licence as published
11  * by the Free Software Foundation.
12  * See the COPYING file for more information.
13  *
14  **********************************************************************
15  *
16  * Last port: operation/valid/SweeplineNestedRingTester.java rev. 1.12 (JTS-1.10)
17  *
18  **********************************************************************/
19 
20 #ifndef GEOS_OP_SWEEPLINENESTEDRINGTESTER_H
21 #define GEOS_OP_SWEEPLINENESTEDRINGTESTER_H
22 
23 #include <geos/export.h>
24 #include <geos/geom/Envelope.h> // for inline
25 //#include <geos/indexSweepline.h> // for inline and inheritance
26 #include <geos/index/sweepline/SweepLineOverlapAction.h> // for inheritance
27 #include <geos/index/sweepline/SweepLineIndex.h> // for inlines
28 
29 #include <vector>
30 
31 #ifdef _MSC_VER
32 #pragma warning(push)
33 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
34 #endif
35 
36 // Forward declarations
37 namespace geos {
38 namespace geom {
39 class LinearRing;
40 class Envelope;
41 class Coordinate;
42 }
43 namespace index {
44 namespace sweepline {
45 class SweepLineIndex;
46 }
47 }
48 namespace geomgraph {
49 class GeometryGraph;
50 }
51 }
52 
53 namespace geos {
54 namespace operation { // geos::operation
55 namespace valid { // geos::operation::valid
56 
64 
65 private:
66  geomgraph::GeometryGraph* graph; // used to find non-node vertices
67  std::vector<geom::LinearRing*> rings;
70  void buildIndex();
71 
73  SweeplineNestedRingTester& operator=(const SweeplineNestedRingTester&) = delete;
74 
75 public:
76 
78  :
79  graph(newGraph),
80  rings(),
81  sweepLine(new index::sweepline::SweepLineIndex()),
82  nestedPt(nullptr)
83  {}
84 
86  {
87  delete sweepLine;
88  }
89 
90  /*
91  * Be aware that the returned Coordinate (if != NULL)
92  * will point to storage owned by one of the LinearRing
93  * previously added. If you destroy them, this
94  * will point to an invalid memory address.
95  */
98  {
99  return nestedPt;
100  }
101 
102  void
104  {
105  rings.push_back(ring);
106  }
107 
108  bool isNonNested();
109  bool isInside(geom::LinearRing* innerRing, geom::LinearRing* searchRing);
111  public:
114  void overlap(index::sweepline::SweepLineInterval* s0,
116  private:
118  };
119 };
120 
121 } // namespace geos::operation::valid
122 } // namespace geos::operation
123 } // namespace geos
124 
125 #ifdef _MSC_VER
126 #pragma warning(pop)
127 #endif
128 
129 #endif // GEOS_OP_SWEEPLINENESTEDRINGTESTER_H
#define GEOS_DLL
Definition: export.h:28
Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:60
SweeplineNestedRingTester(geomgraph::GeometryGraph *newGraph)
A GeometryGraph is a graph that models a given Geometry.
Definition: GeometryGraph.h:74
Tests whether any of a set of LinearRings are nested inside another ring in the set, using an SweepLineIndex to speed up the comparisons.
A sweepline implements a sorted index on a set of intervals.
Basic namespace for all GEOS functionalities.
Models an OGC SFS LinearRing. A LinearRing is a LineString which is both closed and simple...
Definition: LinearRing.h:54