| 1 | .. _first_service: |
|---|
| 2 | |
|---|
| 3 | Create your first ZOO Service |
|---|
| 4 | ===================== |
|---|
| 5 | |
|---|
| 6 | .. contents:: Table of Contents |
|---|
| 7 | :depth: 5 |
|---|
| 8 | :backlinks: top |
|---|
| 9 | |
|---|
| 10 | Introduction |
|---|
| 11 | --------------------- |
|---|
| 12 | |
|---|
| 13 | In this part, you will create and publish from a simple ZOO Service named |
|---|
| 14 | ``Hello`` which will simply return a hello message containing the input value |
|---|
| 15 | provided. It will be usefull to present in deeper details general concept on how ZOO-Kernel works and handles request. |
|---|
| 16 | |
|---|
| 17 | Service and publication process overview |
|---|
| 18 | ----------------------------------- |
|---|
| 19 | |
|---|
| 20 | Before starting developing a ZOO Service, you should remember that in |
|---|
| 21 | ZOO-Project, a Service is a couple made of: |
|---|
| 22 | |
|---|
| 23 | * a metadata file: a ZOO Service Configuration File (ZCFG) containing metadata |
|---|
| 24 | informations about a Service (providing informations about default / supported |
|---|
| 25 | inputs and outputs for a Service) |
|---|
| 26 | * a Services Provider: it depends on the programming language used, but for Python it |
|---|
| 27 | is a module and for JavaScript a script file. |
|---|
| 28 | |
|---|
| 29 | To publish your Service, which means make your ZOO Kernel aware of its presence, |
|---|
| 30 | you should copy a ZCFG file in the directory where ``zoo_loader.cgi`` is located (in this workshop, ``/usr/lib/cgi-bin``). |
|---|
| 31 | |
|---|
| 32 | .. warning:: only the ZCFG file is required for the Service to be considerate as |
|---|
| 33 | available. So if you don't get the Service Provider, obviously your Execute |
|---|
| 34 | request will fail as we will discuss later. |
|---|
| 35 | |
|---|
| 36 | Before publication, you should store your ongoing work, so you'll start by |
|---|
| 37 | creating a directory to store the files of your Services Provider: |
|---|
| 38 | |
|---|
| 39 | .. code-block:: none |
|---|
| 40 | |
|---|
| 41 | mkdir -p /home/user/zoo-ws2013/ws_sp/cgi-env |
|---|
| 42 | |
|---|
| 43 | Once the ZCFG and the Python module are both ready, you can publish simply |
|---|
| 44 | by copying the corresponding files in the same directory as the ZOO-Kernel. |
|---|
| 45 | |
|---|
| 46 | Create your first ZCFG file |
|---|
| 47 | -------------------------- |
|---|
| 48 | |
|---|
| 49 | You will start by creating the ZCFG file for the ``Hello`` Service. Edit the |
|---|
| 50 | ``/home/user/zoo-ws2013/ws_sp/cgi-env/Hello.zcfg`` file |
|---|
| 51 | and add the following content: |
|---|
| 52 | |
|---|
| 53 | .. code-block:: none |
|---|
| 54 | :linenos: |
|---|
| 55 | |
|---|
| 56 | [Hello] |
|---|
| 57 | Title = Return a hello message. |
|---|
| 58 | Abstract = Create a welcome string. |
|---|
| 59 | processVersion = 2 |
|---|
| 60 | storeSupported = true |
|---|
| 61 | statusSupported = true |
|---|
| 62 | serviceProvider = test_service |
|---|
| 63 | serviceType = Python |
|---|
| 64 | <DataInputs> |
|---|
| 65 | [name] |
|---|
| 66 | Title = Input string |
|---|
| 67 | Abstract = The string to insert in the hello message. |
|---|
| 68 | minOccurs = 1 |
|---|
| 69 | maxOccurs = 1 |
|---|
| 70 | <LiteralData> |
|---|
| 71 | dataType = string |
|---|
| 72 | <Default /> |
|---|
| 73 | </LiteralData> |
|---|
| 74 | </DataInputs> |
|---|
| 75 | <DataOutputs> |
|---|
| 76 | [Result] |
|---|
| 77 | Title = The resulting string |
|---|
| 78 | Abstract = The hello message containing the input string |
|---|
| 79 | <LiteralData> |
|---|
| 80 | dataType = string |
|---|
| 81 | <Default /> |
|---|
| 82 | </LiteralData> |
|---|
| 83 | </DataOutputs> |
|---|
| 84 | |
|---|
| 85 | .. note:: the name of the ZCFG file and the name between braket (here ``[Hello]``) |
|---|
| 86 | should be the same and correspond to the function name you will define in your |
|---|
| 87 | Services provider. |
|---|
| 88 | |
|---|
| 89 | As you can see in the ZOO Service Configuration File presented above it is divided into |
|---|
| 90 | three distinct sections: |
|---|
| 91 | #. Main Metadata information (from line 2 to 8) |
|---|
| 92 | #. List of Inputs metadata information (from 9 line to 19) |
|---|
| 93 | #. List of Outputs metadata information (from line 20 to 28) |
|---|
| 94 | |
|---|
| 95 | You can get more informations about ZCFG from `the reference documentation |
|---|
| 96 | <http://zoo-project.org/docs/services/zcfg-reference.html>`__. |
|---|
| 97 | |
|---|
| 98 | If you copy the ``Hello.zcfg`` file in the same directory as your ZOO Kernel |
|---|
| 99 | then you will be able to request for DescribeProcess using the ``Hello`` |
|---|
| 100 | ``Identifier``. The ``Hello`` service should also be listed from Capabilities |
|---|
| 101 | document. |
|---|
| 102 | |
|---|
| 103 | .. code-block:: none |
|---|
| 104 | cp /home/user/zoo-ws2013/ws_sp/cgi-env/Hello.zcfg /usr/lib/cgi-bin |
|---|
| 105 | |
|---|
| 106 | Test requests |
|---|
| 107 | --------------------- |
|---|
| 108 | |
|---|
| 109 | In this section you will tests each WPS requests : GetCapabilities, |
|---|
| 110 | DescribeProcess and Execute. Note that only GetCapabilities and DescribeProcess |
|---|
| 111 | should work at this step. |
|---|
| 112 | |
|---|
| 113 | Test the GetCapabilities request |
|---|
| 114 | ..................................................... |
|---|
| 115 | |
|---|
| 116 | If you run the ``GetCapabilities`` request: |
|---|
| 117 | |
|---|
| 118 | .. code-block:: none |
|---|
| 119 | |
|---|
| 120 | http://localhost/cgi-bin/zoo_loader.cgi?request=GetCapabilities&service=WPS |
|---|
| 121 | |
|---|
| 122 | Now, you should find your Hello Service in a ``Process`` node in |
|---|
| 123 | ``ProcessOfferings``: |
|---|
| 124 | |
|---|
| 125 | .. code-block:: xml |
|---|
| 126 | |
|---|
| 127 | <wps:Process wps:processVersion="2"> |
|---|
| 128 | <ows:Identifier>Hello</ows:Identifier> |
|---|
| 129 | <ows:Title>Return a hello message.</ows:Title> |
|---|
| 130 | <ows:Abstract>Create a welcome string.</ows:Abstract> |
|---|
| 131 | </wps:Process> |
|---|
| 132 | |
|---|
| 133 | Test the DescribeProcess request |
|---|
| 134 | ..................................................... |
|---|
| 135 | |
|---|
| 136 | You can access the ``ProcessDescription`` of the ``Hello`` service using the |
|---|
| 137 | following ``DescribeProcess`` request: |
|---|
| 138 | |
|---|
| 139 | .. code-block:: none |
|---|
| 140 | |
|---|
| 141 | http://localhost/cgi-bin/zoo_loader.cgi?request=DescribeProcess&service=WPS&version=1.0.0&Identifier=Hello |
|---|
| 142 | |
|---|
| 143 | You should get the following response: |
|---|
| 144 | |
|---|
| 145 | .. code-block:: xml |
|---|
| 146 | |
|---|
| 147 | <wps:ProcessDescriptions xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsDescribeProcess_response.xsd" service="WPS" version="1.0.0" xml:lang="en-US"> |
|---|
| 148 | <ProcessDescription wps:processVersion="2" storeSupported="true" statusSupported="true"> |
|---|
| 149 | <ows:Identifier>Hello</ows:Identifier> |
|---|
| 150 | <ows:Title>Return a hello message.</ows:Title> |
|---|
| 151 | <ows:Abstract>Create a welcome string.</ows:Abstract> |
|---|
| 152 | <DataInputs> |
|---|
| 153 | <Input minOccurs="1" maxOccurs="1"> |
|---|
| 154 | <ows:Identifier>name</ows:Identifier> |
|---|
| 155 | <ows:Title>Input string</ows:Title> |
|---|
| 156 | <ows:Abstract>The string to insert in the hello message.</ows:Abstract> |
|---|
| 157 | <LiteralData> |
|---|
| 158 | <ows:DataType ows:reference="http://www.w3.org/TR/xmlschema-2/#string">string</ows:DataType> |
|---|
| 159 | <ows:AnyValue/> |
|---|
| 160 | </LiteralData> |
|---|
| 161 | </Input> |
|---|
| 162 | </DataInputs> |
|---|
| 163 | <ProcessOutputs> |
|---|
| 164 | <Output> |
|---|
| 165 | <ows:Identifier>Result</ows:Identifier> |
|---|
| 166 | <ows:Title>The resulting string</ows:Title> |
|---|
| 167 | <ows:Abstract>The hello message containing the input string</ows:Abstract> |
|---|
| 168 | <LiteralOutput> |
|---|
| 169 | <ows:DataType ows:reference="http://www.w3.org/TR/xmlschema-2/#string">string</ows:DataType> |
|---|
| 170 | </LiteralOutput> |
|---|
| 171 | </Output> |
|---|
| 172 | </ProcessOutputs> |
|---|
| 173 | </ProcessDescription> |
|---|
| 174 | </wps:ProcessDescriptions> |
|---|
| 175 | |
|---|
| 176 | Test the Execute request |
|---|
| 177 | ..................................................... |
|---|
| 178 | |
|---|
| 179 | Obviously, you cannot run your Service because the Python file was not published |
|---|
| 180 | yet. If you try the following ``Execute`` request: |
|---|
| 181 | |
|---|
| 182 | .. code-block:: none |
|---|
| 183 | |
|---|
| 184 | http://localhost/cgi-bin/zoo_loader.cgi?request=Execute&service=WPS&version=1.0.0&Identifier=Hello&DataInputs=name=toto |
|---|
| 185 | |
|---|
| 186 | You should get an ExceptionReport similar to the one provided in the following, |
|---|
| 187 | which is normal behavior: |
|---|
| 188 | |
|---|
| 189 | .. code-block:: xml |
|---|
| 190 | |
|---|
| 191 | <ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="http://www.opengis.net/ows/1.1 http://schemas.opengis.net/ows/1.1.0/owsExceptionReport.xsd" xml:lang="en-US" version="1.1.0"> |
|---|
| 192 | <ows:Exception exceptionCode="NoApplicableCode"> |
|---|
| 193 | <ows:ExceptionText>Python module test_service cannot be loaded.</ows:ExceptionText> |
|---|
| 194 | </ows:Exception> |
|---|
| 195 | </ows:ExceptionReport> |
|---|
| 196 | |
|---|
| 197 | Implementing the Python Service |
|---|
| 198 | ------------------------------- |
|---|
| 199 | |
|---|
| 200 | General Principles |
|---|
| 201 | ..................................................... |
|---|
| 202 | |
|---|
| 203 | The most important thing you must know when implementing a new ZOO-Services |
|---|
| 204 | using the Python language is that the function corresponding to your Service |
|---|
| 205 | returns an integer value representing the status of execution |
|---|
| 206 | (``SERVICE_FAILED`` [#f1]_ or ``SERVICE_SUCCEEDED`` [#f2]_) and takes three |
|---|
| 207 | arguments (`Python dictionaries |
|---|
| 208 | <http://docs.python.org/tutorial/datastructures.html#dictionaries>`__): |
|---|
| 209 | |
|---|
| 210 | - ``conf`` : the main environment configuration (corresponding to the main.cfg content) |
|---|
| 211 | - ``inputs`` : the requested / default inputs (used to access input values) |
|---|
| 212 | - ``outputs`` : the requested / default outputs (used to store computation result) |
|---|
| 213 | |
|---|
| 214 | .. note:: when your service return ``SERVICE_FAILED`` you can set |
|---|
| 215 | ``conf["lenv"]["message"]`` to add a personalized message in the ExceptionReport |
|---|
| 216 | returned by the ZOO Kernel in such case. |
|---|
| 217 | |
|---|
| 218 | You get in the following a sample ``conf`` value based on the ``main.cfg`` file you |
|---|
| 219 | saw `before <using_zoo_from_osgeolivevm.html#zoo-kernel-configuration>`__. |
|---|
| 220 | |
|---|
| 221 | .. code-block:: javascript |
|---|
| 222 | :linenos: |
|---|
| 223 | |
|---|
| 224 | { |
|---|
| 225 | "main": { |
|---|
| 226 | language: "en-US", |
|---|
| 227 | lang: "fr-FR,ja-JP", |
|---|
| 228 | version: "1.0.0", |
|---|
| 229 | encoding: "utf-8", |
|---|
| 230 | serverAddress: "http://localhost/cgi-bin/zoo_loader.cgi", |
|---|
| 231 | dataPath: "/var/www/zoows-demo/map/data", |
|---|
| 232 | tmpPath: "/var/www/temp", |
|---|
| 233 | tmpUrl: "../temp", |
|---|
| 234 | cacheDir: "/var/www/temp/" |
|---|
| 235 | }, |
|---|
| 236 | "identification": { |
|---|
| 237 | title: "The ZOO-Project WPS Server FOSS4G 2013 Nottingham Workshop", |
|---|
| 238 | keywords: "WPS,GIS,buffer", |
|---|
| 239 | abstract: "Demo version of Zoo-Project for OSGeoLiveDVD 2013. See http://www.zoo-project.org", |
|---|
| 240 | accessConstraints: "none", |
|---|
| 241 | fees: "None" |
|---|
| 242 | }, |
|---|
| 243 | "provider": { |
|---|
| 244 | positionName: "Developer", |
|---|
| 245 | providerName: "ZOO-Project", |
|---|
| 246 | addressAdministrativeArea: "Lattes", |
|---|
| 247 | addressCountry: "fr", |
|---|
| 248 | phoneVoice: "False", |
|---|
| 249 | addressPostalCode: "34970", |
|---|
| 250 | role: "Dev", |
|---|
| 251 | providerSite: "http://www.zoo-project.org", |
|---|
| 252 | phoneFacsimile: "False", |
|---|
| 253 | addressElectronicMailAddress: "gerald.fenoy@geolabs.fr", |
|---|
| 254 | addressCity: "Denver", |
|---|
| 255 | individualName: "Gérald FENOY" |
|---|
| 256 | } |
|---|
| 257 | |
|---|
| 258 | In the following you get a sample outputs value passed to a Python or a JavaScript Service: |
|---|
| 259 | |
|---|
| 260 | .. code-block:: javascript |
|---|
| 261 | :linenos: |
|---|
| 262 | |
|---|
| 263 | { |
|---|
| 264 | 'Result': { |
|---|
| 265 | 'mimeType': 'application/json', |
|---|
| 266 | 'inRequest': 'true', |
|---|
| 267 | 'encoding': 'UTF-8' |
|---|
| 268 | } |
|---|
| 269 | } |
|---|
| 270 | |
|---|
| 271 | .. note:: the ``inRequest`` value is set internally by the ZOO-Kernel and can be used to determine from the Service if the key was provided in the request. |
|---|
| 272 | |
|---|
| 273 | ZOO-Project provide a ZOO-API which was originally only available for |
|---|
| 274 | JavaScript services, but thanks to the work of the ZOO-Project |
|---|
| 275 | community, now you have also access to a ZOO-API when using |
|---|
| 276 | the Python language. Thanks to the Python ZOO-API you don't have to remember anymore |
|---|
| 277 | the value of SERVICE_SUCCEDED and SERVICE_FAILED, you |
|---|
| 278 | have the capability to translate any string from your Python service |
|---|
| 279 | by calling the ``_`` function (ie: ``zoo._('My string to |
|---|
| 280 | translate')``) or to update the current status of a running service by |
|---|
| 281 | using the ``update_status`` function the same way you use it from |
|---|
| 282 | JavaScript or C services. |
|---|
| 283 | |
|---|
| 284 | The Hello Service |
|---|
| 285 | ..................................................... |
|---|
| 286 | |
|---|
| 287 | You can copy and paste the following into the |
|---|
| 288 | ``/home/user/zoo-ws2013/ws_sp/cgi-env/test_service.py`` file. |
|---|
| 289 | |
|---|
| 290 | .. code-block:: python |
|---|
| 291 | |
|---|
| 292 | import zoo |
|---|
| 293 | def Hello(conf,inputs,outputs): |
|---|
| 294 | outputs["Result"]["value"]=\ |
|---|
| 295 | "Hello "+inputs["name"]["value"]+" from the ZOO-Project Python world !" |
|---|
| 296 | return zoo.SERVICE_SUCCEEDED |
|---|
| 297 | |
|---|
| 298 | Once you finish editing the file, you should copy it in the ``/usr/lib/cgi-bin`` directory: |
|---|
| 299 | |
|---|
| 300 | .. code-block:: none |
|---|
| 301 | |
|---|
| 302 | sudo cp /home/user/zoo-ws2013/ws_sp/cgi-env/* /usr/lib/cgi-bin |
|---|
| 303 | |
|---|
| 304 | |
|---|
| 305 | Interracting with your service using Execute requests |
|---|
| 306 | ---------------------------------------------- |
|---|
| 307 | |
|---|
| 308 | Now, you can request for Execute using the following basic url: |
|---|
| 309 | |
|---|
| 310 | .. code-block:: none |
|---|
| 311 | |
|---|
| 312 | http://localhost/cgi-bin/zoo_loader.cgi?request=Execute&service=WPS&version=1.0.0&Identifier=Hello&DataInputs=name=toto |
|---|
| 313 | |
|---|
| 314 | You can request the WPS Server to return a XML WPS Response containing the result of |
|---|
| 315 | your computation, requesting for ResponseDocument or you can access the data directly |
|---|
| 316 | requesting for RawDataOutput. |
|---|
| 317 | |
|---|
| 318 | * Sample request using the RawDataOutput parameter: |
|---|
| 319 | |
|---|
| 320 | .. code-block:: none |
|---|
| 321 | |
|---|
| 322 | http://localhost/cgi-bin/zoo_loader.cgi?request=Execute&service=WPS&version=1.0.0&Identifier=Hello&DataInputs=name=toto&RawDataOutput=Result |
|---|
| 323 | |
|---|
| 324 | * Sample request using the default ResponseDocument parameter: |
|---|
| 325 | |
|---|
| 326 | .. code-block:: none |
|---|
| 327 | |
|---|
| 328 | http://localhost/cgi-bin/zoo_loader.cgi?request=Execute&service=WPS&version=1.0.0&Identifier=Hello&DataInputs=name=toto&ResponseDocument=Result |
|---|
| 329 | |
|---|
| 330 | When you are using ResponseDocument there is specific attribut you can use to ask |
|---|
| 331 | the ZOO Kernel to store the result: ``asReference``. You can use the following example: |
|---|
| 332 | |
|---|
| 333 | .. code-block:: none |
|---|
| 334 | |
|---|
| 335 | http://localhost/cgi-bin/zoo_loader.cgi?request=Execute&service=WPS&version=1.0.0&Identifier=Hello&DataInputs=name=toto&ResponseDocument=Result@asReference=true |
|---|
| 336 | |
|---|
| 337 | When computation take long time, the client should request the |
|---|
| 338 | execution of a Service by setting both ``storeExecuteResponse`` and |
|---|
| 339 | ``status`` parameter to true to force asynchronous execution. This |
|---|
| 340 | will make the ZOO-Kernel return, without waiting for the Service execution |
|---|
| 341 | completion but after starting another ZOO-Kernel process responsible |
|---|
| 342 | of the Service execution, a ResponseDocument containing a ``statusLocation`` |
|---|
| 343 | attribute which can be used to access the status of an ongoing service |
|---|
| 344 | or the result when the process ended [#f3]_. |
|---|
| 345 | |
|---|
| 346 | .. code-block:: none |
|---|
| 347 | |
|---|
| 348 | http://localhost/cgi-bin/zoo_loader.cgi?request=Execute&service=WPS&version=1.0.0&Identifier=Hello&DataInputs=name=toto&ResponseDocument=Result&storeExecuteResponse=true&status=true |
|---|
| 349 | |
|---|
| 350 | Conclusion |
|---|
| 351 | ----------------- |
|---|
| 352 | |
|---|
| 353 | Even if this first service was really simple it was useful to illustrate how the |
|---|
| 354 | ZOO-Kernel fill ``conf``, ``inputs`` and ``outputs`` parameter prior to load |
|---|
| 355 | and run your function service, how to write a ZCFG file, how to publish a Services |
|---|
| 356 | Provider by placing the ZCFG and Python files in the same directory as the |
|---|
| 357 | ZOO-Kernel, then how to interract with your service using both |
|---|
| 358 | ``GetCapabilities``, ``DescribeProcess`` and ``Execute`` requesr. We will see |
|---|
| 359 | in the `next section <building_blocks_presentation.html>`__ how to write similar requests |
|---|
| 360 | using the XML syntax. |
|---|
| 361 | |
|---|
| 362 | .. rubric:: Footnotes |
|---|
| 363 | |
|---|
| 364 | .. [#f1] ``SERVICE_FAILED=4`` |
|---|
| 365 | .. [#f2] ``SERVICE_SUCCEEDED=3`` |
|---|
| 366 | .. [#f3] To get on-going status url in ``statusLocation``, you'll need to setup the `utils/status <http://www.zoo-project.org/trac/browser/trunk/zoo-project/zoo-services/utils/status>`_ Service. If you don't get this service available, the ZOO-Kernel will simply give the url to a flat XML file stored on the server which will contain, at the end of the execution, the result of the Service execution. |
|---|