QGIS API Documentation 3.99.0-Master (e9821da5c6b)
Loading...
Searching...
No Matches
util.cpp
Go to the documentation of this file.
1/*
2 * libpal - Automated Placement of Labels Library
3 *
4 * Copyright (C) 2008 Maxence Laurent, MIS-TIC, HEIG-VD
5 * University of Applied Sciences, Western Switzerland
6 * http://www.hes-so.ch
7 *
8 * Contact:
9 * maxence.laurent <at> heig-vd <dot> ch
10 * or
11 * eric.taillard <at> heig-vd <dot> ch
12 *
13 * This file is part of libpal.
14 *
15 * libpal is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation, either version 3 of the License, or
18 * (at your option) any later version.
19 *
20 * libpal is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with libpal. If not, see <http://www.gnu.org/licenses/>.
27 *
28 */
29
30#include "util.h"
31
32#include "qgsgeos.h"
33#include "qgslogger.h"
34
35#include <QString>
36
37using namespace Qt::StringLiterals;
38
39std::optional<QVector<const GEOSGeometry *>> pal::Util::unmulti( const GEOSGeometry *the_geom )
40{
41 QVector<const GEOSGeometry *> queue;
42 QVector<const GEOSGeometry *> final_queue;
43
44 const GEOSGeometry *geom = nullptr;
45
46 queue.append( the_geom );
47 int nGeom;
48 int i;
49
50 GEOSContextHandle_t geosctxt = QgsGeosContext::get();
51
52 while ( !queue.isEmpty() )
53 {
54 geom = queue.takeFirst();
55 const int type = GEOSGeomTypeId_r( geosctxt, geom );
56 switch ( type )
57 {
58 case GEOS_MULTIPOINT:
59 case GEOS_MULTILINESTRING:
60 case GEOS_MULTIPOLYGON:
61 case GEOS_GEOMETRYCOLLECTION:
62 nGeom = GEOSGetNumGeometries_r( geosctxt, geom );
63 for ( i = 0; i < nGeom; i++ )
64 {
65 queue.append( GEOSGetGeometryN_r( geosctxt, geom, i ) );
66 }
67 break;
68 case GEOS_POINT:
69 case GEOS_LINESTRING:
70 case GEOS_POLYGON:
71 final_queue.append( geom );
72 break;
73 default:
74 QgsDebugError( u"unexpected geometry type:%1"_s.arg( type ) );
75 return {};
76 }
77 }
78
79 return final_queue;
80}
81
82
83
static GEOSContextHandle_t get()
Returns a thread local instance of a GEOS context, safe for use in the current thread.
static std::optional< QVector< const GEOSGeometry * > > unmulti(const GEOSGeometry *the_geom)
Definition util.cpp:39
#define QgsDebugError(str)
Definition qgslogger.h:59
struct GEOSGeom_t GEOSGeometry
Definition util.h:41