Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added server module to dox
Added a server group and module for the server library
  • Loading branch information
elpaso committed Jul 10, 2015
1 parent c126592 commit 0312dbf
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 11 deletions.
3 changes: 3 additions & 0 deletions doc/modules.dox
Expand Up @@ -22,3 +22,6 @@ high level tools for carrying out spatial analysis on vector and raster data.

The network analysis library provides high level tool for build topology and analysis it.
*/


/** @defgroup server QGIS Server library.*/
9 changes: 7 additions & 2 deletions src/server/qgsrequesthandler.h
Expand Up @@ -37,8 +37,13 @@ class QDomDocument;
class QImage;
class QgsMapServiceException;

/** This class is an interface hiding the details of reading input and writing output from/to a wms request mechanism.
Examples of possible mechanisms are cgi Get, cgi Post, SOAP or the usage as a standalone command line executable*/
/**
* \ingroup server
* This class is an interface hiding the details of reading input and writing
* output from/to a wms request mechanism.
* Examples of possible mechanisms are cgi Get, cgi Post, SOAP or the usage
* as a standalone command line executable
*/
class QgsRequestHandler
{

Expand Down
12 changes: 7 additions & 5 deletions src/server/qgsserver.h
Expand Up @@ -41,24 +41,26 @@
#endif


/**
/** \ingroup server
* The QgsServer class provides OGC web services.
*/
class SERVER_EXPORT QgsServer
class SERVER_EXPORT QgsServer
{
public:
QgsServer();
~QgsServer();
/** Server initialisation: intialise QGIS ang QT core application.
* This method is automatically called by handleRequest if it wasn't
* explicitly called before */
* explicitly called before
* @note Not available in Python bindings
*/
static bool init( int & argc, char ** argv );
//! The following is mainly for python bindings, that do not pass argc/argv
static bool init();

/** Handle the request. The output is normally printed trough FCGI printf
/** Handles the request. The output is normally printed trough FCGI printf
* by the request handler or, in case the server has been invoked from python
* bindings, a flag is set that capures all the output headers and body, instead
* bindings, a flag is set that captures all the output headers and body, instead
* of printing it returns the output as a QByteArray.
* When calling handleRequest() from python bindings an additional argument
* specify if we only want the headers or the body back, this is mainly useful
Expand Down
1 change: 1 addition & 0 deletions src/server/qgsserverfilter.h
Expand Up @@ -25,6 +25,7 @@
class QgsServerInterface;

/**
* \ingroup server
* \class QgsServerFilter
* \brief Class defining I/O filters for QGIS Server and
* implemented in plugins.
Expand Down
1 change: 1 addition & 0 deletions src/server/qgsserverinterface.h
Expand Up @@ -25,6 +25,7 @@
#include "qgsserverfilter.h"

/**
* \ingroup server
* QgsServerInterface
* Class defining interfaces exposed by QGIS Server and
* made available to plugins.
Expand Down
11 changes: 7 additions & 4 deletions src/server/qgsserverplugins.h
Expand Up @@ -24,15 +24,18 @@
// This is needed by SIP otherwise it doesn't find QgsPythonUtils header
class QgsPythonUtils;

/**
* @brief Init Python server plugins and store a list of server plugin names
*/
class SERVER_EXPORT QgsServerPlugins
{
public:
explicit QgsServerPlugins();
/**
* Initialise the python plugins
* @param interface QgsServerInterface
* @return bool true on success
*/
* Initialise the python plugins
* @param interface QgsServerInterface
* @return bool true on success
*/
static bool initPlugins( QgsServerInterface* interface );
//! Pointer to QgsPythonUtils
static QgsPythonUtils* mPythonUtils;
Expand Down

0 comments on commit 0312dbf

Please sign in to comment.