GEOS  3.9.1dev
GeometryFactory.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) 2011 Sandro Santilli <strk@kbt.io>
7  * Copyright (C) 2006 Refractions Research 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: geom/GeometryFactory.java r320 (JTS-1.12)
17  *
18  **********************************************************************/
19 
20 #ifndef GEOS_GEOM_GEOMETRYFACTORY_H
21 #define GEOS_GEOM_GEOMETRYFACTORY_H
22 
23 #include <geos/geom/Geometry.h>
25 #include <geos/geom/MultiPoint.h>
27 #include <geos/geom/MultiPolygon.h>
29 #include <geos/export.h>
30 #include <geos/inline.h>
31 #include <geos/util.h>
32 
33 #include <vector>
34 #include <memory>
35 #include <cassert>
37 
38 namespace geos {
39 namespace geom {
40 class CoordinateSequenceFactory;
41 class Coordinate;
42 class CoordinateSequence;
43 class Envelope;
44 class Geometry;
45 class GeometryCollection;
46 class LineString;
47 class LinearRing;
48 class MultiLineString;
49 class MultiPoint;
50 class MultiPolygon;
51 class Polygon;
52 }
53 }
54 
55 namespace geos {
56 namespace geom { // geos::geom
57 
69 private:
70 
72  void
74  {
75  p->destroy();
76  }
77  };
78 
79 public:
80 
81  using Ptr = std::unique_ptr<GeometryFactory, GeometryFactoryDeleter>;
82 
88  static GeometryFactory::Ptr create();
89 
102  static GeometryFactory::Ptr create(const PrecisionModel* pm, int newSRID,
103  CoordinateSequenceFactory* nCoordinateSequenceFactory);
104 
111  static GeometryFactory::Ptr create(CoordinateSequenceFactory* nCoordinateSequenceFactory);
112 
121  static GeometryFactory::Ptr create(const PrecisionModel* pm);
122 
132  static GeometryFactory::Ptr create(const PrecisionModel* pm, int newSRID);
133 
139  static GeometryFactory::Ptr create(const GeometryFactory& gf);
140 
147  static const GeometryFactory*
148  getDefaultInstance();
149 
150 //Skipped a lot of list to array convertors
151 
152  Point* createPointFromInternalCoord(const Coordinate* coord,
153  const Geometry* exemplar) const;
154 
159  std::unique_ptr<Geometry> toGeometry(const Envelope* envelope) const;
160 
164  const PrecisionModel* getPrecisionModel() const;
165 
167  std::unique_ptr<Point> createPoint(std::size_t coordinateDimension = 2) const;
168 
170  Point* createPoint(const Coordinate& coordinate) const;
171 
173  Point* createPoint(CoordinateSequence* coordinates) const;
174 
176  Point* createPoint(const CoordinateSequence& coordinates) const;
177 
179  std::unique_ptr<GeometryCollection> createGeometryCollection() const;
180 
182  std::unique_ptr<Geometry> createEmptyGeometry() const;
183 
185  GeometryCollection* createGeometryCollection(
186  std::vector<Geometry*>* newGeoms) const;
187 
188  template<typename T>
189  std::unique_ptr<GeometryCollection> createGeometryCollection(
190  std::vector<std::unique_ptr<T>> && newGeoms) const {
191  // Can't use make_unique because constructor is protected
192  return std::unique_ptr<GeometryCollection>(new GeometryCollection(Geometry::toGeometryArray(std::move(newGeoms)), *this));
193  }
194 
196  GeometryCollection* createGeometryCollection(
197  const std::vector<const Geometry*>& newGeoms) const;
198 
200  std::unique_ptr<MultiLineString> createMultiLineString() const;
201 
203  MultiLineString* createMultiLineString(
204  std::vector<Geometry*>* newLines) const;
205 
207  MultiLineString* createMultiLineString(
208  const std::vector<const Geometry*>& fromLines) const;
209 
210  std::unique_ptr<MultiLineString> createMultiLineString(
211  std::vector<std::unique_ptr<LineString>> && fromLines) const;
212 
213  std::unique_ptr<MultiLineString> createMultiLineString(
214  std::vector<std::unique_ptr<Geometry>> && fromLines) const;
215 
217  std::unique_ptr<MultiPolygon> createMultiPolygon() const;
218 
220  MultiPolygon* createMultiPolygon(std::vector<Geometry*>* newPolys) const;
221 
223  MultiPolygon* createMultiPolygon(
224  const std::vector<const Geometry*>& fromPolys) const;
225 
226  std::unique_ptr<MultiPolygon> createMultiPolygon(
227  std::vector<std::unique_ptr<Polygon>> && fromPolys) const;
228 
229  std::unique_ptr<MultiPolygon> createMultiPolygon(
230  std::vector<std::unique_ptr<Geometry>> && fromPolys) const;
231 
233  std::unique_ptr<LinearRing> createLinearRing() const;
234 
236  LinearRing* createLinearRing(CoordinateSequence* newCoords) const;
237 
238  std::unique_ptr<LinearRing> createLinearRing(
239  std::unique_ptr<CoordinateSequence> && newCoords) const;
240 
242  LinearRing* createLinearRing(
243  const CoordinateSequence& coordinates) const;
244 
246  std::unique_ptr<MultiPoint> createMultiPoint() const;
247 
249  MultiPoint* createMultiPoint(std::vector<Geometry*>* newPoints) const;
250 
251  std::unique_ptr<MultiPoint> createMultiPoint(std::vector<std::unique_ptr<Point>> && newPoints) const;
252 
253  std::unique_ptr<MultiPoint> createMultiPoint(std::vector<std::unique_ptr<Geometry>> && newPoints) const;
254 
256  MultiPoint* createMultiPoint(
257  const std::vector<const Geometry*>& fromPoints) const;
258 
262  MultiPoint* createMultiPoint(
263  const CoordinateSequence& fromCoords) const;
264 
268  MultiPoint* createMultiPoint(
269  const std::vector<Coordinate>& fromCoords) const;
270 
272  std::unique_ptr<Polygon> createPolygon(std::size_t coordinateDimension = 2) const;
273 
275  Polygon* createPolygon(LinearRing* shell,
276  std::vector<LinearRing*>* holes) const;
277 
278  std::unique_ptr<Polygon> createPolygon(std::unique_ptr<LinearRing> && shell) const;
279 
280  std::unique_ptr<Polygon> createPolygon(std::unique_ptr<LinearRing> && shell,
281  std::vector<std::unique_ptr<LinearRing>> && holes) const;
282 
284  Polygon* createPolygon(const LinearRing& shell,
285  const std::vector<LinearRing*>& holes) const;
286 
288  std::unique_ptr<LineString> createLineString(std::size_t coordinateDimension = 2) const;
289 
291  std::unique_ptr<LineString> createLineString(const LineString& ls) const;
292 
294  LineString* createLineString(CoordinateSequence* coordinates) const;
295 
296  std::unique_ptr<LineString> createLineString(
297  std::unique_ptr<CoordinateSequence> && coordinates) const;
298 
300  LineString* createLineString(
301  const CoordinateSequence& coordinates) const;
302 
310  std::unique_ptr<Geometry> createEmpty(int dimension) const;
311 
342  Geometry* buildGeometry(std::vector<Geometry*>* geoms) const;
343 
344  std::unique_ptr<Geometry> buildGeometry(std::vector<std::unique_ptr<Geometry>> && geoms) const;
345 
346  std::unique_ptr<Geometry> buildGeometry(std::vector<std::unique_ptr<Point>> && geoms) const;
347 
348  std::unique_ptr<Geometry> buildGeometry(std::vector<std::unique_ptr<LineString>> && geoms) const;
349 
350  std::unique_ptr<Geometry> buildGeometry(std::vector<std::unique_ptr<Polygon>> && geoms) const;
351 
353  //
360  template <class T>
361  std::unique_ptr<Geometry>
362  buildGeometry(T from, T toofar) const
363  {
364  bool isHeterogeneous = false;
365  size_t count = 0;
366  int geomClass = -1;
367  for(T i = from; i != toofar; ++i) {
368  ++count;
369  const Geometry* g = *i;
370  if(geomClass < 0) {
371  geomClass = g->getSortIndex();
372  }
373  else if(geomClass != g->getSortIndex()) {
374  isHeterogeneous = true;
375  }
376  }
377 
378  // for the empty geometry, return an empty GeometryCollection
379  if(count == 0) {
380  return std::unique_ptr<Geometry>(createGeometryCollection());
381  }
382 
383  // for the single geometry, return a clone
384  if(count == 1) {
385  return (*from)->clone();
386  }
387 
388  // Now we know it is a collection
389 
390  // FIXME:
391  // Until we tweak all the createMulti* interfaces
392  // to support taking iterators we'll have to build
393  // a custom vector here.
394  std::vector<std::unique_ptr<Geometry>> fromGeoms;
395  for(T i = from; i != toofar; ++i) {
396  fromGeoms.push_back((*i)->clone());
397  }
398 
399  // for an heterogeneous ...
400  if(isHeterogeneous) {
401  return createGeometryCollection(std::move(fromGeoms));
402  }
403 
404  // At this point we know the collection is not hetereogenous.
405  switch((*from)->getDimension()) {
406  case Dimension::A: return createMultiPolygon(std::move(fromGeoms));
407  case Dimension::L: return createMultiLineString(std::move(fromGeoms));
408  case Dimension::P: return createMultiPoint(std::move(fromGeoms));
409  default:
410  throw geos::util::IllegalArgumentException(std::string("Invalid geometry type."));
411  }
412  }
413 
421  Geometry* buildGeometry(const std::vector<const Geometry*>& geoms) const;
422 
423  int getSRID() const;
424 
428  const CoordinateSequenceFactory* getCoordinateSequenceFactory() const;
429 
431  Geometry* createGeometry(const Geometry* g) const;
432 
434  void destroyGeometry(Geometry* g) const;
435 
442  void destroy();
443 
444 protected:
445 
451  GeometryFactory();
452 
465  GeometryFactory(const PrecisionModel* pm, int newSRID,
466  CoordinateSequenceFactory* nCoordinateSequenceFactory);
467 
474  GeometryFactory(CoordinateSequenceFactory* nCoordinateSequenceFactory);
475 
484  GeometryFactory(const PrecisionModel* pm);
485 
495  GeometryFactory(const PrecisionModel* pm, int newSRID);
496 
502  GeometryFactory(const GeometryFactory& gf);
503 
505  virtual ~GeometryFactory();
506 
507 private:
508 
510  int SRID;
512 
513  mutable int _refCount;
515 
516  friend class Geometry;
517 
518  void addRef() const;
519  void dropRef() const;
520 
521 };
522 
523 } // namespace geos::geom
524 } // namespace geos
525 
526 #ifdef GEOS_INLINE
527 # include "geos/geom/GeometryFactory.inl"
528 #endif
529 
530 #endif // ndef GEOS_GEOM_GEOMETRYFACTORY_H
std::unique_ptr< GeometryFactory, GeometryFactoryDeleter > Ptr
virtual int getSortIndex() const =0
An Envelope defines a rectangulare region of the 2D coordinate plane.
Definition: Envelope.h:58
#define GEOS_DLL
Definition: export.h:28
Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:60
std::unique_ptr< GeometryCollection > createGeometryCollection(std::vector< std::unique_ptr< T >> &&newGeoms) const
Specifies the precision model of the Coordinate in a Geometry.
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:188
static std::vector< std::unique_ptr< Geometry > > toGeometryArray(std::vector< std::unique_ptr< T >> &&v)
Definition: Geometry.h:920
Indicates one or more illegal arguments.
Represents a linear polygon, which may include holes.
Definition: Polygon.h:64
Dimension value of a curve (1).
Definition: Dimension.h:45
Dimension value of a surface (2).
Definition: Dimension.h:48
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Represents a collection of heterogeneous Geometry objects.
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
std::unique_ptr< Geometry > buildGeometry(T from, T toofar) const
See buildGeometry(std::vector<Geometry *>&) for semantics.
const CoordinateSequenceFactory * coordinateListFactory
Dimension value of a point (0).
Definition: Dimension.h:42
A factory to create concrete instances of CoordinateSequences.
The internal representation of a list of coordinates inside a Geometry.
Models a collection of LineStrings.