QGIS API Documentation  3.8.0-Zanzibar (11aff65)
qgswfsgetfeature.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgswfsgetfeature.h
3  -------------------------
4  begin : December 20 , 2016
5  copyright : (C) 2007 by Marco Hugentobler (original code)
6  (C) 2012 by RenĂ©-Luc D'Hont (original code)
7  (C) 2014 by Alessandro Pasotti (original code)
8  (C) 2017 by David Marteau
9  email : marco dot hugentobler at karto dot baug dot ethz dot ch
10  a dot pasotti at itopen dot it
11  david dot marteau at 3liz dot com
12  ***************************************************************************/
13 
14 /***************************************************************************
15  * *
16  * This program is free software; you can redistribute it and/or modify *
17  * it under the terms of the GNU General Public License as published by *
18  * the Free Software Foundation; either version 2 of the License, or *
19  * (at your option) any later version. *
20  * *
21  ***************************************************************************/
22 #ifndef QGSWFSGETFEATURE_H
23 #define QGSWFSGETFEATURE_H
24 
25 #include "qgswfsparameters.h"
26 
27 namespace QgsWfs
28 {
30  {
31  QString typeName;
32 
33  QString srsName;
34 
36 
37  QStringList propertyList;
38  };
39 
41  {
43 
44  long startIndex;
45 
47 
48  QList< getFeatureQuery > queries;
49 
50  QString geometryName;
51  };
52 
56  void parseSortByElement( QDomElement &sortByElem, QgsFeatureRequest &featureRequest, const QString &typeName );
57 
61  getFeatureQuery parseQueryElement( QDomElement &queryElem, const QgsProject *project = nullptr );
62 
66  getFeatureRequest parseGetFeatureRequestBody( QDomElement &docElem, const QgsProject *project = nullptr );
67 
71  getFeatureRequest parseGetFeatureParameters( const QgsProject *project = nullptr );
72 
76  void writeGetFeature( QgsServerInterface *serverIface, const QgsProject *project,
77  const QString &version, const QgsServerRequest &request,
78  QgsServerResponse &response );
79 
80 } // namespace QgsWfs
81 
82 #endif
83 
void writeGetFeature(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request, QgsServerResponse &response)
Output WFS GetFeature response.
QgsFeatureRequest featureRequest
getFeatureRequest parseGetFeatureRequestBody(QDomElement &docElem, const QgsProject *project)
Transform RequestBody root element to getFeatureRequest.
void parseSortByElement(QDomElement &sortByElem, QgsFeatureRequest &featureRequest, const QString &typeName)
Add SortBy element to featureRequest.
getFeatureQuery parseQueryElement(QDomElement &queryElem, const QgsProject *project)
Transform Query element to getFeatureQuery.
WMS implementation.
Definition: qgswfs.cpp:35
QgsWfsParameters::Format outputFormat
This class wraps a request for features to a vector layer (or directly its vector data provider)...
QList< getFeatureQuery > queries
Reads and writes project states.
Definition: qgsproject.h:89
Format
Output format for the response.
QgsServerRequest Class defining request interface passed to services QgsService::executeRequest() met...
QgsServerInterface Class defining interfaces exposed by QGIS Server and made available to plugins...
QgsServerResponse Class defining response interface passed to services QgsService::executeRequest() m...
getFeatureRequest parseGetFeatureParameters(const QgsProject *project)
Transform parameters to getFeatureRequest.