QGIS API Documentation
3.14.0-Pi (9f7028fd23)
|
Go to the documentation of this file.
29 , mInterface( interface )
38 initRestrictedLayers();
41 searchLayersToRender();
42 removeUnwantedLayers();
43 checkLayerReadPermissions();
45 std::reverse( mLayersToRender.begin(), mLayersToRender.end() );
62 return mFlags.testFlag( flag );
85 if ( mSlds.contains( nickname ) )
87 sld = mSlds[ nickname ];
98 if ( mStyles.contains( nickname ) )
100 style = mStyles[ nickname ];
165 if ( !mParameters.
dpi().isEmpty() )
176 std::function <QStringList(
const QString &name )> findLeaves = [ & ](
const QString & name ) -> QStringList
179 if ( mLayerGroups.contains( name ) )
181 const auto &
layers { mLayerGroups[ name ] };
182 for (
const auto &l :
layers )
186 if ( mLayerGroups.contains( nick ) )
188 _result.append( name );
192 _result.append( findLeaves( nick ) );
198 _result.append( name );
203 for (
const auto &name : constNicks )
205 result.append( findLeaves( name ) );
212 return mLayersToRender;
217 return mNicknameLayers.values();
222 double denominator = -1;
224 if ( mScaleDenominator >= 0 )
226 denominator = mScaleDenominator;
239 removeUnwantedLayers();
261 else if ( name.isEmpty() )
273 for (
auto layer : mLayersToRender )
287 return layer( nickname ) !=
nullptr;
292 return mLayerGroups.value( nickname );
297 return mLayerGroups.contains( name );
300 void QgsWmsRenderContext::initNicknameLayers()
311 initLayerGroupsRecursive( root, rootName.isEmpty() ? mProject->
title() : rootName );
314 void QgsWmsRenderContext::initLayerGroupsRecursive(
const QgsLayerTreeGroup *group,
const QString &groupName )
316 if ( !groupName.isEmpty() )
318 mLayerGroups[groupName] = QList<QgsMapLayer *>();
319 const auto projectLayerTreeRoot { mProject->
layerTreeRoot() };
320 const auto treeGroupLayers { group->
findLayers() };
323 if ( ! projectLayerTreeRoot->hasCustomLayerOrder() )
325 for (
const auto &tl : treeGroupLayers )
327 mLayerGroups[groupName].push_back( tl->layer() );
332 const auto projectLayerOrder { projectLayerTreeRoot->layerOrder() };
334 QList<QgsMapLayer *> groupLayersList;
335 for (
const auto &tl : treeGroupLayers )
337 groupLayersList << tl->layer();
339 for (
const auto &l : projectLayerOrder )
341 if ( groupLayersList.contains( l ) )
343 mLayerGroups[groupName].push_back( l );
353 QString name = child->customProperty( QStringLiteral(
"wmsShortName" ) ).toString();
355 if ( name.isEmpty() )
356 name = child->name();
358 initLayerGroupsRecursive(
static_cast<const QgsLayerTreeGroup *
>( child ), name );
364 void QgsWmsRenderContext::initRestrictedLayers()
366 mRestrictedLayers.clear();
372 QStringList restrictedLayersNames;
375 for (
const QString &l : qgis::as_const( restricted ) )
380 const QList<QgsLayerTreeLayer *> groupLayers = group->
findLayers();
383 restrictedLayersNames.append( treeLayer->name() );
388 restrictedLayersNames.append( l );
396 if ( restrictedLayersNames.contains(
layer->
name() ) )
403 void QgsWmsRenderContext::searchLayersToRender()
405 mLayersToRender.clear();
409 if ( ! mParameters.
sldBody().isEmpty() )
411 searchLayersToRenderSld();
415 searchLayersToRenderStyle();
421 for (
const QString &layerName : queryLayerNames )
423 const QList<QgsMapLayer *>
layers = mNicknameLayers.values( layerName );
425 if ( !mLayersToRender.contains( lyr ) )
427 mLayersToRender.append( lyr );
433 void QgsWmsRenderContext::searchLayersToRenderSld()
443 ( void )doc.setContent(
sld,
true );
444 QDomElement docEl = doc.documentElement();
446 QDomElement root = doc.firstChildElement(
"StyledLayerDescriptor" );
447 QDomElement namedElem = root.firstChildElement(
"NamedLayer" );
449 if ( docEl.isNull() )
454 QDomNodeList named = docEl.elementsByTagName(
"NamedLayer" );
455 for (
int i = 0; i < named.size(); ++i )
457 QDomNodeList names = named.item( i ).toElement().elementsByTagName(
"Name" );
458 if ( !names.isEmpty() )
460 QString lname = names.item( 0 ).toElement().text();
461 if ( mNicknameLayers.contains( lname ) )
463 mSlds[lname] = namedElem;
464 mLayersToRender.append( mNicknameLayers.values( lname ) );
466 else if ( mLayerGroups.contains( lname ) )
471 mSlds[name] = namedElem;
472 mLayersToRender.insert( 0,
layer );
478 param.mValue = lname;
486 void QgsWmsRenderContext::searchLayersToRenderStyle()
490 const QString nickname = param.mNickname;
491 const QString
style = param.mStyle;
493 if ( mNicknameLayers.contains( nickname ) )
495 if ( !
style.isEmpty() )
497 mStyles[nickname] =
style;
500 mLayersToRender.append( mNicknameLayers.values( nickname ) );
502 else if ( mLayerGroups.contains( nickname ) )
509 if ( !
style.isEmpty() )
511 mStyles[ nickname ] =
style;
518 mLayersToRender.append( mNicknameLayers.values( name ) );
524 param.mValue = nickname;
531 bool QgsWmsRenderContext::layerScaleVisibility(
const QString &name )
const
533 bool visible =
false;
535 if ( ! mNicknameLayers.contains( name ) )
540 const QList<QgsMapLayer *>
layers = mNicknameLayers.values( name );
544 bool useScaleConstraint = (
scaleDenominator() > 0 && scaleBasedVisibility );
594 if ( wmsMaxWidthEnv != -1 && wmsMaxWidthProj != -1 )
597 wmsMaxWidth = std::min( wmsMaxWidthProj, wmsMaxWidthEnv );
602 wmsMaxWidth = std::max( wmsMaxWidthProj, wmsMaxWidthEnv );
614 if ( wmsMaxHeightEnv != -1 && wmsMaxHeightProj != -1 )
617 wmsMaxHeight = std::min( wmsMaxHeightProj, wmsMaxHeightEnv );
622 wmsMaxHeight = std::max( wmsMaxHeightProj, wmsMaxHeightEnv );
638 switch ( mParameters.
format() )
640 case QgsWmsParameters::Format::JPG:
646 const int bytes_per_line = ( (
mapWidth() * depth + 31 ) >> 5 ) << 2;
648 if ( std::numeric_limits<int>::max() / depth < static_cast<uint>(
mapWidth() )
649 || bytes_per_line <= 0
651 || std::numeric_limits<int>::max() /
static_cast<uint
>( bytes_per_line ) <
static_cast<uint
>(
mapHeight() )
652 || std::numeric_limits<int>::max() /
sizeof( uchar * ) <
static_cast<uint
>(
mapHeight() ) )
666 if ( !mParameters.
bbox().isEmpty() && extent.
isEmpty() )
691 if ( !mParameters.
bbox().isEmpty() && extent.
isEmpty() )
697 QString
crs = mParameters.
crs();
698 if (
crs.compare(
"CRS:84", Qt::CaseInsensitive ) == 0 )
700 crs = QString(
"EPSG:4326" );
710 if ( !extent.
isEmpty() && height > 0 && width > 0 )
712 const double mapRatio = extent.
width() / extent.
height();
713 const double imageRatio =
static_cast<double>( width ) /
static_cast<double>( height );
717 const double cellsize = ( extent.
width() /
static_cast<double>( width ) ) * 0.5 + ( extent.
height() /
static_cast<double>( height ) ) * 0.5;
718 width = extent.
width() / cellsize;
719 height = extent.
height() / cellsize;
729 else if ( height <= 0 )
735 return QSize( width, height );
738 void QgsWmsRenderContext::removeUnwantedLayers()
740 QList<QgsMapLayer *>
layers;
746 if ( !layerScaleVisibility( nickname ) )
749 if ( mRestrictedLayers.contains( nickname ) )
760 if ( ! wfsLayers.contains(
layer->
id() ) )
772 void QgsWmsRenderContext::checkLayerReadPermissions()
774 #ifdef HAVE_SERVER_PYTHON_PLUGINS
775 for (
const auto layer : mLayersToRender )
777 if ( !accessControl()->layerReadPermission(
layer ) )
785 #ifdef HAVE_SERVER_PYTHON_PLUGINS
Exception thrown when data access violates access controls.
@ NodeGroup
Container of other groups and layers.
@ QGIS_InvalidParameterValue
Provides an interface to retrieve and manipulate WMS parameters received from the client.
QList< QgsLayerTreeLayer * > findLayers() const
Find all layer nodes.
QString title() const
Returns the project's title.
int mapWidth() const
Returns WIDTH or SRCWIDTH according to UseSrcWidthHeight flag.
QList< QgsMapLayer * > layersFromGroup(const QString &nickname) const
Returns the group's layers list corresponding to the nickname, or an empty list if not found.
const QgsCoordinateReferenceSystem & outputCrs
int wmsMaxWidth() const
Returns the server-wide max width of a WMS GetMap request.
int wmsPrecisionAsInt() const
Returns WMS_PRECISION parameter as an int or its default value if not defined.
int heightAsInt() const
Returns HEIGHT parameter as an int or its default value if not defined.
QString style(const QgsMapLayer &layer) const
Returns a style's name for a specific layer.
QMap< QString, QgsMapLayer * > mapLayers(const bool validOnly=false) const
Returns a map of all registered layers by layer ID.
void invert()
Swap x/y coordinates in the rectangle.
int srcHeightAsInt() const
Returns SRCHEIGHT parameter as an int or its default value if not defined.
const QgsCoordinateReferenceSystem & crs
static QgsCoordinateReferenceSystem fromOgcWmsCrs(const QString &ogcCrs)
Creates a CRS from a given OGC WMS-format Coordinate Reference System string.
QString crs() const
Returns CRS or an empty string if none is defined.
void setFlag(Flag flag, bool on=true)
Sets or unsets a rendering flag according to the on value.
QString shortName() const
Returns the short name of the layer used by QGIS Server to identify the layer.
QString bbox() const
Returns BBOX if defined or an empty string.
void setParameters(const QgsWmsParameters ¶meters)
Sets WMS parameters.
bool updateExtent() const
Returns true if the extent has to be updated before the rendering, false otherwise.
QMap< QString, QList< QgsMapLayer * > > layerGroups() const
Returns a map having layer group names as keys and a list of layers as values.
bool isValidWidthHeight() const
Returns true if width and height are valid according to the maximum values defined within the project...
bool hasAxisInverted() const
Returns whether axis is inverted (e.g., for WMS 1.3) for the CRS.
int imageQuality() const
Returns the image quality to use for rendering according to the current configuration.
QString dpi() const
Returns DPI parameter or an empty string if not defined.
virtual QgsAccessControl * accessControls() const =0
Gets the registered access control filters.
QString imageQuality() const
Returns IMAGE_QUALITY parameter or an empty string if not defined.
Provides a way to retrieve settings by prioritizing according to environment variables,...
SERVER_EXPORT bool wmsUseLayerIds(const QgsProject &project)
Returns if layer ids are used as name in WMS.
int tileBuffer() const
Returns the tile buffer value to use for rendering according to the current configuration.
QStringList queryLayersNickname() const
Returns nickname of layers found in QUERY_LAYERS parameter.
bool isInScaleRange(double scale) const
Tests whether the layer should be visible at the specified scale.
QString sldBody() const
Returns SLD_body if defined or an empty string.
SERVER_EXPORT int wmsFeatureInfoPrecision(const QgsProject &project)
Returns the geometry precision for GetFeatureInfo request.
QgsLayerTree * layerTreeRoot() const
Returns pointer to the root (invisible) node of the project's layer tree.
int widthAsInt() const
Returns WIDTH parameter as an int or its default value if not defined.
SERVER_EXPORT int wmsMaxHeight(const QgsProject &project)
Returns the maximum height for WMS images defined in a QGIS project.
QgsWmsRenderContext()=default
Default constructor for QgsWmsRenderContext.
SERVER_EXPORT QStringList wfsLayerIds(const QgsProject &project)
Returns the Layer ids list defined in a QGIS project as published in WFS.
QSize mapSize(bool aspectRatio=true) const
Returns the size (in pixels) of the map to render, according to width and height WMS parameters as we...
QStringList flattenedQueryLayers() const
Returns a list of query layer names where group names are replaced by the names of their layer compon...
QgsProjectVersion versionAsNumber() const
Returns VERSION parameter if defined or its default value.
SERVER_EXPORT int wmsTileBuffer(const QgsProject &project)
Returns the tile buffer in pixels for WMS images defined in a QGIS project.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
void setScaleDenominator(double scaleDenominator)
Sets a custom scale denominator.
SERVER_EXPORT QStringList wmsRestrictedLayers(const QgsProject &project)
Returns the restricted layer name list.
double dpiAsDouble() const
Returns DPI parameter as an int or its default value if not defined.
const QgsServerSettings & settings() const
Returns settings of the server.
bool isValidLayer(const QString &nickname) const
Returns true if the layer has to be rendered, false otherwise.
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
QList< QgsWmsParametersLayer > layersParameters() const
Returns parameters for each layer found in LAYER/LAYERS.
int precision() const
Returns the precision to use according to the current configuration.
virtual QgsServerSettings * serverSettings()=0
Returns the server settings.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
QgsRectangle bboxAsRectangle() const
Returns BBOX as a rectangle if defined and valid.
QDomElement sld(const QgsMapLayer &layer) const
Returns a SLD document for a specific layer.
Flag
Available rendering options.
QString layerNickname(const QgsMapLayer &layer) const
Returns the nickname (short name, id or name) of the layer according to the current configuration.
Format format() const
Returns format.
SERVER_EXPORT int wmsMaxWidth(const QgsProject &project)
Returns the maximum width for WMS images defined in a QGIS project.
double scaleAsDouble() const
Returns SCALE as a double.
A helper class that centralizes restrictions given by all the access control filter plugins.
bool isValidGroup(const QString &name) const
Returns true if name is a group.
double scaleDenominator() const
Returns the scale denominator to use for rendering according to the current configuration.
SERVER_EXPORT QString wmsRootName(const QgsProject &project)
Returns the WMS root layer name defined in a QGIS project.
QgsMapLayer * layer(const QString &nickname) const
Returns the layer corresponding to the nickname, or a nullptr if not found or if the layer do not nee...
Exception thrown in case of malformed request.
bool testFlag(Flag flag) const
Returns the status of a rendering flag.
QString scale() const
Returns SCALE parameter or an empty string if none is defined.
double height() const
Returns the height of the rectangle.
int wmsMaxHeight() const
Returns the server-wide max height of a WMS GetMap request.
const QgsProject * project() const
Returns the project.
QList< QgsLayerTreeNode * > children()
Gets list of children of the node. Children are owned by the parent.
double mapTileBuffer(int mapWidth) const
Returns the tile buffer in geographical units for the given map width in pixels.
SERVER_EXPORT int wmsImageQuality(const QgsProject &project)
Returns the quality for WMS images defined in a QGIS project.
bool tiledAsBool() const
Returns TILED parameter as a boolean.
WMS parameter received from the client.
qreal dotsPerMm() const
Returns default dots per mm according to the current configuration.
int imageQualityAsInt() const
Returns IMAGE_QUALITY parameter as an integer.
QList< QgsMapLayer * > layersToRender() const
Returns a list of all layers to actually render according to the current configuration.
QgsLayerTreeGroup * findGroup(const QString &name)
Find group node with specified name.
bool isEmpty() const
Returns true if the rectangle is empty.
QgsMapLayerType type() const
Returns the type of the layer.
int mapHeight() const
Returns HEIGHT or SRCHEIGHT according to UseSrcWidthHeight flag.
QList< QgsMapLayer * > layers() const
Returns a list of all layers read from the project.
double width() const
Returns the width of the rectangle.
int srcWidthAsInt() const
Returns SRCWIDTH parameter as an int or its default value if not defined.
QgsWmsParameters parameters() const
Returns WMS parameters.