QGIS API Documentation 3.99.0-Master (26c88405ac0)
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 <cfloat>
33
34#include "qgsgeos.h"
35#include "qgslogger.h"
36
37QLinkedList<const GEOSGeometry *> *pal::Util::unmulti( const GEOSGeometry *the_geom )
38{
39 QLinkedList<const GEOSGeometry *> *queue = new QLinkedList<const GEOSGeometry *>;
40 QLinkedList<const GEOSGeometry *> *final_queue = new QLinkedList<const GEOSGeometry *>;
41
42 const GEOSGeometry *geom = nullptr;
43
44 queue->append( the_geom );
45 int nGeom;
46 int i;
47
48 GEOSContextHandle_t geosctxt = QgsGeosContext::get();
49
50 while ( !queue->isEmpty() )
51 {
52 geom = queue->takeFirst();
53 const int type = GEOSGeomTypeId_r( geosctxt, geom );
54 switch ( type )
55 {
56 case GEOS_MULTIPOINT:
57 case GEOS_MULTILINESTRING:
58 case GEOS_MULTIPOLYGON:
59 case GEOS_GEOMETRYCOLLECTION:
60 nGeom = GEOSGetNumGeometries_r( geosctxt, geom );
61 for ( i = 0; i < nGeom; i++ )
62 {
63 queue->append( GEOSGetGeometryN_r( geosctxt, geom, i ) );
64 }
65 break;
66 case GEOS_POINT:
67 case GEOS_LINESTRING:
68 case GEOS_POLYGON:
69 final_queue->append( geom );
70 break;
71 default:
72 QgsDebugError( QStringLiteral( "unexpected geometry type:%1" ).arg( type ) );
73 delete final_queue;
74 delete queue;
75 return nullptr;
76 }
77 }
78 delete queue;
79
80 return final_queue;
81}
82
83
84
static GEOSContextHandle_t get()
Returns a thread local instance of a GEOS context, safe for use in the current thread.
static QLinkedList< const GEOSGeometry * > * unmulti(const GEOSGeometry *the_geom)
Definition util.cpp:37
#define QgsDebugError(str)
Definition qgslogger.h:57
struct GEOSGeom_t GEOSGeometry
Definition util.h:42