/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2005-2006 Refractions Research Inc. * Copyright (C) 2001-2002 Vivid Solutions Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation. * See the COPYING file for more information. * ********************************************************************** * * Last port: linearref/LinearGeometryBuilder.java rev. 1.1 * **********************************************************************/ #pragma once #include #include #include #include #include #include namespace geos { namespace linearref { // geos::linearref /** \brief * Builds a linear geometry ([LineString](@ref geom::LineString) or * [MultiLineString](@ref geom::MultiLineString)) incrementally (point-by-point). * * @version 1.7 */ class LinearGeometryBuilder { private: const geom::GeometryFactory* geomFact; typedef std::vector> GeomPtrVect; // Geometry elements owned by this class GeomPtrVect lines; bool ignoreInvalidLines; bool fixInvalidLines; std::unique_ptr coordList; geom::Coordinate lastPt; public: LinearGeometryBuilder(const geom::GeometryFactory* geomFact); ~LinearGeometryBuilder(); /** \brief * Allows invalid lines to be ignored rather than causing Exceptions. * * An invalid line is one which has only one unique point. * * @param ignoreInvalidLines `true` if short lines are * to be ignored */ void setIgnoreInvalidLines(bool ignoreInvalidLines); /** \brief * Allows invalid lines to be ignored rather than causing Exceptions. * * An invalid line is one which has only one unique point. * * @param fixInvalidLines `true` if short lines are * to be ignored */ void setFixInvalidLines(bool fixInvalidLines); /** \brief * Adds a point to the current line. * * @param pt the Coordinate to add */ void add(const geom::Coordinate& pt); /** \brief * Adds a point to the current line. * * @param pt the Coordinate to add * @param allowRepeatedPoints if set to `false`, repeated coordinates are * collapsed */ void add(const geom::Coordinate& pt, bool allowRepeatedPoints); // NOTE strk: why return by value ? geom::Coordinate getLastCoordinate() const; /// Terminate the current LineString. void endLine(); std::unique_ptr getGeometry(); }; } // namespace geos.linearref } // namespace geos