Branch data Line data Source code
1 : : /***************************************************************************
2 : : qgsarcgisrestutils.cpp
3 : : ----------------------
4 : : begin : Nov 25, 2015
5 : : copyright : (C) 2015 by Sandro Mani
6 : : email : manisandro@gmail.com
7 : : ***************************************************************************
8 : : * *
9 : : * This program is free software; you can redistribute it and/or modify *
10 : : * it under the terms of the GNU General Public License as published by *
11 : : * the Free Software Foundation; either version 2 of the License, or *
12 : : * (at your option) any later version. *
13 : : * *
14 : : ***************************************************************************/
15 : :
16 : : #include "qgsarcgisrestutils.h"
17 : : #include "qgsfields.h"
18 : : #include "qgslogger.h"
19 : : #include "qgsrectangle.h"
20 : : #include "qgspallabeling.h"
21 : : #include "qgssymbol.h"
22 : : #include "qgssymbollayer.h"
23 : : #include "qgslinesymbollayer.h"
24 : : #include "qgsfillsymbollayer.h"
25 : : #include "qgsrenderer.h"
26 : : #include "qgsrulebasedlabeling.h"
27 : : #include "qgssinglesymbolrenderer.h"
28 : : #include "qgscategorizedsymbolrenderer.h"
29 : : #include "qgsvectorlayerlabeling.h"
30 : : #include "qgscircularstring.h"
31 : : #include "qgsmulticurve.h"
32 : : #include "qgspolygon.h"
33 : : #include "qgslinestring.h"
34 : : #include "qgscurve.h"
35 : : #include "qgsgeometryengine.h"
36 : : #include "qgsmultisurface.h"
37 : : #include "qgsmultipoint.h"
38 : : #include <QRegularExpression>
39 : :
40 : :
41 : 0 : QVariant::Type QgsArcGisRestUtils::convertFieldType( const QString &esriFieldType )
42 : : {
43 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeInteger" ) )
44 : 0 : return QVariant::LongLong;
45 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeSmallInteger" ) )
46 : 0 : return QVariant::Int;
47 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeDouble" ) )
48 : 0 : return QVariant::Double;
49 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeSingle" ) )
50 : 0 : return QVariant::Double;
51 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeString" ) )
52 : 0 : return QVariant::String;
53 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeDate" ) )
54 : 0 : return QVariant::DateTime;
55 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeGeometry" ) )
56 : 0 : return QVariant::Invalid; // Geometry column should not appear as field
57 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeOID" ) )
58 : 0 : return QVariant::LongLong;
59 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeBlob" ) )
60 : 0 : return QVariant::ByteArray;
61 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeGlobalID" ) )
62 : 0 : return QVariant::String;
63 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeRaster" ) )
64 : 0 : return QVariant::ByteArray;
65 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeGUID" ) )
66 : 0 : return QVariant::String;
67 : 0 : if ( esriFieldType == QLatin1String( "esriFieldTypeXML" ) )
68 : 0 : return QVariant::String;
69 : 0 : return QVariant::Invalid;
70 : 0 : }
71 : :
72 : 0 : QgsWkbTypes::Type QgsArcGisRestUtils::convertGeometryType( const QString &esriGeometryType )
73 : : {
74 : : // http://resources.arcgis.com/en/help/arcobjects-cpp/componenthelp/index.html#//000w0000001p000000
75 : 0 : if ( esriGeometryType == QLatin1String( "esriGeometryNull" ) )
76 : 0 : return QgsWkbTypes::Unknown;
77 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryPoint" ) )
78 : 0 : return QgsWkbTypes::Point;
79 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryMultipoint" ) )
80 : 0 : return QgsWkbTypes::MultiPoint;
81 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryPolyline" ) )
82 : 0 : return QgsWkbTypes::MultiCurve;
83 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryPolygon" ) )
84 : 0 : return QgsWkbTypes::MultiPolygon;
85 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryEnvelope" ) )
86 : 0 : return QgsWkbTypes::Polygon;
87 : : // Unsupported (either by qgis, or format unspecified by the specification)
88 : : // esriGeometryCircularArc
89 : : // esriGeometryEllipticArc
90 : : // esriGeometryBezier3Curve
91 : : // esriGeometryPath
92 : : // esriGeometryRing
93 : : // esriGeometryLine
94 : : // esriGeometryAny
95 : : // esriGeometryMultiPatch
96 : : // esriGeometryTriangleStrip
97 : : // esriGeometryTriangleFan
98 : : // esriGeometryRay
99 : : // esriGeometrySphere
100 : : // esriGeometryTriangles
101 : : // esriGeometryBag
102 : 0 : return QgsWkbTypes::Unknown;
103 : 0 : }
104 : :
105 : 0 : std::unique_ptr< QgsPoint > QgsArcGisRestUtils::convertPoint( const QVariantList &coordList, QgsWkbTypes::Type pointType )
106 : : {
107 : 0 : int nCoords = coordList.size();
108 : 0 : if ( nCoords < 2 )
109 : 0 : return nullptr;
110 : 0 : bool xok = false, yok = false;
111 : 0 : double x = coordList[0].toDouble( &xok );
112 : 0 : double y = coordList[1].toDouble( &yok );
113 : 0 : if ( !xok || !yok )
114 : 0 : return nullptr;
115 : 0 : double z = nCoords >= 3 ? coordList[2].toDouble() : 0;
116 : 0 : double m = nCoords >= 4 ? coordList[3].toDouble() : 0;
117 : 0 : return std::make_unique< QgsPoint >( pointType, x, y, z, m );
118 : 0 : }
119 : :
120 : 0 : std::unique_ptr< QgsCircularString > QgsArcGisRestUtils::convertCircularString( const QVariantMap &curveData, QgsWkbTypes::Type pointType, const QgsPoint &startPoint )
121 : : {
122 : 0 : const QVariantList coordsList = curveData[QStringLiteral( "c" )].toList();
123 : 0 : if ( coordsList.isEmpty() )
124 : 0 : return nullptr;
125 : 0 : QVector<QgsPoint> points;
126 : 0 : points.append( startPoint );
127 : 0 : for ( const QVariant &coordData : coordsList )
128 : : {
129 : 0 : std::unique_ptr< QgsPoint > point( convertPoint( coordData.toList(), pointType ) );
130 : 0 : if ( !point )
131 : : {
132 : 0 : return nullptr;
133 : : }
134 : 0 : points.append( *point );
135 : 0 : }
136 : 0 : std::unique_ptr< QgsCircularString > curve = std::make_unique< QgsCircularString> ();
137 : 0 : curve->setPoints( points );
138 : 0 : return curve;
139 : 0 : }
140 : :
141 : 0 : std::unique_ptr< QgsCompoundCurve > QgsArcGisRestUtils::convertCompoundCurve( const QVariantList &curvesList, QgsWkbTypes::Type pointType )
142 : : {
143 : : // [[6,3],[5,3],{"b":[[3,2],[6,1],[2,4]]},[1,2],{"c": [[3,3],[1,4]]}]
144 : 0 : std::unique_ptr< QgsCompoundCurve > compoundCurve = std::make_unique< QgsCompoundCurve >();
145 : 0 : QgsLineString *lineString = new QgsLineString();
146 : 0 : compoundCurve->addCurve( lineString );
147 : 0 : for ( const QVariant &curveData : curvesList )
148 : : {
149 : 0 : if ( curveData.type() == QVariant::List )
150 : : {
151 : 0 : std::unique_ptr< QgsPoint > point( convertPoint( curveData.toList(), pointType ) );
152 : 0 : if ( !point )
153 : : {
154 : 0 : return nullptr;
155 : : }
156 : 0 : lineString->addVertex( *point );
157 : 0 : }
158 : 0 : else if ( curveData.type() == QVariant::Map )
159 : : {
160 : : // The last point of the linestring is the start point of this circular string
161 : 0 : std::unique_ptr< QgsCircularString > circularString( convertCircularString( curveData.toMap(), pointType, lineString->endPoint() ) );
162 : 0 : if ( !circularString )
163 : : {
164 : 0 : return nullptr;
165 : : }
166 : :
167 : : // If the previous curve had less than two points, remove it
168 : 0 : if ( compoundCurve->curveAt( compoundCurve->nCurves() - 1 )->nCoordinates() < 2 )
169 : 0 : compoundCurve->removeCurve( compoundCurve->nCurves() - 1 );
170 : :
171 : 0 : const QgsPoint endPointCircularString = circularString->endPoint();
172 : 0 : compoundCurve->addCurve( circularString.release() );
173 : :
174 : : // Prepare a new line string
175 : 0 : lineString = new QgsLineString;
176 : 0 : compoundCurve->addCurve( lineString );
177 : 0 : lineString->addVertex( endPointCircularString );
178 : 0 : }
179 : : }
180 : 0 : return compoundCurve;
181 : 0 : }
182 : :
183 : 0 : std::unique_ptr< QgsPoint > QgsArcGisRestUtils::convertGeometryPoint( const QVariantMap &geometryData, QgsWkbTypes::Type pointType )
184 : : {
185 : : // {"x" : <x>, "y" : <y>, "z" : <z>, "m" : <m>}
186 : 0 : bool xok = false, yok = false;
187 : 0 : double x = geometryData[QStringLiteral( "x" )].toDouble( &xok );
188 : 0 : double y = geometryData[QStringLiteral( "y" )].toDouble( &yok );
189 : 0 : if ( !xok || !yok )
190 : 0 : return nullptr;
191 : 0 : double z = geometryData[QStringLiteral( "z" )].toDouble();
192 : 0 : double m = geometryData[QStringLiteral( "m" )].toDouble();
193 : 0 : return std::make_unique< QgsPoint >( pointType, x, y, z, m );
194 : 0 : }
195 : :
196 : 0 : std::unique_ptr< QgsMultiPoint > QgsArcGisRestUtils::convertMultiPoint( const QVariantMap &geometryData, QgsWkbTypes::Type pointType )
197 : : {
198 : : // {"points" : [[ <x1>, <y1>, <z1>, <m1> ] , [ <x2>, <y2>, <z2>, <m2> ], ... ]}
199 : 0 : const QVariantList coordsList = geometryData[QStringLiteral( "points" )].toList();
200 : :
201 : 0 : std::unique_ptr< QgsMultiPoint > multiPoint = std::make_unique< QgsMultiPoint >();
202 : 0 : multiPoint->reserve( coordsList.size() );
203 : 0 : for ( const QVariant &coordData : coordsList )
204 : : {
205 : 0 : const QVariantList coordList = coordData.toList();
206 : 0 : std::unique_ptr< QgsPoint > p = convertPoint( coordList, pointType );
207 : 0 : if ( !p )
208 : : {
209 : 0 : continue;
210 : : }
211 : 0 : multiPoint->addGeometry( p.release() );
212 : 0 : }
213 : :
214 : : // second chance -- sometimes layers are reported as multipoint but features have single
215 : : // point geometries. Silently handle this and upgrade to multipoint.
216 : 0 : std::unique_ptr< QgsPoint > p = convertGeometryPoint( geometryData, pointType );
217 : 0 : if ( p )
218 : 0 : multiPoint->addGeometry( p.release() );
219 : :
220 : 0 : if ( multiPoint->numGeometries() == 0 )
221 : : {
222 : : // didn't find any points, so reset geometry to null
223 : 0 : multiPoint.reset();
224 : 0 : }
225 : 0 : return multiPoint;
226 : 0 : }
227 : :
228 : 0 : std::unique_ptr< QgsMultiCurve > QgsArcGisRestUtils::convertGeometryPolyline( const QVariantMap &geometryData, QgsWkbTypes::Type pointType )
229 : : {
230 : : // {"curvePaths": [[[0,0], {"c": [[3,3],[1,4]]} ]]}
231 : 0 : QVariantList pathsList;
232 : 0 : if ( geometryData[QStringLiteral( "paths" )].isValid() )
233 : 0 : pathsList = geometryData[QStringLiteral( "paths" )].toList();
234 : 0 : else if ( geometryData[QStringLiteral( "curvePaths" )].isValid() )
235 : 0 : pathsList = geometryData[QStringLiteral( "curvePaths" )].toList();
236 : 0 : if ( pathsList.isEmpty() )
237 : 0 : return nullptr;
238 : 0 : std::unique_ptr< QgsMultiCurve > multiCurve = std::make_unique< QgsMultiCurve >();
239 : 0 : multiCurve->reserve( pathsList.size() );
240 : 0 : for ( const QVariant &pathData : std::as_const( pathsList ) )
241 : : {
242 : 0 : std::unique_ptr< QgsCompoundCurve > curve = convertCompoundCurve( pathData.toList(), pointType );
243 : 0 : if ( !curve )
244 : : {
245 : 0 : return nullptr;
246 : : }
247 : 0 : multiCurve->addGeometry( curve.release() );
248 : 0 : }
249 : 0 : return multiCurve;
250 : 0 : }
251 : :
252 : 0 : std::unique_ptr< QgsMultiSurface > QgsArcGisRestUtils::convertGeometryPolygon( const QVariantMap &geometryData, QgsWkbTypes::Type pointType )
253 : : {
254 : : // {"curveRings": [[[0,0], {"c": [[3,3],[1,4]]} ]]}
255 : 0 : QVariantList ringsList;
256 : 0 : if ( geometryData[QStringLiteral( "rings" )].isValid() )
257 : 0 : ringsList = geometryData[QStringLiteral( "rings" )].toList();
258 : 0 : else if ( geometryData[QStringLiteral( "ringPaths" )].isValid() )
259 : 0 : ringsList = geometryData[QStringLiteral( "ringPaths" )].toList();
260 : 0 : if ( ringsList.isEmpty() )
261 : 0 : return nullptr;
262 : :
263 : 0 : QList< QgsCompoundCurve * > curves;
264 : 0 : for ( int i = 0, n = ringsList.size(); i < n; ++i )
265 : : {
266 : 0 : std::unique_ptr< QgsCompoundCurve > curve = convertCompoundCurve( ringsList[i].toList(), pointType );
267 : 0 : if ( !curve )
268 : : {
269 : 0 : continue;
270 : : }
271 : 0 : curves.append( curve.release() );
272 : 0 : }
273 : 0 : if ( curves.count() == 0 )
274 : 0 : return nullptr;
275 : :
276 : 0 : std::sort( curves.begin(), curves.end(), []( const QgsCompoundCurve * a, const QgsCompoundCurve * b )->bool{ double a_area = 0.0; double b_area = 0.0; a->sumUpArea( a_area ); b->sumUpArea( b_area ); return std::abs( a_area ) > std::abs( b_area ); } );
277 : 0 : std::unique_ptr< QgsMultiSurface > result = std::make_unique< QgsMultiSurface >();
278 : 0 : result->reserve( curves.size() );
279 : 0 : while ( !curves.isEmpty() )
280 : : {
281 : 0 : QgsCompoundCurve *exterior = curves.takeFirst();
282 : 0 : QgsCurvePolygon *newPolygon = new QgsCurvePolygon();
283 : 0 : newPolygon->setExteriorRing( exterior );
284 : 0 : std::unique_ptr<QgsGeometryEngine> engine( QgsGeometry::createGeometryEngine( newPolygon ) );
285 : 0 : engine->prepareGeometry();
286 : :
287 : 0 : QMutableListIterator< QgsCompoundCurve * > it( curves );
288 : 0 : while ( it.hasNext() )
289 : : {
290 : 0 : QgsCompoundCurve *curve = it.next();
291 : 0 : QgsRectangle boundingBox = newPolygon->boundingBox();
292 : 0 : if ( boundingBox.intersects( curve->boundingBox() ) )
293 : : {
294 : 0 : QgsPoint point = curve->startPoint();
295 : 0 : if ( engine->contains( &point ) )
296 : : {
297 : 0 : newPolygon->addInteriorRing( curve );
298 : 0 : it.remove();
299 : 0 : engine.reset( QgsGeometry::createGeometryEngine( newPolygon ) );
300 : 0 : engine->prepareGeometry();
301 : 0 : }
302 : 0 : }
303 : : }
304 : 0 : result->addGeometry( newPolygon );
305 : 0 : }
306 : 0 : if ( result->numGeometries() == 0 )
307 : 0 : return nullptr;
308 : :
309 : 0 : return result;
310 : 0 : }
311 : :
312 : 0 : std::unique_ptr< QgsPolygon > QgsArcGisRestUtils::convertEnvelope( const QVariantMap &geometryData )
313 : : {
314 : : // {"xmin" : -109.55, "ymin" : 25.76, "xmax" : -86.39, "ymax" : 49.94}
315 : 0 : bool xminOk = false, yminOk = false, xmaxOk = false, ymaxOk = false;
316 : 0 : double xmin = geometryData[QStringLiteral( "xmin" )].toDouble( &xminOk );
317 : 0 : double ymin = geometryData[QStringLiteral( "ymin" )].toDouble( &yminOk );
318 : 0 : double xmax = geometryData[QStringLiteral( "xmax" )].toDouble( &xmaxOk );
319 : 0 : double ymax = geometryData[QStringLiteral( "ymax" )].toDouble( &ymaxOk );
320 : 0 : if ( !xminOk || !yminOk || !xmaxOk || !ymaxOk )
321 : 0 : return nullptr;
322 : 0 : std::unique_ptr< QgsLineString > ext = std::make_unique< QgsLineString> ();
323 : 0 : ext->addVertex( QgsPoint( xmin, ymin ) );
324 : 0 : ext->addVertex( QgsPoint( xmax, ymin ) );
325 : 0 : ext->addVertex( QgsPoint( xmax, ymax ) );
326 : 0 : ext->addVertex( QgsPoint( xmin, ymax ) );
327 : 0 : ext->addVertex( QgsPoint( xmin, ymin ) );
328 : 0 : std::unique_ptr< QgsPolygon > poly = std::make_unique< QgsPolygon >();
329 : 0 : poly->setExteriorRing( ext.release() );
330 : 0 : return poly;
331 : 0 : }
332 : :
333 : 0 : QgsAbstractGeometry *QgsArcGisRestUtils::convertGeometry( const QVariantMap &geometryData, const QString &esriGeometryType, bool readM, bool readZ, QgsCoordinateReferenceSystem *crs )
334 : : {
335 : 0 : QgsWkbTypes::Type pointType = QgsWkbTypes::zmType( QgsWkbTypes::Point, readZ, readM );
336 : 0 : if ( crs )
337 : : {
338 : 0 : *crs = convertSpatialReference( geometryData[QStringLiteral( "spatialReference" )].toMap() );
339 : 0 : }
340 : :
341 : : // http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#/Geometry_Objects/02r3000000n1000000/
342 : 0 : if ( esriGeometryType == QLatin1String( "esriGeometryNull" ) )
343 : 0 : return nullptr;
344 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryPoint" ) )
345 : 0 : return convertGeometryPoint( geometryData, pointType ).release();
346 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryMultipoint" ) )
347 : 0 : return convertMultiPoint( geometryData, pointType ).release();
348 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryPolyline" ) )
349 : 0 : return convertGeometryPolyline( geometryData, pointType ).release();
350 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryPolygon" ) )
351 : 0 : return convertGeometryPolygon( geometryData, pointType ).release();
352 : 0 : else if ( esriGeometryType == QLatin1String( "esriGeometryEnvelope" ) )
353 : 0 : return convertEnvelope( geometryData ).release();
354 : : // Unsupported (either by qgis, or format unspecified by the specification)
355 : : // esriGeometryCircularArc
356 : : // esriGeometryEllipticArc
357 : : // esriGeometryBezier3Curve
358 : : // esriGeometryPath
359 : : // esriGeometryRing
360 : : // esriGeometryLine
361 : : // esriGeometryAny
362 : : // esriGeometryMultiPatch
363 : : // esriGeometryTriangleStrip
364 : : // esriGeometryTriangleFan
365 : : // esriGeometryRay
366 : : // esriGeometrySphere
367 : : // esriGeometryTriangles
368 : : // esriGeometryBag
369 : 0 : return nullptr;
370 : 0 : }
371 : :
372 : 0 : QgsCoordinateReferenceSystem QgsArcGisRestUtils::convertSpatialReference( const QVariantMap &spatialReferenceMap )
373 : : {
374 : 0 : QString spatialReference = spatialReferenceMap[QStringLiteral( "latestWkid" )].toString();
375 : 0 : if ( spatialReference.isEmpty() )
376 : 0 : spatialReference = spatialReferenceMap[QStringLiteral( "wkid" )].toString();
377 : 0 : if ( spatialReference.isEmpty() )
378 : 0 : spatialReference = spatialReferenceMap[QStringLiteral( "wkt" )].toString();
379 : : else
380 : 0 : spatialReference = QStringLiteral( "EPSG:%1" ).arg( spatialReference );
381 : 0 : QgsCoordinateReferenceSystem crs;
382 : 0 : crs.createFromString( spatialReference );
383 : 0 : if ( !crs.isValid() )
384 : : {
385 : : // If not spatial reference, just use WGS84
386 : 0 : crs.createFromString( QStringLiteral( "EPSG:4326" ) );
387 : 0 : }
388 : 0 : return crs;
389 : 0 : }
390 : :
391 : 0 : QgsSymbol *QgsArcGisRestUtils::convertSymbol( const QVariantMap &symbolData )
392 : : {
393 : 0 : const QString type = symbolData.value( QStringLiteral( "type" ) ).toString();
394 : 0 : if ( type == QLatin1String( "esriSMS" ) )
395 : : {
396 : : // marker symbol
397 : 0 : return parseEsriMarkerSymbolJson( symbolData ).release();
398 : : }
399 : 0 : else if ( type == QLatin1String( "esriSLS" ) )
400 : : {
401 : : // line symbol
402 : 0 : return parseEsriLineSymbolJson( symbolData ).release();
403 : : }
404 : 0 : else if ( type == QLatin1String( "esriSFS" ) )
405 : : {
406 : : // fill symbol
407 : 0 : return parseEsriFillSymbolJson( symbolData ).release();
408 : : }
409 : 0 : else if ( type == QLatin1String( "esriPFS" ) )
410 : : {
411 : 0 : return parseEsriPictureFillSymbolJson( symbolData ).release();
412 : : }
413 : 0 : else if ( type == QLatin1String( "esriPMS" ) )
414 : : {
415 : : // picture marker
416 : 0 : return parseEsriPictureMarkerSymbolJson( symbolData ).release();
417 : : }
418 : 0 : else if ( type == QLatin1String( "esriTS" ) )
419 : : {
420 : : // text symbol - not supported
421 : 0 : return nullptr;
422 : : }
423 : 0 : return nullptr;
424 : 0 : }
425 : :
426 : 0 : std::unique_ptr<QgsLineSymbol> QgsArcGisRestUtils::parseEsriLineSymbolJson( const QVariantMap &symbolData )
427 : : {
428 : 0 : QColor lineColor = convertColor( symbolData.value( QStringLiteral( "color" ) ) );
429 : 0 : if ( !lineColor.isValid() )
430 : 0 : return nullptr;
431 : :
432 : 0 : bool ok = false;
433 : 0 : double widthInPoints = symbolData.value( QStringLiteral( "width" ) ).toDouble( &ok );
434 : 0 : if ( !ok )
435 : 0 : return nullptr;
436 : :
437 : 0 : QgsSymbolLayerList layers;
438 : 0 : Qt::PenStyle penStyle = convertLineStyle( symbolData.value( QStringLiteral( "style" ) ).toString() );
439 : 0 : std::unique_ptr< QgsSimpleLineSymbolLayer > lineLayer = std::make_unique< QgsSimpleLineSymbolLayer >( lineColor, widthInPoints, penStyle );
440 : 0 : lineLayer->setWidthUnit( QgsUnitTypes::RenderPoints );
441 : 0 : layers.append( lineLayer.release() );
442 : :
443 : 0 : std::unique_ptr< QgsLineSymbol > symbol = std::make_unique< QgsLineSymbol >( layers );
444 : 0 : return symbol;
445 : 0 : }
446 : :
447 : 0 : std::unique_ptr<QgsFillSymbol> QgsArcGisRestUtils::parseEsriFillSymbolJson( const QVariantMap &symbolData )
448 : : {
449 : 0 : QColor fillColor = convertColor( symbolData.value( QStringLiteral( "color" ) ) );
450 : 0 : Qt::BrushStyle brushStyle = convertFillStyle( symbolData.value( QStringLiteral( "style" ) ).toString() );
451 : :
452 : 0 : const QVariantMap outlineData = symbolData.value( QStringLiteral( "outline" ) ).toMap();
453 : 0 : QColor lineColor = convertColor( outlineData.value( QStringLiteral( "color" ) ) );
454 : 0 : Qt::PenStyle penStyle = convertLineStyle( outlineData.value( QStringLiteral( "style" ) ).toString() );
455 : 0 : bool ok = false;
456 : 0 : double penWidthInPoints = outlineData.value( QStringLiteral( "width" ) ).toDouble( &ok );
457 : :
458 : 0 : QgsSymbolLayerList layers;
459 : 0 : std::unique_ptr< QgsSimpleFillSymbolLayer > fillLayer = std::make_unique< QgsSimpleFillSymbolLayer >( fillColor, brushStyle, lineColor, penStyle, penWidthInPoints );
460 : 0 : fillLayer->setStrokeWidthUnit( QgsUnitTypes::RenderPoints );
461 : 0 : layers.append( fillLayer.release() );
462 : :
463 : 0 : std::unique_ptr< QgsFillSymbol > symbol = std::make_unique< QgsFillSymbol >( layers );
464 : 0 : return symbol;
465 : 0 : }
466 : :
467 : 0 : std::unique_ptr<QgsFillSymbol> QgsArcGisRestUtils::parseEsriPictureFillSymbolJson( const QVariantMap &symbolData )
468 : : {
469 : 0 : bool ok = false;
470 : :
471 : 0 : double widthInPixels = symbolData.value( QStringLiteral( "width" ) ).toInt( &ok );
472 : 0 : if ( !ok )
473 : 0 : return nullptr;
474 : :
475 : 0 : const double xScale = symbolData.value( QStringLiteral( "xscale" ) ).toDouble( &ok );
476 : 0 : if ( !qgsDoubleNear( xScale, 0.0 ) )
477 : 0 : widthInPixels *= xScale;
478 : :
479 : 0 : const double angleCCW = symbolData.value( QStringLiteral( "angle" ) ).toDouble( &ok );
480 : 0 : double angleCW = 0;
481 : 0 : if ( ok )
482 : 0 : angleCW = -angleCCW;
483 : :
484 : 0 : const double xOffset = symbolData.value( QStringLiteral( "xoffset" ) ).toDouble();
485 : 0 : const double yOffset = symbolData.value( QStringLiteral( "yoffset" ) ).toDouble();
486 : :
487 : 0 : QString symbolPath( symbolData.value( QStringLiteral( "imageData" ) ).toString() );
488 : 0 : symbolPath.prepend( QLatin1String( "base64:" ) );
489 : :
490 : 0 : QgsSymbolLayerList layers;
491 : 0 : std::unique_ptr< QgsRasterFillSymbolLayer > fillLayer = std::make_unique< QgsRasterFillSymbolLayer >( symbolPath );
492 : 0 : fillLayer->setWidth( widthInPixels );
493 : 0 : fillLayer->setAngle( angleCW );
494 : 0 : fillLayer->setWidthUnit( QgsUnitTypes::RenderPoints );
495 : 0 : fillLayer->setOffset( QPointF( xOffset, yOffset ) );
496 : 0 : fillLayer->setOffsetUnit( QgsUnitTypes::RenderPoints );
497 : 0 : layers.append( fillLayer.release() );
498 : :
499 : 0 : const QVariantMap outlineData = symbolData.value( QStringLiteral( "outline" ) ).toMap();
500 : 0 : QColor lineColor = convertColor( outlineData.value( QStringLiteral( "color" ) ) );
501 : 0 : Qt::PenStyle penStyle = convertLineStyle( outlineData.value( QStringLiteral( "style" ) ).toString() );
502 : 0 : double penWidthInPoints = outlineData.value( QStringLiteral( "width" ) ).toDouble( &ok );
503 : :
504 : 0 : std::unique_ptr< QgsSimpleLineSymbolLayer > lineLayer = std::make_unique< QgsSimpleLineSymbolLayer >( lineColor, penWidthInPoints, penStyle );
505 : 0 : lineLayer->setWidthUnit( QgsUnitTypes::RenderPoints );
506 : 0 : layers.append( lineLayer.release() );
507 : :
508 : 0 : std::unique_ptr< QgsFillSymbol > symbol = std::make_unique< QgsFillSymbol >( layers );
509 : 0 : return symbol;
510 : 0 : }
511 : :
512 : 0 : QgsSimpleMarkerSymbolLayerBase::Shape QgsArcGisRestUtils::parseEsriMarkerShape( const QString &style )
513 : : {
514 : 0 : if ( style == QLatin1String( "esriSMSCircle" ) )
515 : 0 : return QgsSimpleMarkerSymbolLayerBase::Circle;
516 : 0 : else if ( style == QLatin1String( "esriSMSCross" ) )
517 : 0 : return QgsSimpleMarkerSymbolLayerBase::Cross;
518 : 0 : else if ( style == QLatin1String( "esriSMSDiamond" ) )
519 : 0 : return QgsSimpleMarkerSymbolLayerBase::Diamond;
520 : 0 : else if ( style == QLatin1String( "esriSMSSquare" ) )
521 : 0 : return QgsSimpleMarkerSymbolLayerBase::Square;
522 : 0 : else if ( style == QLatin1String( "esriSMSX" ) )
523 : 0 : return QgsSimpleMarkerSymbolLayerBase::Cross2;
524 : 0 : else if ( style == QLatin1String( "esriSMSTriangle" ) )
525 : 0 : return QgsSimpleMarkerSymbolLayerBase::Triangle;
526 : : else
527 : 0 : return QgsSimpleMarkerSymbolLayerBase::Circle;
528 : 0 : }
529 : :
530 : 0 : std::unique_ptr<QgsMarkerSymbol> QgsArcGisRestUtils::parseEsriMarkerSymbolJson( const QVariantMap &symbolData )
531 : : {
532 : 0 : QColor fillColor = convertColor( symbolData.value( QStringLiteral( "color" ) ) );
533 : 0 : bool ok = false;
534 : 0 : const double sizeInPoints = symbolData.value( QStringLiteral( "size" ) ).toDouble( &ok );
535 : 0 : if ( !ok )
536 : 0 : return nullptr;
537 : 0 : const double angleCCW = symbolData.value( QStringLiteral( "angle" ) ).toDouble( &ok );
538 : 0 : double angleCW = 0;
539 : 0 : if ( ok )
540 : 0 : angleCW = -angleCCW;
541 : :
542 : 0 : QgsSimpleMarkerSymbolLayerBase::Shape shape = parseEsriMarkerShape( symbolData.value( QStringLiteral( "style" ) ).toString() );
543 : :
544 : 0 : const double xOffset = symbolData.value( QStringLiteral( "xoffset" ) ).toDouble();
545 : 0 : const double yOffset = symbolData.value( QStringLiteral( "yoffset" ) ).toDouble();
546 : :
547 : 0 : const QVariantMap outlineData = symbolData.value( QStringLiteral( "outline" ) ).toMap();
548 : 0 : QColor lineColor = convertColor( outlineData.value( QStringLiteral( "color" ) ) );
549 : 0 : Qt::PenStyle penStyle = convertLineStyle( outlineData.value( QStringLiteral( "style" ) ).toString() );
550 : 0 : double penWidthInPoints = outlineData.value( QStringLiteral( "width" ) ).toDouble( &ok );
551 : :
552 : 0 : QgsSymbolLayerList layers;
553 : 0 : std::unique_ptr< QgsSimpleMarkerSymbolLayer > markerLayer = std::make_unique< QgsSimpleMarkerSymbolLayer >( shape, sizeInPoints, angleCW, QgsSymbol::ScaleArea, fillColor, lineColor );
554 : 0 : markerLayer->setSizeUnit( QgsUnitTypes::RenderPoints );
555 : 0 : markerLayer->setStrokeWidthUnit( QgsUnitTypes::RenderPoints );
556 : 0 : markerLayer->setStrokeStyle( penStyle );
557 : 0 : markerLayer->setStrokeWidth( penWidthInPoints );
558 : 0 : markerLayer->setOffset( QPointF( xOffset, yOffset ) );
559 : 0 : markerLayer->setOffsetUnit( QgsUnitTypes::RenderPoints );
560 : 0 : layers.append( markerLayer.release() );
561 : :
562 : 0 : std::unique_ptr< QgsMarkerSymbol > symbol = std::make_unique< QgsMarkerSymbol >( layers );
563 : 0 : return symbol;
564 : 0 : }
565 : :
566 : 0 : std::unique_ptr<QgsMarkerSymbol> QgsArcGisRestUtils::parseEsriPictureMarkerSymbolJson( const QVariantMap &symbolData )
567 : : {
568 : 0 : bool ok = false;
569 : 0 : const double widthInPixels = symbolData.value( QStringLiteral( "width" ) ).toInt( &ok );
570 : 0 : if ( !ok )
571 : 0 : return nullptr;
572 : 0 : const double heightInPixels = symbolData.value( QStringLiteral( "height" ) ).toInt( &ok );
573 : 0 : if ( !ok )
574 : 0 : return nullptr;
575 : :
576 : 0 : const double angleCCW = symbolData.value( QStringLiteral( "angle" ) ).toDouble( &ok );
577 : 0 : double angleCW = 0;
578 : 0 : if ( ok )
579 : 0 : angleCW = -angleCCW;
580 : :
581 : 0 : const double xOffset = symbolData.value( QStringLiteral( "xoffset" ) ).toDouble();
582 : 0 : const double yOffset = symbolData.value( QStringLiteral( "yoffset" ) ).toDouble();
583 : :
584 : : //const QString contentType = symbolData.value( QStringLiteral( "contentType" ) ).toString();
585 : :
586 : 0 : QString symbolPath( symbolData.value( QStringLiteral( "imageData" ) ).toString() );
587 : 0 : symbolPath.prepend( QLatin1String( "base64:" ) );
588 : :
589 : 0 : QgsSymbolLayerList layers;
590 : 0 : std::unique_ptr< QgsRasterMarkerSymbolLayer > markerLayer = std::make_unique< QgsRasterMarkerSymbolLayer >( symbolPath, widthInPixels, angleCW, QgsSymbol::ScaleArea );
591 : 0 : markerLayer->setSizeUnit( QgsUnitTypes::RenderPoints );
592 : :
593 : : // only change the default aspect ratio if the server height setting requires this
594 : 0 : if ( !qgsDoubleNear( static_cast< double >( heightInPixels ) / widthInPixels, markerLayer->defaultAspectRatio() ) )
595 : 0 : markerLayer->setFixedAspectRatio( static_cast< double >( heightInPixels ) / widthInPixels );
596 : :
597 : 0 : markerLayer->setOffset( QPointF( xOffset, yOffset ) );
598 : 0 : markerLayer->setOffsetUnit( QgsUnitTypes::RenderPoints );
599 : 0 : layers.append( markerLayer.release() );
600 : :
601 : 0 : std::unique_ptr< QgsMarkerSymbol > symbol = std::make_unique< QgsMarkerSymbol >( layers );
602 : 0 : return symbol;
603 : 0 : }
604 : :
605 : 0 : QgsAbstractVectorLayerLabeling *QgsArcGisRestUtils::convertLabeling( const QVariantList &labelingData )
606 : : {
607 : 0 : if ( labelingData.empty() )
608 : 0 : return nullptr;
609 : :
610 : 0 : QgsRuleBasedLabeling::Rule *root = new QgsRuleBasedLabeling::Rule( new QgsPalLayerSettings(), 0, 0, QString(), QString(), false );
611 : 0 : root->setActive( true );
612 : :
613 : 0 : int i = 1;
614 : 0 : for ( const QVariant &lbl : labelingData )
615 : : {
616 : 0 : const QVariantMap labeling = lbl.toMap();
617 : :
618 : 0 : QgsPalLayerSettings *settings = new QgsPalLayerSettings();
619 : 0 : QgsTextFormat format;
620 : :
621 : 0 : const QString placement = labeling.value( QStringLiteral( "labelPlacement" ) ).toString();
622 : 0 : if ( placement == QLatin1String( "esriServerPointLabelPlacementAboveCenter" ) )
623 : : {
624 : 0 : settings->placement = QgsPalLayerSettings::OverPoint;
625 : 0 : settings->quadOffset = QgsPalLayerSettings::QuadrantAbove;
626 : 0 : }
627 : 0 : else if ( placement == QLatin1String( "esriServerPointLabelPlacementBelowCenter" ) )
628 : : {
629 : 0 : settings->placement = QgsPalLayerSettings::OverPoint;
630 : 0 : settings->quadOffset = QgsPalLayerSettings::QuadrantBelow;
631 : 0 : }
632 : 0 : else if ( placement == QLatin1String( "esriServerPointLabelPlacementCenterCenter" ) )
633 : : {
634 : 0 : settings->placement = QgsPalLayerSettings::OverPoint;
635 : 0 : settings->quadOffset = QgsPalLayerSettings::QuadrantOver;
636 : 0 : }
637 : 0 : else if ( placement == QLatin1String( "esriServerPointLabelPlacementAboveLeft" ) )
638 : : {
639 : 0 : settings->placement = QgsPalLayerSettings::OverPoint;
640 : 0 : settings->quadOffset = QgsPalLayerSettings::QuadrantAboveLeft;
641 : 0 : }
642 : 0 : else if ( placement == QLatin1String( "esriServerPointLabelPlacementBelowLeft" ) )
643 : : {
644 : 0 : settings->placement = QgsPalLayerSettings::OverPoint;
645 : 0 : settings->quadOffset = QgsPalLayerSettings::QuadrantBelowLeft;
646 : 0 : }
647 : 0 : else if ( placement == QLatin1String( "esriServerPointLabelPlacementCenterLeft" ) )
648 : : {
649 : 0 : settings->placement = QgsPalLayerSettings::OverPoint;
650 : 0 : settings->quadOffset = QgsPalLayerSettings::QuadrantLeft;
651 : 0 : }
652 : 0 : else if ( placement == QLatin1String( "esriServerPointLabelPlacementAboveRight" ) )
653 : : {
654 : 0 : settings->placement = QgsPalLayerSettings::OverPoint;
655 : 0 : settings->quadOffset = QgsPalLayerSettings::QuadrantAboveRight;
656 : 0 : }
657 : 0 : else if ( placement == QLatin1String( "esriServerPointLabelPlacementBelowRight" ) )
658 : : {
659 : 0 : settings->placement = QgsPalLayerSettings::OverPoint;
660 : 0 : settings->quadOffset = QgsPalLayerSettings::QuadrantBelowRight;
661 : 0 : }
662 : 0 : else if ( placement == QLatin1String( "esriServerPointLabelPlacementCenterRight" ) )
663 : : {
664 : 0 : settings->placement = QgsPalLayerSettings::OverPoint;
665 : 0 : settings->quadOffset = QgsPalLayerSettings::QuadrantRight;
666 : 0 : }
667 : 0 : else if ( placement == QLatin1String( "esriServerLinePlacementAboveAfter" ) ||
668 : 0 : placement == QLatin1String( "esriServerLinePlacementAboveStart" ) ||
669 : 0 : placement == QLatin1String( "esriServerLinePlacementAboveAlong" ) )
670 : : {
671 : 0 : settings->placement = QgsPalLayerSettings::Line;
672 : 0 : settings->lineSettings().setPlacementFlags( QgsLabeling::LinePlacementFlag::AboveLine | QgsLabeling::LinePlacementFlag::MapOrientation );
673 : 0 : }
674 : 0 : else if ( placement == QLatin1String( "esriServerLinePlacementBelowAfter" ) ||
675 : 0 : placement == QLatin1String( "esriServerLinePlacementBelowStart" ) ||
676 : 0 : placement == QLatin1String( "esriServerLinePlacementBelowAlong" ) )
677 : : {
678 : 0 : settings->placement = QgsPalLayerSettings::Line;
679 : 0 : settings->lineSettings().setPlacementFlags( QgsLabeling::LinePlacementFlag::BelowLine | QgsLabeling::LinePlacementFlag::MapOrientation );
680 : 0 : }
681 : 0 : else if ( placement == QLatin1String( "esriServerLinePlacementCenterAfter" ) ||
682 : 0 : placement == QLatin1String( "esriServerLinePlacementCenterStart" ) ||
683 : 0 : placement == QLatin1String( "esriServerLinePlacementCenterAlong" ) )
684 : : {
685 : 0 : settings->placement = QgsPalLayerSettings::Line;
686 : 0 : settings->lineSettings().setPlacementFlags( QgsLabeling::LinePlacementFlag::OnLine | QgsLabeling::LinePlacementFlag::MapOrientation );
687 : 0 : }
688 : 0 : else if ( placement == QLatin1String( "esriServerPolygonPlacementAlwaysHorizontal" ) )
689 : : {
690 : 0 : settings->placement = QgsPalLayerSettings::Horizontal;
691 : 0 : }
692 : :
693 : 0 : const double minScale = labeling.value( QStringLiteral( "minScale" ) ).toDouble();
694 : 0 : const double maxScale = labeling.value( QStringLiteral( "maxScale" ) ).toDouble();
695 : :
696 : 0 : QVariantMap symbol = labeling.value( QStringLiteral( "symbol" ) ).toMap();
697 : 0 : format.setColor( convertColor( symbol.value( QStringLiteral( "color" ) ) ) );
698 : 0 : const double haloSize = symbol.value( QStringLiteral( "haloSize" ) ).toDouble();
699 : 0 : if ( !qgsDoubleNear( haloSize, 0.0 ) )
700 : : {
701 : 0 : QgsTextBufferSettings buffer;
702 : 0 : buffer.setEnabled( true );
703 : 0 : buffer.setSize( haloSize );
704 : 0 : buffer.setSizeUnit( QgsUnitTypes::RenderPoints );
705 : 0 : buffer.setColor( convertColor( symbol.value( QStringLiteral( "haloColor" ) ) ) );
706 : 0 : format.setBuffer( buffer );
707 : 0 : }
708 : :
709 : 0 : const QString fontFamily = symbol.value( QStringLiteral( "font" ) ).toMap().value( QStringLiteral( "family" ) ).toString();
710 : 0 : const QString fontStyle = symbol.value( QStringLiteral( "font" ) ).toMap().value( QStringLiteral( "style" ) ).toString();
711 : 0 : const QString fontWeight = symbol.value( QStringLiteral( "font" ) ).toMap().value( QStringLiteral( "weight" ) ).toString();
712 : 0 : const int fontSize = symbol.value( QStringLiteral( "font" ) ).toMap().value( QStringLiteral( "size" ) ).toInt();
713 : 0 : QFont font( fontFamily, fontSize );
714 : 0 : font.setStyleName( fontStyle );
715 : 0 : font.setWeight( fontWeight == QLatin1String( "bold" ) ? QFont::Bold : QFont::Normal );
716 : :
717 : 0 : format.setFont( font );
718 : 0 : format.setSize( fontSize );
719 : 0 : format.setSizeUnit( QgsUnitTypes::RenderPoints );
720 : :
721 : 0 : settings->setFormat( format );
722 : :
723 : 0 : QString where = labeling.value( QStringLiteral( "where" ) ).toString();
724 : 0 : QgsExpression exp( where );
725 : : // If the where clause isn't parsed as valid, don't use its
726 : 0 : if ( !exp.isValid() )
727 : 0 : where.clear();
728 : :
729 : 0 : settings->fieldName = convertLabelingExpression( labeling.value( QStringLiteral( "labelExpression" ) ).toString() );
730 : 0 : settings->isExpression = true;
731 : :
732 : 0 : QgsRuleBasedLabeling::Rule *child = new QgsRuleBasedLabeling::Rule( settings, maxScale, minScale, where, QObject::tr( "ASF label %1" ).arg( i++ ), false );
733 : 0 : child->setActive( true );
734 : 0 : root->appendChild( child );
735 : 0 : }
736 : :
737 : 0 : return new QgsRuleBasedLabeling( root );
738 : 0 : }
739 : :
740 : 0 : QgsFeatureRenderer *QgsArcGisRestUtils::convertRenderer( const QVariantMap &rendererData )
741 : : {
742 : 0 : const QString type = rendererData.value( QStringLiteral( "type" ) ).toString();
743 : 0 : if ( type == QLatin1String( "simple" ) )
744 : : {
745 : 0 : const QVariantMap symbolProps = rendererData.value( QStringLiteral( "symbol" ) ).toMap();
746 : 0 : std::unique_ptr< QgsSymbol > symbol( convertSymbol( symbolProps ) );
747 : 0 : if ( symbol )
748 : 0 : return new QgsSingleSymbolRenderer( symbol.release() );
749 : : else
750 : 0 : return nullptr;
751 : 0 : }
752 : 0 : else if ( type == QLatin1String( "uniqueValue" ) )
753 : : {
754 : 0 : const QString field1 = rendererData.value( QStringLiteral( "field1" ) ).toString();
755 : 0 : const QString field2 = rendererData.value( QStringLiteral( "field2" ) ).toString();
756 : 0 : const QString field3 = rendererData.value( QStringLiteral( "field3" ) ).toString();
757 : 0 : QString attribute;
758 : 0 : if ( !field2.isEmpty() || !field3.isEmpty() )
759 : : {
760 : 0 : const QString delimiter = rendererData.value( QStringLiteral( "fieldDelimiter" ) ).toString();
761 : 0 : if ( !field3.isEmpty() )
762 : : {
763 : 0 : attribute = QStringLiteral( "concat(\"%1\",'%2',\"%3\",'%4',\"%5\")" ).arg( field1, delimiter, field2, delimiter, field3 );
764 : 0 : }
765 : : else
766 : : {
767 : 0 : attribute = QStringLiteral( "concat(\"%1\",'%2',\"%3\")" ).arg( field1, delimiter, field2 );
768 : : }
769 : 0 : }
770 : : else
771 : : {
772 : 0 : attribute = field1;
773 : : }
774 : :
775 : 0 : const QVariantList categories = rendererData.value( QStringLiteral( "uniqueValueInfos" ) ).toList();
776 : 0 : QgsCategoryList categoryList;
777 : 0 : for ( const QVariant &category : categories )
778 : : {
779 : 0 : const QVariantMap categoryData = category.toMap();
780 : 0 : const QString value = categoryData.value( QStringLiteral( "value" ) ).toString();
781 : 0 : const QString label = categoryData.value( QStringLiteral( "label" ) ).toString();
782 : 0 : std::unique_ptr< QgsSymbol > symbol( QgsArcGisRestUtils::convertSymbol( categoryData.value( QStringLiteral( "symbol" ) ).toMap() ) );
783 : 0 : if ( symbol )
784 : : {
785 : 0 : categoryList.append( QgsRendererCategory( value, symbol.release(), label ) );
786 : 0 : }
787 : 0 : }
788 : :
789 : 0 : std::unique_ptr< QgsSymbol > defaultSymbol( convertSymbol( rendererData.value( QStringLiteral( "defaultSymbol" ) ).toMap() ) );
790 : 0 : if ( defaultSymbol )
791 : : {
792 : 0 : categoryList.append( QgsRendererCategory( QVariant(), defaultSymbol.release(), rendererData.value( QStringLiteral( "defaultLabel" ) ).toString() ) );
793 : 0 : }
794 : :
795 : 0 : if ( categoryList.empty() )
796 : 0 : return nullptr;
797 : :
798 : 0 : return new QgsCategorizedSymbolRenderer( attribute, categoryList );
799 : 0 : }
800 : 0 : else if ( type == QLatin1String( "classBreaks" ) )
801 : : {
802 : : // currently unsupported
803 : 0 : return nullptr;
804 : : }
805 : 0 : else if ( type == QLatin1String( "heatmap" ) )
806 : : {
807 : : // currently unsupported
808 : 0 : return nullptr;
809 : : }
810 : 0 : else if ( type == QLatin1String( "vectorField" ) )
811 : : {
812 : : // currently unsupported
813 : 0 : return nullptr;
814 : : }
815 : 0 : return nullptr;
816 : 0 : }
817 : :
818 : 0 : QString QgsArcGisRestUtils::convertLabelingExpression( const QString &string )
819 : : {
820 : 0 : QString expression = string;
821 : :
822 : : // Replace a few ArcGIS token to QGIS equivalents
823 : 0 : expression = expression.replace( QRegularExpression( "(?=([^\"\\\\]*(\\\\.|\"([^\"\\\\]*\\\\.)*[^\"\\\\]*\"))*[^\"]*$)(\\s|^)CONCAT(\\s|$)" ), QStringLiteral( "\\4||\\5" ) );
824 : 0 : expression = expression.replace( QRegularExpression( "(?=([^\"\\\\]*(\\\\.|\"([^\"\\\\]*\\\\.)*[^\"\\\\]*\"))*[^\"]*$)(\\s|^)NEWLINE(\\s|$)" ), QStringLiteral( "\\4'\\n'\\5" ) );
825 : :
826 : : // ArcGIS's double quotes are single quotes in QGIS
827 : 0 : expression = expression.replace( QRegularExpression( "\"(.*?(?<!\\\\))\"" ), QStringLiteral( "'\\1'" ) );
828 : 0 : expression = expression.replace( QRegularExpression( "\\\\\"" ), QStringLiteral( "\"" ) );
829 : :
830 : : // ArcGIS's square brakets are double quotes in QGIS
831 : 0 : expression = expression.replace( QRegularExpression( "\\[([^]]*)\\]" ), QStringLiteral( "\"\\1\"" ) );
832 : :
833 : 0 : return expression;
834 : 0 : }
835 : :
836 : 0 : QColor QgsArcGisRestUtils::convertColor( const QVariant &colorData )
837 : : {
838 : 0 : const QVariantList colorParts = colorData.toList();
839 : 0 : if ( colorParts.count() < 4 )
840 : 0 : return QColor();
841 : :
842 : 0 : int red = colorParts.at( 0 ).toInt();
843 : 0 : int green = colorParts.at( 1 ).toInt();
844 : 0 : int blue = colorParts.at( 2 ).toInt();
845 : 0 : int alpha = colorParts.at( 3 ).toInt();
846 : 0 : return QColor( red, green, blue, alpha );
847 : 0 : }
848 : :
849 : 0 : Qt::PenStyle QgsArcGisRestUtils::convertLineStyle( const QString &style )
850 : : {
851 : 0 : if ( style == QLatin1String( "esriSLSSolid" ) )
852 : 0 : return Qt::SolidLine;
853 : 0 : else if ( style == QLatin1String( "esriSLSDash" ) )
854 : 0 : return Qt::DashLine;
855 : 0 : else if ( style == QLatin1String( "esriSLSDashDot" ) )
856 : 0 : return Qt::DashDotLine;
857 : 0 : else if ( style == QLatin1String( "esriSLSDashDotDot" ) )
858 : 0 : return Qt::DashDotDotLine;
859 : 0 : else if ( style == QLatin1String( "esriSLSDot" ) )
860 : 0 : return Qt::DotLine;
861 : 0 : else if ( style == QLatin1String( "esriSLSNull" ) )
862 : 0 : return Qt::NoPen;
863 : : else
864 : 0 : return Qt::SolidLine;
865 : 0 : }
866 : :
867 : 0 : Qt::BrushStyle QgsArcGisRestUtils::convertFillStyle( const QString &style )
868 : : {
869 : 0 : if ( style == QLatin1String( "esriSFSBackwardDiagonal" ) )
870 : 0 : return Qt::BDiagPattern;
871 : 0 : else if ( style == QLatin1String( "esriSFSCross" ) )
872 : 0 : return Qt::CrossPattern;
873 : 0 : else if ( style == QLatin1String( "esriSFSDiagonalCross" ) )
874 : 0 : return Qt::DiagCrossPattern;
875 : 0 : else if ( style == QLatin1String( "esriSFSForwardDiagonal" ) )
876 : 0 : return Qt::FDiagPattern;
877 : 0 : else if ( style == QLatin1String( "esriSFSHorizontal" ) )
878 : 0 : return Qt::HorPattern;
879 : 0 : else if ( style == QLatin1String( "esriSFSNull" ) )
880 : 0 : return Qt::NoBrush;
881 : 0 : else if ( style == QLatin1String( "esriSFSSolid" ) )
882 : 0 : return Qt::SolidPattern;
883 : 0 : else if ( style == QLatin1String( "esriSFSVertical" ) )
884 : 0 : return Qt::VerPattern;
885 : : else
886 : 0 : return Qt::SolidPattern;
887 : 0 : }
888 : :
889 : 0 : QDateTime QgsArcGisRestUtils::convertDateTime( const QVariant &value )
890 : : {
891 : 0 : if ( value.isNull() )
892 : 0 : return QDateTime();
893 : 0 : bool ok = false;
894 : 0 : QDateTime dt = QDateTime::fromMSecsSinceEpoch( value.toLongLong( &ok ) );
895 : 0 : if ( !ok )
896 : : {
897 : 0 : QgsDebugMsg( QStringLiteral( "Invalid value %1 for datetime" ).arg( value.toString() ) );
898 : 0 : return QDateTime();
899 : : }
900 : : else
901 : 0 : return dt;
902 : 0 : }
|