1 | .. _services-howtos: |
---|
2 | |
---|
3 | How To Setup ZOO Services |
---|
4 | ========================= |
---|
5 | |
---|
6 | :Authors: Nicolas Bozon, Gérald Fenoy, Jeff McKenna, Luca Delucchi |
---|
7 | :Last Updated: $Date: 2014-11-05 12:00:33 +0000 (Wed, 05 Nov 2014) $ |
---|
8 | |
---|
9 | ZOO Services are quite easy to create once you have installed the ZOO Kernel and have |
---|
10 | chosen code (in the language of your choice) to turn into a ZOO service. Here are some |
---|
11 | HelloWorlds in Python, PHP, Java and JavaScript with links to their corresponding |
---|
12 | ``.zcfg`` files. |
---|
13 | |
---|
14 | .. contents:: Table of Contents |
---|
15 | :depth: 3 |
---|
16 | :backlinks: top |
---|
17 | |
---|
18 | Common informations |
---|
19 | ---------------------- |
---|
20 | |
---|
21 | The function of the process for each programming language take three arguments: the main |
---|
22 | configuration, inputs and outputs. |
---|
23 | |
---|
24 | .. Note:: The service has to **return 3 if the process run successfully instead it |
---|
25 | return 4** if the process end with an error. |
---|
26 | |
---|
27 | Python |
---|
28 | ------ |
---|
29 | |
---|
30 | You'll find here information needed to deploy your own Python Services Provider. |
---|
31 | |
---|
32 | Python ZCFG requirements |
---|
33 | ************************ |
---|
34 | |
---|
35 | .. Note:: For each Service provided by your ZOO Python Services Provider, the ZCFG File |
---|
36 | must be named the same as the Python module function name (also the case of |
---|
37 | characters is important). |
---|
38 | |
---|
39 | The ZCFG file should contain the following : |
---|
40 | |
---|
41 | |
---|
42 | serviceType |
---|
43 | Python |
---|
44 | serviceProvider |
---|
45 | The name of the Python module to use as a ZOO Service Provider. For instance, if your |
---|
46 | script, located in the same directory as your ZOO Kernel, was named ``my_module.py`` then |
---|
47 | you should use ``my_module`` (the Python module name) for the serviceProvider value in ZCFG file. |
---|
48 | |
---|
49 | Python Data Structure used |
---|
50 | ************************** |
---|
51 | The three parameters of the function are passed to the Python module as dictionaries. |
---|
52 | |
---|
53 | Following you'll find an example for each parameters |
---|
54 | |
---|
55 | Main configuration |
---|
56 | ^^^^^^^^^^^^^^^^^^^^^ |
---|
57 | Main configuration contains several informations, some of them are really useful to develop your service. |
---|
58 | Following an example :: |
---|
59 | |
---|
60 | { |
---|
61 | 'main': {'lang': 'en-UK', |
---|
62 | 'language': 'en-US', |
---|
63 | 'encoding': 'utf-8', |
---|
64 | 'dataPath': '/var/www/tmp', |
---|
65 | 'tmpPath': '/var/www/tmp', |
---|
66 | 'version': '1.0.0', |
---|
67 | 'mapserverAddress': 'http://localhost/cgi-bin/mapserv', |
---|
68 | 'isSoap': 'false', |
---|
69 | 'tmpUrl': 'http://localhost/tmp/', |
---|
70 | 'serverAddress': 'http://localhost/zoo' |
---|
71 | }, |
---|
72 | 'identification': {'keywords': 'WPS,GIS', |
---|
73 | 'abstract': 'WPS services for testing ZOO', |
---|
74 | 'fees': 'None', |
---|
75 | 'accessConstraints': 'none', |
---|
76 | 'title': 'testing services' |
---|
77 | }, |
---|
78 | 'lenv': {'status': '0', |
---|
79 | 'soap': 'false', |
---|
80 | 'cwd': '/usr/lib/cgi-bin', |
---|
81 | 'sid': '24709' |
---|
82 | }, |
---|
83 | 'env': {'DISPLAY': 'localhost:0'}, |
---|
84 | 'provider': {'addressCountry': 'it', |
---|
85 | 'positionName': 'Developer', |
---|
86 | 'providerName': 'Name of provider', |
---|
87 | 'addressAdministrativeArea': 'False', |
---|
88 | 'phoneVoice': 'False', |
---|
89 | 'addressCity': 'City', |
---|
90 | 'providerSite': 'http://www.your.site', |
---|
91 | 'addressPostalCode': '38122', |
---|
92 | 'role': 'Developer', |
---|
93 | 'addressDeliveryPoint': 'False', |
---|
94 | 'phoneFacsimile': 'False', |
---|
95 | 'addressElectronicMailAddress': 'your@email.com', |
---|
96 | 'individualName': 'Your Name' |
---|
97 | } |
---|
98 | } |
---|
99 | |
---|
100 | Inputs |
---|
101 | ^^^^^^^^^^^^ |
---|
102 | The inputs are somethings like this :: |
---|
103 | |
---|
104 | { |
---|
105 | 'variable_name': {'minOccurs': '1', |
---|
106 | 'DataType': 'string', |
---|
107 | 'value': 'this_is_the_value', |
---|
108 | 'maxOccurs': '1', |
---|
109 | 'inRequest': 'true' |
---|
110 | } |
---|
111 | } |
---|
112 | |
---|
113 | The access to the value you have to require for the ``value`` parameter, something like this :: |
---|
114 | |
---|
115 | yourVariable = inputs['variable_name']['value'] |
---|
116 | |
---|
117 | Outputs |
---|
118 | ^^^^^^^^^^^^^ |
---|
119 | The outputs data as a structure really similar to the inputs one :: |
---|
120 | |
---|
121 | { |
---|
122 | 'result': {'DataType': 'string', |
---|
123 | 'inRequest': 'true', |
---|
124 | } |
---|
125 | } |
---|
126 | |
---|
127 | There is no ``'value'`` parameter before you assign it :: |
---|
128 | |
---|
129 | inputs['result']['value'] = yourOutputDataVariable |
---|
130 | |
---|
131 | The return statement has to be an integer: corresponding to the service status code. |
---|
132 | |
---|
133 | To add a message for the wrong result you can add the massage to ``conf["lenv"]["message"]``, |
---|
134 | for example: |
---|
135 | |
---|
136 | .. code-block:: python |
---|
137 | |
---|
138 | conf["lenv"]["message"] = 'Your module return an error' |
---|
139 | |
---|
140 | Sample ZOO Python Services Provider |
---|
141 | *********************************** |
---|
142 | |
---|
143 | The following code represents a simple ZOO Python Services Provider which provides only one |
---|
144 | Service, the HelloPy one. |
---|
145 | |
---|
146 | .. code-block:: python |
---|
147 | |
---|
148 | import sys |
---|
149 | def HelloPy(conf,inputs,outputs): |
---|
150 | outputs["Result"]["value"]="Hello "+inputs["a"]["value"]+" from Python World !" |
---|
151 | return 3 |
---|
152 | |
---|
153 | PHP |
---|
154 | --- |
---|
155 | |
---|
156 | .. code-block:: php |
---|
157 | |
---|
158 | <? |
---|
159 | function HelloPHP(&$main_conf,&$inputs,&$outputs){ |
---|
160 | $outputs["Result"]["value"]="Hello ".$inputs[S][value]." from PHP world !"; |
---|
161 | return 3; |
---|
162 | } |
---|
163 | ?> |
---|
164 | |
---|
165 | Java |
---|
166 | ---- |
---|
167 | |
---|
168 | ZOO-API |
---|
169 | ******* |
---|
170 | |
---|
171 | Before you build your first ZOO-Service implemented inn Java, it is |
---|
172 | recommended that you first build the ZOO class of the Java ZOO-API. |
---|
173 | |
---|
174 | .. Note:: You should build ZOO-Kernel prior to follow this instructions. |
---|
175 | |
---|
176 | To build the ZOO.class of the ZOO-API for Java, use the following |
---|
177 | command: |
---|
178 | |
---|
179 | .. code-block:: guess |
---|
180 | |
---|
181 | cd zoo-api/java |
---|
182 | make |
---|
183 | cp ZOO.class libZOO.so /usr/lib/cgi-bin |
---|
184 | |
---|
185 | .. Note:: running the previous commands will require that both |
---|
186 | ``javac`` and ``javah`` are in your PATH. |
---|
187 | |
---|
188 | Java ZCFG requirements |
---|
189 | ********************************** |
---|
190 | |
---|
191 | .. Note:: For each Service provided by your ZOO Java Services Provider |
---|
192 | (your corresponding Java class), the ZCFG File must be |
---|
193 | named the same as the Java public method name (also the |
---|
194 | case of characters is important). |
---|
195 | |
---|
196 | The ZCFG file should contain the following : |
---|
197 | |
---|
198 | serviceType |
---|
199 | Java |
---|
200 | serviceProvider |
---|
201 | The name of the Java class to use as a ZOO Service Provider. For instance, if your |
---|
202 | java class, located in the same directory as your ZOO-Kernel, was |
---|
203 | named ``HelloWorld.class`` then you should use ``HelloWorld``. |
---|
204 | |
---|
205 | |
---|
206 | Java Data Structure used |
---|
207 | ******************************** |
---|
208 | |
---|
209 | The three parameters of the function are passed to the Java function |
---|
210 | as `java.util.HashMap <http://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html>`__. |
---|
211 | |
---|
212 | Sample ZOO Java Services Provider |
---|
213 | ****************************************** |
---|
214 | |
---|
215 | .. code-block:: java |
---|
216 | |
---|
217 | import java.util.*; |
---|
218 | public class HelloJava { |
---|
219 | public static int HelloWorldJava(HashMap conf,HashMap inputs, HashMap outputs) { |
---|
220 | HashMap hm1 = new HashMap(); |
---|
221 | hm1.put("dataType","string"); |
---|
222 | HashMap tmp=(HashMap)(inputs.get("S")); |
---|
223 | java.lang.String v=tmp.get("value").toString(); |
---|
224 | hm1.put("value","Hello "+v+" from JAVA WOrld !"); |
---|
225 | outputs.put("Result",hm1); |
---|
226 | System.err.println("Hello from JAVA WOrld !"); |
---|
227 | return ZOO.SERVICE_SUCCEEDED; |
---|
228 | } |
---|
229 | } |
---|
230 | |
---|
231 | Javascript |
---|
232 | ---------- |
---|
233 | |
---|
234 | ZOO API |
---|
235 | ********* |
---|
236 | |
---|
237 | If you need to use :ref:`ZOO API <api>` in your service, you have first to copy ``zoo-api.js`` |
---|
238 | and ``zoo-proj4js.js`` where your services are located (for example in Unix system probably in |
---|
239 | ``/usr/lib/cgi-bin/`` |
---|
240 | |
---|
241 | Javascript ZCFG requirements |
---|
242 | ********************************** |
---|
243 | |
---|
244 | .. Note:: For each Service provided by your ZOO Javascript Services Provider, the ZCFG File |
---|
245 | must be named the same as the Javascript function name (also the case of |
---|
246 | characters is important). |
---|
247 | |
---|
248 | The ZCFG file should contain the following : |
---|
249 | |
---|
250 | serviceType |
---|
251 | JS |
---|
252 | serviceProvider |
---|
253 | The name of the JavaScript file to use as a ZOO Service Provider. For instance, if your |
---|
254 | script, located in the same directory as your ZOO Kernel, was named ``my_module.js`` then |
---|
255 | you should use ``my_module.js``. |
---|
256 | |
---|
257 | |
---|
258 | Javascript Data Structure used |
---|
259 | ******************************** |
---|
260 | |
---|
261 | The three parameters of the function are passed to the JavaScript function as Object. |
---|
262 | |
---|
263 | Sample ZOO Javascript Services Provider |
---|
264 | ****************************************** |
---|
265 | |
---|
266 | .. code-block:: javascript |
---|
267 | |
---|
268 | function hellojs(conf,inputs,outputs){ |
---|
269 | outputs=new Array(); |
---|
270 | outputs={}; |
---|
271 | outputs["result"]["value"]="Hello "+inputs["S"]["value"]+" from JS World !"; |
---|
272 | return Array(3,outputs); |
---|
273 | } |
---|
274 | |
---|