QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Go to the documentation of this file.
30 , mInterface( interface )
37 qDeleteAll( mExternalLayers );
38 mExternalLayers.clear();
45 initRestrictedLayers();
48 searchLayersToRender();
49 removeUnwantedLayers();
50 checkLayerReadPermissions();
52 std::reverse( mLayersToRender.begin(), mLayersToRender.end() );
69 return mFlags.testFlag( flag );
92 if ( mSlds.contains( nickname ) )
94 sld = mSlds[ nickname ];
105 if ( mStyles.contains( nickname ) )
107 style = mStyles[ nickname ];
117 const QList<QgsWmsParametersLayer> cLayerParams { mParameters.
layersParameters() };
119 for (
const auto ¶ms : std::as_const( cLayerParams ) )
179 if ( !mParameters.
dpi().isEmpty() )
190 std::function <QStringList(
const QString &name )> findLeaves = [ & ](
const QString & name ) -> QStringList
193 if ( mLayerGroups.contains( name ) )
195 const auto &
layers { mLayerGroups[ name ] };
196 for (
const auto &l :
layers )
200 if ( mLayerGroups.contains( nick ) )
202 _result.append( name );
206 _result.append( findLeaves( nick ) );
212 _result.append( name );
217 for (
const auto &name : std::as_const( layerNames ) )
219 result.append( findLeaves( name ) );
226 return mLayersToRender;
231 return mNicknameLayers.values();
236 double denominator = -1;
238 if ( mScaleDenominator >= 0 )
240 denominator = mScaleDenominator;
253 removeUnwantedLayers();
273 std::find_if( mExternalLayers.cbegin(), mExternalLayers.cend(),
276 return l->id() == layer.id();
277 } ) == mExternalLayers.cend() )
281 else if ( name.isEmpty() )
293 for (
auto layer : mLayersToRender )
307 return layer( nickname ) !=
nullptr;
312 return mLayerGroups.value( nickname );
317 return mLayerGroups.contains( name );
320 void QgsWmsRenderContext::initNicknameLayers()
331 initLayerGroupsRecursive( root, rootName.isEmpty() ? mProject->
title() : rootName );
334 void QgsWmsRenderContext::initLayerGroupsRecursive(
const QgsLayerTreeGroup *group,
const QString &groupName )
336 if ( !groupName.isEmpty() )
338 mLayerGroups[groupName] = QList<QgsMapLayer *>();
339 const auto projectLayerTreeRoot { mProject->
layerTreeRoot() };
340 const auto treeGroupLayers { group->
findLayers() };
343 if ( ! projectLayerTreeRoot->hasCustomLayerOrder() )
345 for (
const auto &tl : treeGroupLayers )
347 mLayerGroups[groupName].push_back( tl->layer() );
352 const auto projectLayerOrder { projectLayerTreeRoot->layerOrder() };
354 QList<QgsMapLayer *> groupLayersList;
355 for (
const auto &tl : treeGroupLayers )
357 groupLayersList << tl->layer();
359 for (
const auto &l : projectLayerOrder )
361 if ( groupLayersList.contains( l ) )
363 mLayerGroups[groupName].push_back( l );
373 QString name = child->customProperty( QStringLiteral(
"wmsShortName" ) ).toString();
375 if ( name.isEmpty() )
376 name = child->name();
378 initLayerGroupsRecursive(
static_cast<const QgsLayerTreeGroup *
>( child ), name );
384 void QgsWmsRenderContext::initRestrictedLayers()
386 mRestrictedLayers.clear();
392 QStringList restrictedLayersNames;
395 for (
const QString &l : std::as_const( restricted ) )
400 const QList<QgsLayerTreeLayer *> groupLayers = group->
findLayers();
403 restrictedLayersNames.append( treeLayer->name() );
408 restrictedLayersNames.append( l );
416 if ( restrictedLayersNames.contains(
layer->
name() ) )
423 void QgsWmsRenderContext::searchLayersToRender()
425 mLayersToRender.clear();
429 if ( ! mParameters.
sldBody().isEmpty() )
431 searchLayersToRenderSld();
435 searchLayersToRenderStyle();
441 for (
const QString &layerName : queryLayerNames )
443 const QList<QgsMapLayer *>
layers = mNicknameLayers.values( layerName );
445 if ( !mLayersToRender.contains( lyr ) )
447 mLayersToRender.append( lyr );
455 for (
const QString &layerName : queryLayerNames )
457 const QList<QgsMapLayer *>
layers = mNicknameLayers.values( layerName );
459 if ( !mLayersToRender.contains( lyr ) )
461 mLayersToRender.append( lyr );
467 void QgsWmsRenderContext::searchLayersToRenderSld()
477 ( void )doc.setContent(
sld,
true );
478 QDomElement docEl = doc.documentElement();
480 QDomElement root = doc.firstChildElement(
"StyledLayerDescriptor" );
481 QDomElement namedElem = root.firstChildElement(
"NamedLayer" );
483 if ( docEl.isNull() )
488 QDomNodeList named = docEl.elementsByTagName(
"NamedLayer" );
489 for (
int i = 0; i < named.size(); ++i )
491 QDomNodeList names = named.item( i ).toElement().elementsByTagName(
"Name" );
492 if ( !names.isEmpty() )
494 QString lname = names.item( 0 ).toElement().text();
495 if ( mNicknameLayers.contains( lname ) )
497 mSlds[lname] = namedElem;
498 mLayersToRender.append( mNicknameLayers.values( lname ) );
500 else if ( mLayerGroups.contains( lname ) )
505 mSlds[name] = namedElem;
506 mLayersToRender.insert( 0,
layer );
512 param.mValue = lname;
520 void QgsWmsRenderContext::searchLayersToRenderStyle()
524 const QString nickname = param.mNickname;
525 const QString
style = param.mStyle;
530 std::unique_ptr<QgsMapLayer>
layer = std::make_unique< QgsRasterLayer >( param.mExternalUri, param.mNickname, QStringLiteral(
"wms" ) );
535 mExternalLayers.append(
layer.release() );
536 mLayersToRender.append( mExternalLayers.last() );
539 else if ( mNicknameLayers.contains( nickname ) )
541 if ( !
style.isEmpty() )
543 mStyles[nickname] =
style;
546 mLayersToRender.append( mNicknameLayers.values( nickname ) );
548 else if ( mLayerGroups.contains( nickname ) )
555 if ( !
style.isEmpty() )
557 mStyles[ nickname ] =
style;
564 mLayersToRender.append( mNicknameLayers.values( name ) );
570 param.mValue = nickname;
577 bool QgsWmsRenderContext::layerScaleVisibility(
const QString &name )
const
579 bool visible =
false;
581 if ( ! mNicknameLayers.contains( name ) )
586 const QList<QgsMapLayer *>
layers = mNicknameLayers.values( name );
590 bool useScaleConstraint = (
scaleDenominator() > 0 && scaleBasedVisibility );
645 if ( wmsMaxWidthEnv != -1 && wmsMaxWidthProj != -1 )
648 wmsMaxWidth = std::min( wmsMaxWidthProj, wmsMaxWidthEnv );
653 wmsMaxWidth = std::max( wmsMaxWidthProj, wmsMaxWidthEnv );
665 if ( wmsMaxHeightEnv != -1 && wmsMaxHeightProj != -1 )
668 wmsMaxHeight = std::min( wmsMaxHeightProj, wmsMaxHeightEnv );
673 wmsMaxHeight = std::max( wmsMaxHeightProj, wmsMaxHeightEnv );
689 switch ( mParameters.
format() )
691 case QgsWmsParameters::Format::JPG:
697 const int bytes_per_line = ( ( width * depth + 31 ) >> 5 ) << 2;
699 if ( std::numeric_limits<int>::max() / depth < static_cast<uint>( width )
700 || bytes_per_line <= 0
702 || std::numeric_limits<int>::max() /
static_cast<uint
>( bytes_per_line ) <
static_cast<uint
>( height )
703 || std::numeric_limits<int>::max() /
sizeof( uchar * ) <
static_cast<uint
>( height ) )
717 if ( !mParameters.
bbox().isEmpty() && extent.
isEmpty() )
742 if ( !mParameters.
bbox().isEmpty() && extent.
isEmpty() )
748 QString
crs = mParameters.
crs();
749 if (
crs.compare(
"CRS:84", Qt::CaseInsensitive ) == 0 )
751 crs = QString(
"EPSG:4326" );
761 if ( !extent.
isEmpty() && height > 0 && width > 0 )
763 const double mapRatio = extent.
width() / extent.
height();
764 const double imageRatio =
static_cast<double>( width ) /
static_cast<double>( height );
768 const double cellsize = ( extent.
width() /
static_cast<double>( width ) ) * 0.5 + ( extent.
height() /
static_cast<double>( height ) ) * 0.5;
769 width = extent.
width() / cellsize;
770 height = extent.
height() / cellsize;
780 else if ( height <= 0 )
786 return QSize( width, height );
789 void QgsWmsRenderContext::removeUnwantedLayers()
791 QList<QgsMapLayer *>
layers;
799 if ( !layerScaleVisibility( nickname ) )
802 if ( mRestrictedLayers.contains( nickname ) )
813 if ( ! wfsLayers.contains(
layer->
id() ) )
828 for (
const auto &
layer : mExternalLayers )
837 void QgsWmsRenderContext::checkLayerReadPermissions()
839 #ifdef HAVE_SERVER_PYTHON_PLUGINS
840 for (
const auto layer : mLayersToRender )
842 if ( !accessControl()->layerReadPermission(
layer ) )
850 #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.
double height() const SIP_HOLDGIL
Returns the height of the rectangle.
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.
This class is a base class for nodes in a layer tree.
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.
bool isExternalLayer(const QString &name) const
Returns true if the layer is an external layer, false otherwise.
@ VectorLayer
Vector layer.
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.
A rectangle specified with double values.
QgsWmsRenderContext(const QgsProject *project, QgsServerInterface *interface)
Constructor for QgsWmsRenderContext.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
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.
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...
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.
Layer tree node points to a map layer.
SERVER_EXPORT QStringList wmsRestrictedLayers(const QgsProject &project)
Returns the restricted layer name list.
@ AddAllLayers
For GetPrint: add layers from LAYER(S) parameter.
Layer tree group node serves as a container for layers and further groups.
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.
This class represents a coordinate reference system (CRS).
SERVER_EXPORT int wmsMaxWidth(const QgsProject &project)
Returns the maximum width for WMS images defined in a QGIS project.
bool renderMapTiles() const
Returns true if WMS requests should use the QgsMapSettings::RenderMapTile flag, so that no visible ar...
double scaleAsDouble() const
Returns SCALE as a double.
A helper class that centralizes restrictions given by all the access control filter plugins.
Median cut implementation.
SERVER_EXPORT bool wmsRenderMapTiles(const QgsProject &project)
Returns true if WMS requests should use the QgsMapSettings::RenderMapTile flag, so that no visible ar...
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.
double width() const SIP_HOLDGIL
Returns the width of the rectangle.
Base class for all map layer types. This is the base class for all map layer types (vector,...
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.
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.
~QgsWmsRenderContext()
Destructor for QgsWmsRenderContext.
QStringList flattenedQueryLayers(const QStringList &layerNames) const
Returns a list of query layer names where group names are replaced by the names of their layer compon...
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.
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.
QgsServerInterface Class defining interfaces exposed by QGIS Server and made available to plugins.
A class to describe the version of a project.
int srcWidthAsInt() const
Returns SRCWIDTH parameter as an int or its default value if not defined.
QStringList allLayersNickname() const
Returns nickname of layers found in LAYER and LAYERS parameters.
QgsWmsParameters parameters() const
Returns WMS parameters.