1 | /** |
---|
2 | * Author : Gérald FENOY |
---|
3 | * |
---|
4 | * Copyright (c) 2009-2012 GeoLabs SARL |
---|
5 | * |
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
---|
7 | * of this software and associated documentation files (the "Software"), to deal |
---|
8 | * in the Software without restriction, including without limitation the rights |
---|
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
---|
10 | * copies of the Software, and to permit persons to whom the Software is |
---|
11 | * furnished to do so, subject to the following conditions: |
---|
12 | * |
---|
13 | * The above copyright notice and this permission notice shall be included in |
---|
14 | * all copies or substantial portions of the Software. |
---|
15 | * |
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
---|
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
---|
22 | * THE SOFTWARE. |
---|
23 | */ |
---|
24 | |
---|
25 | #include "service_internal.h" |
---|
26 | #ifdef USE_MS |
---|
27 | #include "service_internal_ms.h" |
---|
28 | #endif |
---|
29 | |
---|
30 | #ifndef TRUE |
---|
31 | #define TRUE 1 |
---|
32 | #endif |
---|
33 | #ifndef FALSE |
---|
34 | #define FALSE -1 |
---|
35 | #endif |
---|
36 | |
---|
37 | void printHeaders(maps* m){ |
---|
38 | maps *_tmp=getMaps(m,"headers"); |
---|
39 | if(_tmp!=NULL){ |
---|
40 | map* _tmp1=_tmp->content; |
---|
41 | while(_tmp1!=NULL){ |
---|
42 | printf("%s: %s\r\n",_tmp1->name,_tmp1->value); |
---|
43 | _tmp1=_tmp1->next; |
---|
44 | } |
---|
45 | } |
---|
46 | } |
---|
47 | |
---|
48 | void addLangAttr(xmlNodePtr n,maps *m){ |
---|
49 | map *tmpLmap=getMapFromMaps(m,"main","language"); |
---|
50 | if(tmpLmap!=NULL) |
---|
51 | xmlNewProp(n,BAD_CAST "xml:lang",BAD_CAST tmpLmap->value); |
---|
52 | else |
---|
53 | xmlNewProp(n,BAD_CAST "xml:lang",BAD_CAST "en-US"); |
---|
54 | } |
---|
55 | |
---|
56 | /* Converts a hex character to its integer value */ |
---|
57 | char from_hex(char ch) { |
---|
58 | return isdigit(ch) ? ch - '0' : tolower(ch) - 'a' + 10; |
---|
59 | } |
---|
60 | |
---|
61 | /* Converts an integer value to its hex character*/ |
---|
62 | char to_hex(char code) { |
---|
63 | static char hex[] = "0123456789abcdef"; |
---|
64 | return hex[code & 15]; |
---|
65 | } |
---|
66 | |
---|
67 | #ifdef WIN32 |
---|
68 | |
---|
69 | #include <windows.h> |
---|
70 | #include <stdio.h> |
---|
71 | #include <conio.h> |
---|
72 | #include <tchar.h> |
---|
73 | |
---|
74 | #define SHMEMSIZE 4096 |
---|
75 | |
---|
76 | static LPVOID lpvMemG = NULL; // pointer to shared memory |
---|
77 | static HANDLE hMapObjectG = NULL; // handle to file mapping |
---|
78 | |
---|
79 | void updateStatus(maps *conf){ |
---|
80 | fprintf(stderr,"OK Final 1 \n"); |
---|
81 | fflush(stderr); |
---|
82 | LPWSTR lpszTmp; |
---|
83 | BOOL fInit; |
---|
84 | char *s=NULL; |
---|
85 | map *tmpMap=getMapFromMaps(conf,"lenv","sid"); |
---|
86 | fprintf(stderr,"OK Final 11 \n"); |
---|
87 | fflush(stderr); |
---|
88 | if(hMapObjectG==NULL) |
---|
89 | hMapObjectG = CreateFileMapping( |
---|
90 | INVALID_HANDLE_VALUE, // use paging file |
---|
91 | NULL, // default security attributes |
---|
92 | PAGE_READWRITE, // read/write access |
---|
93 | 0, // size: high 32-bits |
---|
94 | SHMEMSIZE, // size: low 32-bits |
---|
95 | TEXT(tmpMap->value)); // name of map object |
---|
96 | if (hMapObjectG == NULL){ |
---|
97 | fprintf(stderr,"Unable to create share memory segment %s !! \n",tmpMap->value); |
---|
98 | return ; |
---|
99 | } |
---|
100 | fprintf(stderr,"OK Final 2 \n"); |
---|
101 | fflush(stderr); |
---|
102 | fInit = (GetLastError() != ERROR_ALREADY_EXISTS); |
---|
103 | if(lpvMemG==NULL) |
---|
104 | lpvMemG = MapViewOfFile( |
---|
105 | hMapObjectG, // object to map view of |
---|
106 | FILE_MAP_WRITE, // read/write access |
---|
107 | 0, // high offset: map from |
---|
108 | 0, // low offset: beginning |
---|
109 | 0); // default: map entire file |
---|
110 | if (lpvMemG == NULL){ |
---|
111 | fprintf(stderr,"Unable to create or access the shared memory segment %s !! \n",tmpMap->value); |
---|
112 | return ; |
---|
113 | } |
---|
114 | fprintf(stderr,"OK Final 3 \n"); |
---|
115 | fflush(stderr); |
---|
116 | if (fInit) |
---|
117 | memset(lpvMemG, '\0', SHMEMSIZE); |
---|
118 | fprintf(stderr,"OK Final 4 \n"); |
---|
119 | fflush(stderr); |
---|
120 | tmpMap=getMapFromMaps(conf,"lenv","status"); |
---|
121 | lpszTmp = (LPWSTR) lpvMemG; |
---|
122 | for(s=tmpMap->value;*s!=NULL;s++) |
---|
123 | *lpszTmp++ = *s; |
---|
124 | *lpszTmp = '\0'; |
---|
125 | } |
---|
126 | |
---|
127 | char* getStatus(int pid){ |
---|
128 | LPWSTR lpszBuf=NULL; |
---|
129 | LPWSTR lpszTmp=NULL; |
---|
130 | LPVOID lpvMem = NULL; |
---|
131 | HANDLE hMapObject = NULL; |
---|
132 | BOOL fIgnore,fInit; |
---|
133 | char tmp[100]; |
---|
134 | sprintf(tmp,"%i",pid); |
---|
135 | if(hMapObject==NULL) |
---|
136 | hMapObject = CreateFileMapping( |
---|
137 | INVALID_HANDLE_VALUE, // use paging file |
---|
138 | NULL, // default security attributes |
---|
139 | PAGE_READWRITE, // read/write access |
---|
140 | 0, // size: high 32-bits |
---|
141 | 4096, // size: low 32-bits |
---|
142 | TEXT(tmp)); // name of map object |
---|
143 | if (hMapObject == NULL) |
---|
144 | return FALSE; |
---|
145 | if((GetLastError() != ERROR_ALREADY_EXISTS)){ |
---|
146 | fIgnore = UnmapViewOfFile(lpvMem); |
---|
147 | fIgnore = CloseHandle(hMapObject); |
---|
148 | return "-1"; |
---|
149 | } |
---|
150 | fInit=TRUE; |
---|
151 | if(lpvMem==NULL) |
---|
152 | lpvMem = MapViewOfFile( |
---|
153 | hMapObject, // object to map view of |
---|
154 | FILE_MAP_READ, // read/write access |
---|
155 | 0, // high offset: map from |
---|
156 | 0, // low offset: beginning |
---|
157 | 0); // default: map entire file |
---|
158 | if (lpvMem == NULL) |
---|
159 | return "-1"; |
---|
160 | lpszTmp = (LPWSTR) lpvMem; |
---|
161 | while (*lpszTmp!=NULL) |
---|
162 | *lpszBuf++ = *lpszTmp++; |
---|
163 | *lpszBuf = '\0'; |
---|
164 | fIgnore = UnmapViewOfFile(lpvMem); |
---|
165 | fIgnore = CloseHandle(hMapObject); |
---|
166 | return (char*)lpszBuf; |
---|
167 | } |
---|
168 | |
---|
169 | void unhandleStatus(maps *conf){ |
---|
170 | BOOL fIgnore; |
---|
171 | fIgnore = UnmapViewOfFile(lpvMemG); |
---|
172 | fIgnore = CloseHandle(hMapObjectG); |
---|
173 | } |
---|
174 | #else |
---|
175 | |
---|
176 | void unhandleStatus(maps *conf){ |
---|
177 | int shmid,i; |
---|
178 | key_t key; |
---|
179 | void *shm; |
---|
180 | struct shmid_ds shmids; |
---|
181 | char *s,*s1; |
---|
182 | map *tmpMap=getMapFromMaps(conf,"lenv","sid"); |
---|
183 | if(tmpMap!=NULL){ |
---|
184 | key=atoi(tmpMap->value); |
---|
185 | if ((shmid = shmget(key, SHMSZ, IPC_CREAT | 0666)) < 0) { |
---|
186 | #ifdef DEBUG |
---|
187 | fprintf(stderr,"shmget failed to update value\n"); |
---|
188 | #endif |
---|
189 | }else{ |
---|
190 | if ((shm = shmat(shmid, NULL, 0)) == (char *) -1) { |
---|
191 | #ifdef DEBUG |
---|
192 | fprintf(stderr,"shmat failed to update value\n"); |
---|
193 | #endif |
---|
194 | }else{ |
---|
195 | shmdt(shm); |
---|
196 | shmctl(shmid,IPC_RMID,&shmids); |
---|
197 | } |
---|
198 | } |
---|
199 | } |
---|
200 | } |
---|
201 | |
---|
202 | void updateStatus(maps *conf){ |
---|
203 | int shmid,i; |
---|
204 | key_t key; |
---|
205 | char *shm,*s,*s1; |
---|
206 | map *tmpMap=NULL; |
---|
207 | tmpMap=getMapFromMaps(conf,"lenv","sid"); |
---|
208 | if(tmpMap!=NULL){ |
---|
209 | key=atoi(tmpMap->value); |
---|
210 | if ((shmid = shmget(key, SHMSZ, IPC_CREAT | 0666)) < 0) { |
---|
211 | #ifdef DEBUG |
---|
212 | fprintf(stderr,"shmget failed to create new Shared memory segment\n"); |
---|
213 | #endif |
---|
214 | }else{ |
---|
215 | if ((shm = (char*) shmat(shmid, NULL, 0)) == (char *) -1) { |
---|
216 | #ifdef DEBUG |
---|
217 | fprintf(stderr,"shmat failed to update value\n"); |
---|
218 | #endif |
---|
219 | } |
---|
220 | else{ |
---|
221 | tmpMap=getMapFromMaps(conf,"lenv","status"); |
---|
222 | s1=shm; |
---|
223 | for(s=tmpMap->value;*s!=NULL && *s!=0;s++){ |
---|
224 | *s1++=*s; |
---|
225 | } |
---|
226 | *s1=NULL; |
---|
227 | shmdt((void *)shm); |
---|
228 | } |
---|
229 | } |
---|
230 | } |
---|
231 | } |
---|
232 | |
---|
233 | char* getStatus(int pid){ |
---|
234 | int shmid,i; |
---|
235 | key_t key; |
---|
236 | void *shm; |
---|
237 | char *s; |
---|
238 | key=pid; |
---|
239 | if ((shmid = shmget(key, SHMSZ, 0666)) < 0) { |
---|
240 | #ifdef DEBUG |
---|
241 | fprintf(stderr,"shmget failed in getStatus\n"); |
---|
242 | #endif |
---|
243 | }else{ |
---|
244 | if ((shm = shmat(shmid, NULL, 0)) == (char *) -1) { |
---|
245 | #ifdef DEBUG |
---|
246 | fprintf(stderr,"shmat failed in getStatus\n"); |
---|
247 | #endif |
---|
248 | }else{ |
---|
249 | return (char*)shm; |
---|
250 | } |
---|
251 | } |
---|
252 | return "-1"; |
---|
253 | } |
---|
254 | |
---|
255 | #endif |
---|
256 | |
---|
257 | #ifdef USE_JS |
---|
258 | |
---|
259 | JSBool |
---|
260 | JSUpdateStatus(JSContext *cx, uintN argc, jsval *argv1) |
---|
261 | { |
---|
262 | jsval *argv = JS_ARGV(cx,argv1); |
---|
263 | JS_MaybeGC(cx); |
---|
264 | char *sid; |
---|
265 | int istatus=0; |
---|
266 | char *status=NULL; |
---|
267 | maps *conf; |
---|
268 | int i=0; |
---|
269 | if(argc>2){ |
---|
270 | #ifdef JS_DEBUG |
---|
271 | fprintf(stderr,"Number of arguments used to call the function : %i",argc); |
---|
272 | #endif |
---|
273 | return JS_FALSE; |
---|
274 | } |
---|
275 | conf=mapsFromJSObject(cx,argv[0]); |
---|
276 | if(JS_ValueToInt32(cx,argv[1],&istatus)==JS_TRUE){ |
---|
277 | char tmpStatus[4]; |
---|
278 | sprintf(tmpStatus,"%i",istatus); |
---|
279 | tmpStatus[3]=0; |
---|
280 | status=strdup(tmpStatus); |
---|
281 | } |
---|
282 | if(getMapFromMaps(conf,"lenv","status")!=NULL){ |
---|
283 | fprintf(stderr,"STATUS RETURNED : %s\n",status); |
---|
284 | if(status!=NULL){ |
---|
285 | setMapInMaps(conf,"lenv","status",status); |
---|
286 | free(status); |
---|
287 | } |
---|
288 | else |
---|
289 | setMapInMaps(conf,"lenv","status","15"); |
---|
290 | updateStatus(conf); |
---|
291 | } |
---|
292 | freeMaps(&conf); |
---|
293 | free(conf); |
---|
294 | JS_MaybeGC(cx); |
---|
295 | return JS_TRUE; |
---|
296 | } |
---|
297 | |
---|
298 | #endif |
---|
299 | |
---|
300 | |
---|
301 | |
---|
302 | /* Returns a url-encoded version of str */ |
---|
303 | /* IMPORTANT: be sure to free() the returned string after use */ |
---|
304 | char *url_encode(char *str) { |
---|
305 | char *pstr = str, *buf = (char*) malloc(strlen(str) * 3 + 1), *pbuf = buf; |
---|
306 | while (*pstr) { |
---|
307 | if (isalnum(*pstr) || *pstr == '-' || *pstr == '_' || *pstr == '.' || *pstr == '~') |
---|
308 | *pbuf++ = *pstr; |
---|
309 | else if (*pstr == ' ') |
---|
310 | *pbuf++ = '+'; |
---|
311 | else |
---|
312 | *pbuf++ = '%', *pbuf++ = to_hex(*pstr >> 4), *pbuf++ = to_hex(*pstr & 15); |
---|
313 | pstr++; |
---|
314 | } |
---|
315 | *pbuf = '\0'; |
---|
316 | return buf; |
---|
317 | } |
---|
318 | |
---|
319 | /* Returns a url-decoded version of str */ |
---|
320 | /* IMPORTANT: be sure to free() the returned string after use */ |
---|
321 | char *url_decode(char *str) { |
---|
322 | char *pstr = str, *buf = (char*) malloc(strlen(str) + 1), *pbuf = buf; |
---|
323 | while (*pstr) { |
---|
324 | if (*pstr == '%') { |
---|
325 | if (pstr[1] && pstr[2]) { |
---|
326 | *pbuf++ = from_hex(pstr[1]) << 4 | from_hex(pstr[2]); |
---|
327 | pstr += 2; |
---|
328 | } |
---|
329 | } else if (*pstr == '+') { |
---|
330 | *pbuf++ = ' '; |
---|
331 | } else { |
---|
332 | *pbuf++ = *pstr; |
---|
333 | } |
---|
334 | pstr++; |
---|
335 | } |
---|
336 | *pbuf = '\0'; |
---|
337 | return buf; |
---|
338 | } |
---|
339 | |
---|
340 | char *zCapitalize1(char *tmp){ |
---|
341 | char *res=strdup(tmp); |
---|
342 | if(res[0]>=97 && res[0]<=122) |
---|
343 | res[0]-=32; |
---|
344 | return res; |
---|
345 | } |
---|
346 | |
---|
347 | char *zCapitalize(char *tmp){ |
---|
348 | int i=0; |
---|
349 | char *res=strdup(tmp); |
---|
350 | for(i=0;i<strlen(res);i++) |
---|
351 | if(res[i]>=97 && res[i]<=122) |
---|
352 | res[i]-=32; |
---|
353 | return res; |
---|
354 | } |
---|
355 | |
---|
356 | |
---|
357 | int zooXmlSearchForNs(const char* name){ |
---|
358 | int i; |
---|
359 | int res=-1; |
---|
360 | for(i=0;i<nbNs;i++) |
---|
361 | if(strncasecmp(name,nsName[i],strlen(nsName[i]))==0){ |
---|
362 | res=i; |
---|
363 | break; |
---|
364 | } |
---|
365 | return res; |
---|
366 | } |
---|
367 | |
---|
368 | int zooXmlAddNs(xmlNodePtr nr,const char* url,const char* name){ |
---|
369 | #ifdef DEBUG |
---|
370 | fprintf(stderr,"zooXmlAddNs %d \n",nbNs); |
---|
371 | #endif |
---|
372 | int currId=-1; |
---|
373 | int currNode=-1; |
---|
374 | if(nbNs==0){ |
---|
375 | nbNs++; |
---|
376 | currId=0; |
---|
377 | nsName[currId]=strdup(name); |
---|
378 | usedNs[currId]=xmlNewNs(nr,BAD_CAST url,BAD_CAST name); |
---|
379 | }else{ |
---|
380 | currId=zooXmlSearchForNs(name); |
---|
381 | if(currId<0){ |
---|
382 | nbNs++; |
---|
383 | currId=nbNs-1; |
---|
384 | nsName[currId]=strdup(name); |
---|
385 | usedNs[currId]=xmlNewNs(nr,BAD_CAST url,BAD_CAST name); |
---|
386 | } |
---|
387 | } |
---|
388 | return currId; |
---|
389 | } |
---|
390 | |
---|
391 | void zooXmlCleanupNs(){ |
---|
392 | int j; |
---|
393 | #ifdef DEBUG |
---|
394 | fprintf(stderr,"zooXmlCleanup %d\n",nbNs); |
---|
395 | #endif |
---|
396 | for(j=nbNs-1;j>=0;j--){ |
---|
397 | #ifdef DEBUG |
---|
398 | fprintf(stderr,"zooXmlCleanup %d\n",j); |
---|
399 | #endif |
---|
400 | if(j==0) |
---|
401 | xmlFreeNs(usedNs[j]); |
---|
402 | free(nsName[j]); |
---|
403 | nbNs--; |
---|
404 | } |
---|
405 | nbNs=0; |
---|
406 | } |
---|
407 | |
---|
408 | xmlNodePtr soapEnvelope(maps* conf,xmlNodePtr n){ |
---|
409 | map* soap=getMapFromMaps(conf,"main","isSoap"); |
---|
410 | if(soap!=NULL && strcasecmp(soap->value,"true")==0){ |
---|
411 | int lNbNs=nbNs; |
---|
412 | nsName[lNbNs]=strdup("soap"); |
---|
413 | usedNs[lNbNs]=xmlNewNs(NULL,BAD_CAST "http://www.w3.org/2003/05/soap-envelope",BAD_CAST "soap"); |
---|
414 | nbNs++; |
---|
415 | xmlNodePtr nr = xmlNewNode(usedNs[lNbNs], BAD_CAST "Envelope"); |
---|
416 | nsName[nbNs]=strdup("soap"); |
---|
417 | usedNs[nbNs]=xmlNewNs(nr,BAD_CAST "http://www.w3.org/2003/05/soap-envelope",BAD_CAST "soap"); |
---|
418 | nbNs++; |
---|
419 | nsName[nbNs]=strdup("xsi"); |
---|
420 | usedNs[nbNs]=xmlNewNs(nr,BAD_CAST "http://www.w3.org/2001/XMLSchema-instance",BAD_CAST "xsi"); |
---|
421 | nbNs++; |
---|
422 | xmlNsPtr ns_xsi=usedNs[nbNs-1]; |
---|
423 | xmlNewNsProp(nr,ns_xsi,BAD_CAST "schemaLocation",BAD_CAST "http://www.w3.org/2003/05/soap-envelope http://www.w3.org/2003/05/soap-envelope"); |
---|
424 | xmlNodePtr nr1 = xmlNewNode(usedNs[lNbNs], BAD_CAST "Body"); |
---|
425 | xmlAddChild(nr1,n); |
---|
426 | xmlAddChild(nr,nr1); |
---|
427 | return nr; |
---|
428 | }else |
---|
429 | return n; |
---|
430 | } |
---|
431 | |
---|
432 | xmlNodePtr printGetCapabilitiesHeader(xmlDocPtr doc,const char* service,maps* m){ |
---|
433 | |
---|
434 | xmlNsPtr ns,ns_ows,ns_xlink,ns_xsi; |
---|
435 | xmlNodePtr n,nc,nc1,nc2,nc3,nc4,nc5,nc6,pseudor; |
---|
436 | xmlChar *xmlbuff; |
---|
437 | int buffersize; |
---|
438 | /** |
---|
439 | * Create the document and its temporary root. |
---|
440 | */ |
---|
441 | int wpsId=zooXmlAddNs(NULL,"http://www.opengis.net/wps/1.0.0","wps"); |
---|
442 | ns=usedNs[wpsId]; |
---|
443 | maps* toto1=getMaps(m,"main"); |
---|
444 | |
---|
445 | n = xmlNewNode(ns, BAD_CAST "Capabilities"); |
---|
446 | int owsId=zooXmlAddNs(n,"http://www.opengis.net/ows/1.1","ows"); |
---|
447 | ns_ows=usedNs[owsId]; |
---|
448 | xmlNewNs(n,BAD_CAST "http://www.opengis.net/wps/1.0.0",BAD_CAST "wps"); |
---|
449 | int xsiId=zooXmlAddNs(n,"http://www.w3.org/2001/XMLSchema-instance","xsi"); |
---|
450 | ns_xsi=usedNs[xsiId]; |
---|
451 | int xlinkId=zooXmlAddNs(n,"http://www.w3.org/1999/xlink","xlink"); |
---|
452 | ns_xlink=usedNs[xlinkId]; |
---|
453 | xmlNewNsProp(n,ns_xsi,BAD_CAST "schemaLocation",BAD_CAST "http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsGetCapabilities_response.xsd"); |
---|
454 | xmlNewProp(n,BAD_CAST "service",BAD_CAST "WPS"); |
---|
455 | addLangAttr(n,m); |
---|
456 | |
---|
457 | if(toto1!=NULL){ |
---|
458 | map* tmp=getMap(toto1->content,"version"); |
---|
459 | if(tmp!=NULL){ |
---|
460 | xmlNewProp(n,BAD_CAST "version",BAD_CAST tmp->value); |
---|
461 | } |
---|
462 | else |
---|
463 | xmlNewProp(n,BAD_CAST "version",BAD_CAST "1.0.0"); |
---|
464 | } |
---|
465 | else |
---|
466 | xmlNewProp(n,BAD_CAST "version",BAD_CAST "1.0.0"); |
---|
467 | |
---|
468 | char tmp[256]; |
---|
469 | |
---|
470 | nc = xmlNewNode(ns_ows, BAD_CAST "ServiceIdentification"); |
---|
471 | maps* tmp4=getMaps(m,"identification"); |
---|
472 | if(tmp4!=NULL){ |
---|
473 | map* tmp2=tmp4->content; |
---|
474 | char *orderedFields[5]; |
---|
475 | orderedFields[0]="Title"; |
---|
476 | orderedFields[1]="Abstract"; |
---|
477 | orderedFields[2]="Keywords"; |
---|
478 | orderedFields[3]="Fees"; |
---|
479 | orderedFields[4]="AccessConstraints"; |
---|
480 | int oI=0; |
---|
481 | for(oI=0;oI<5;oI++) |
---|
482 | if((tmp2=getMap(tmp4->content,orderedFields[oI]))!=NULL){ |
---|
483 | if(strcasecmp(tmp2->name,"abstract")==0 || |
---|
484 | strcasecmp(tmp2->name,"title")==0 || |
---|
485 | strcasecmp(tmp2->name,"accessConstraints")==0 || |
---|
486 | strcasecmp(tmp2->name,"fees")==0){ |
---|
487 | tmp2->name[0]=toupper(tmp2->name[0]); |
---|
488 | nc1 = xmlNewNode(ns_ows, BAD_CAST tmp2->name); |
---|
489 | xmlAddChild(nc1,xmlNewText(BAD_CAST tmp2->value)); |
---|
490 | xmlAddChild(nc,nc1); |
---|
491 | } |
---|
492 | else |
---|
493 | if(strcmp(tmp2->name,"keywords")==0){ |
---|
494 | nc1 = xmlNewNode(ns_ows, BAD_CAST "Keywords"); |
---|
495 | char *toto=tmp2->value; |
---|
496 | char buff[256]; |
---|
497 | int i=0; |
---|
498 | int j=0; |
---|
499 | while(toto[i]){ |
---|
500 | if(toto[i]!=',' && toto[i]!=0){ |
---|
501 | buff[j]=toto[i]; |
---|
502 | buff[j+1]=0; |
---|
503 | j++; |
---|
504 | } |
---|
505 | else{ |
---|
506 | nc2 = xmlNewNode(ns_ows, BAD_CAST "Keyword"); |
---|
507 | xmlAddChild(nc2,xmlNewText(BAD_CAST buff)); |
---|
508 | xmlAddChild(nc1,nc2); |
---|
509 | j=0; |
---|
510 | } |
---|
511 | i++; |
---|
512 | } |
---|
513 | if(strlen(buff)>0){ |
---|
514 | nc2 = xmlNewNode(ns_ows, BAD_CAST "Keyword"); |
---|
515 | xmlAddChild(nc2,xmlNewText(BAD_CAST buff)); |
---|
516 | xmlAddChild(nc1,nc2); |
---|
517 | } |
---|
518 | xmlAddChild(nc,nc1); |
---|
519 | nc2 = xmlNewNode(ns_ows, BAD_CAST "ServiceType"); |
---|
520 | xmlAddChild(nc2,xmlNewText(BAD_CAST "WPS")); |
---|
521 | xmlAddChild(nc,nc2); |
---|
522 | nc2 = xmlNewNode(ns_ows, BAD_CAST "ServiceTypeVersion"); |
---|
523 | xmlAddChild(nc2,xmlNewText(BAD_CAST "1.0.0")); |
---|
524 | xmlAddChild(nc,nc2); |
---|
525 | } |
---|
526 | tmp2=tmp2->next; |
---|
527 | } |
---|
528 | } |
---|
529 | else{ |
---|
530 | fprintf(stderr,"TMP4 NOT FOUND !!"); |
---|
531 | return NULL; |
---|
532 | } |
---|
533 | xmlAddChild(n,nc); |
---|
534 | |
---|
535 | nc = xmlNewNode(ns_ows, BAD_CAST "ServiceProvider"); |
---|
536 | nc3 = xmlNewNode(ns_ows, BAD_CAST "ServiceContact"); |
---|
537 | nc4 = xmlNewNode(ns_ows, BAD_CAST "ContactInfo"); |
---|
538 | nc5 = xmlNewNode(ns_ows, BAD_CAST "Phone"); |
---|
539 | nc6 = xmlNewNode(ns_ows, BAD_CAST "Address"); |
---|
540 | tmp4=getMaps(m,"provider"); |
---|
541 | if(tmp4!=NULL){ |
---|
542 | map* tmp2=tmp4->content; |
---|
543 | char *tmpAddress[6]; |
---|
544 | tmpAddress[0]="addressDeliveryPoint"; |
---|
545 | tmpAddress[1]="addressCity"; |
---|
546 | tmpAddress[2]="addressAdministrativeArea"; |
---|
547 | tmpAddress[3]="addressPostalCode"; |
---|
548 | tmpAddress[4]="addressCountry"; |
---|
549 | tmpAddress[5]="addressElectronicMailAddress"; |
---|
550 | char *tmpPhone[2]; |
---|
551 | tmpPhone[0]="phoneVoice"; |
---|
552 | tmpPhone[1]="phoneFacsimile"; |
---|
553 | char *orderedFields[12]; |
---|
554 | orderedFields[0]="providerName"; |
---|
555 | orderedFields[1]="providerSite"; |
---|
556 | orderedFields[2]="individualName"; |
---|
557 | orderedFields[3]="positionName"; |
---|
558 | orderedFields[4]=tmpPhone[0]; |
---|
559 | orderedFields[5]=tmpPhone[1]; |
---|
560 | orderedFields[6]=tmpAddress[0]; |
---|
561 | orderedFields[7]=tmpAddress[1]; |
---|
562 | orderedFields[8]=tmpAddress[2]; |
---|
563 | orderedFields[9]=tmpAddress[3]; |
---|
564 | orderedFields[10]=tmpAddress[4]; |
---|
565 | orderedFields[11]=tmpAddress[5]; |
---|
566 | int oI=0; |
---|
567 | for(oI=0;oI<12;oI++) |
---|
568 | if((tmp2=getMap(tmp4->content,orderedFields[oI]))!=NULL){ |
---|
569 | if(strcmp(tmp2->name,"keywords")!=0 && |
---|
570 | strcmp(tmp2->name,"serverAddress")!=0 && |
---|
571 | strcmp(tmp2->name,"lang")!=0){ |
---|
572 | tmp2->name[0]=toupper(tmp2->name[0]); |
---|
573 | if(strcmp(tmp2->name,"ProviderName")==0){ |
---|
574 | nc1 = xmlNewNode(ns_ows, BAD_CAST tmp2->name); |
---|
575 | xmlAddChild(nc1,xmlNewText(BAD_CAST tmp2->value)); |
---|
576 | xmlAddChild(nc,nc1); |
---|
577 | } |
---|
578 | else{ |
---|
579 | if(strcmp(tmp2->name,"ProviderSite")==0){ |
---|
580 | nc1 = xmlNewNode(ns_ows, BAD_CAST tmp2->name); |
---|
581 | xmlNewNsProp(nc1,ns_xlink,BAD_CAST "href",BAD_CAST tmp2->value); |
---|
582 | xmlAddChild(nc,nc1); |
---|
583 | } |
---|
584 | else |
---|
585 | if(strcmp(tmp2->name,"IndividualName")==0 || |
---|
586 | strcmp(tmp2->name,"PositionName")==0){ |
---|
587 | nc1 = xmlNewNode(ns_ows, BAD_CAST tmp2->name); |
---|
588 | xmlAddChild(nc1,xmlNewText(BAD_CAST tmp2->value)); |
---|
589 | xmlAddChild(nc3,nc1); |
---|
590 | } |
---|
591 | else |
---|
592 | if(strncmp(tmp2->name,"Phone",5)==0){ |
---|
593 | int j; |
---|
594 | for(j=0;j<2;j++) |
---|
595 | if(strcasecmp(tmp2->name,tmpPhone[j])==0){ |
---|
596 | char *toto=NULL; |
---|
597 | char *toto1=tmp2->name; |
---|
598 | toto=strstr(toto1,"Phone"); |
---|
599 | nc1 = xmlNewNode(ns_ows, BAD_CAST toto1+5); |
---|
600 | xmlAddChild(nc1,xmlNewText(BAD_CAST tmp2->value)); |
---|
601 | xmlAddChild(nc5,nc1); |
---|
602 | } |
---|
603 | } |
---|
604 | else |
---|
605 | if(strncmp(tmp2->name,"Address",7)==0){ |
---|
606 | int j; |
---|
607 | for(j=0;j<6;j++) |
---|
608 | if(strcasecmp(tmp2->name,tmpAddress[j])==0){ |
---|
609 | char *toto=NULL; |
---|
610 | char *toto1=tmp2->name; |
---|
611 | toto=strstr(toto1,"Address"); |
---|
612 | nc1 = xmlNewNode(ns_ows, BAD_CAST toto1+7); |
---|
613 | xmlAddChild(nc1,xmlNewText(BAD_CAST tmp2->value)); |
---|
614 | xmlAddChild(nc6,nc1); |
---|
615 | } |
---|
616 | } |
---|
617 | } |
---|
618 | } |
---|
619 | else |
---|
620 | if(strcmp(tmp2->name,"keywords")==0){ |
---|
621 | nc1 = xmlNewNode(ns_ows, BAD_CAST "Keywords"); |
---|
622 | char *toto=tmp2->value; |
---|
623 | char buff[256]; |
---|
624 | int i=0; |
---|
625 | int j=0; |
---|
626 | while(toto[i]){ |
---|
627 | if(toto[i]!=',' && toto[i]!=0){ |
---|
628 | buff[j]=toto[i]; |
---|
629 | buff[j+1]=0; |
---|
630 | j++; |
---|
631 | } |
---|
632 | else{ |
---|
633 | nc2 = xmlNewNode(ns_ows, BAD_CAST "Keyword"); |
---|
634 | xmlAddChild(nc2,xmlNewText(BAD_CAST buff)); |
---|
635 | xmlAddChild(nc1,nc2); |
---|
636 | j=0; |
---|
637 | } |
---|
638 | i++; |
---|
639 | } |
---|
640 | if(strlen(buff)>0){ |
---|
641 | nc2 = xmlNewNode(ns_ows, BAD_CAST "Keyword"); |
---|
642 | xmlAddChild(nc2,xmlNewText(BAD_CAST buff)); |
---|
643 | xmlAddChild(nc1,nc2); |
---|
644 | } |
---|
645 | xmlAddChild(nc,nc1); |
---|
646 | } |
---|
647 | tmp2=tmp2->next; |
---|
648 | } |
---|
649 | } |
---|
650 | else{ |
---|
651 | fprintf(stderr,"TMP4 NOT FOUND !!"); |
---|
652 | } |
---|
653 | xmlAddChild(nc4,nc5); |
---|
654 | xmlAddChild(nc4,nc6); |
---|
655 | xmlAddChild(nc3,nc4); |
---|
656 | xmlAddChild(nc,nc3); |
---|
657 | xmlAddChild(n,nc); |
---|
658 | |
---|
659 | |
---|
660 | nc = xmlNewNode(ns_ows, BAD_CAST "OperationsMetadata"); |
---|
661 | char *tmp2[3]; |
---|
662 | tmp2[0]=strdup("GetCapabilities"); |
---|
663 | tmp2[1]=strdup("DescribeProcess"); |
---|
664 | tmp2[2]=strdup("Execute"); |
---|
665 | int j=0; |
---|
666 | |
---|
667 | if(toto1!=NULL){ |
---|
668 | map* tmp=getMap(toto1->content,"serverAddress"); |
---|
669 | if(tmp!=NULL){ |
---|
670 | SERVICE_URL = strdup(tmp->value); |
---|
671 | } |
---|
672 | else |
---|
673 | SERVICE_URL = strdup("not_found"); |
---|
674 | } |
---|
675 | else |
---|
676 | SERVICE_URL = strdup("not_found"); |
---|
677 | |
---|
678 | for(j=0;j<3;j++){ |
---|
679 | nc1 = xmlNewNode(ns_ows, BAD_CAST "Operation"); |
---|
680 | xmlNewProp(nc1,BAD_CAST "name",BAD_CAST tmp2[j]); |
---|
681 | nc2 = xmlNewNode(ns_ows, BAD_CAST "DCP"); |
---|
682 | nc3 = xmlNewNode(ns_ows, BAD_CAST "HTTP"); |
---|
683 | nc4 = xmlNewNode(ns_ows, BAD_CAST "Get"); |
---|
684 | sprintf(tmp,"%s/%s",SERVICE_URL,service); |
---|
685 | xmlNewNsProp(nc4,ns_xlink,BAD_CAST "href",BAD_CAST tmp); |
---|
686 | xmlAddChild(nc3,nc4); |
---|
687 | if(j>0){ |
---|
688 | nc4 = xmlNewNode(ns_ows, BAD_CAST "Post"); |
---|
689 | xmlNewNsProp(nc4,ns_xlink,BAD_CAST "href",BAD_CAST tmp); |
---|
690 | xmlAddChild(nc3,nc4); |
---|
691 | } |
---|
692 | xmlAddChild(nc2,nc3); |
---|
693 | xmlAddChild(nc1,nc2); |
---|
694 | xmlAddChild(nc,nc1); |
---|
695 | } |
---|
696 | for(j=2;j>=0;j--) |
---|
697 | free(tmp2[j]); |
---|
698 | xmlAddChild(n,nc); |
---|
699 | |
---|
700 | nc = xmlNewNode(ns, BAD_CAST "ProcessOfferings"); |
---|
701 | xmlAddChild(n,nc); |
---|
702 | |
---|
703 | nc1 = xmlNewNode(ns, BAD_CAST "Languages"); |
---|
704 | nc2 = xmlNewNode(ns, BAD_CAST "Default"); |
---|
705 | nc3 = xmlNewNode(ns, BAD_CAST "Supported"); |
---|
706 | |
---|
707 | toto1=getMaps(m,"main"); |
---|
708 | if(toto1!=NULL){ |
---|
709 | map* tmp1=getMap(toto1->content,"lang"); |
---|
710 | char *toto=tmp1->value; |
---|
711 | char buff[256]; |
---|
712 | int i=0; |
---|
713 | int j=0; |
---|
714 | int dcount=0; |
---|
715 | while(toto[i]){ |
---|
716 | if(toto[i]!=',' && toto[i]!=0){ |
---|
717 | buff[j]=toto[i]; |
---|
718 | buff[j+1]=0; |
---|
719 | j++; |
---|
720 | } |
---|
721 | else{ |
---|
722 | nc4 = xmlNewNode(ns_ows, BAD_CAST "Language"); |
---|
723 | xmlAddChild(nc4,xmlNewText(BAD_CAST buff)); |
---|
724 | if(dcount==0){ |
---|
725 | xmlAddChild(nc2,nc4); |
---|
726 | xmlAddChild(nc1,nc2); |
---|
727 | dcount++; |
---|
728 | } |
---|
729 | nc4 = xmlNewNode(ns_ows, BAD_CAST "Language"); |
---|
730 | xmlAddChild(nc4,xmlNewText(BAD_CAST buff)); |
---|
731 | xmlAddChild(nc3,nc4); |
---|
732 | j=0; |
---|
733 | buff[j]=0; |
---|
734 | } |
---|
735 | i++; |
---|
736 | } |
---|
737 | if(strlen(buff)>0){ |
---|
738 | nc4 = xmlNewNode(ns_ows, BAD_CAST "Language"); |
---|
739 | xmlAddChild(nc4,xmlNewText(BAD_CAST buff)); |
---|
740 | xmlAddChild(nc3,nc4); |
---|
741 | } |
---|
742 | } |
---|
743 | xmlAddChild(nc1,nc3); |
---|
744 | xmlAddChild(n,nc1); |
---|
745 | |
---|
746 | xmlNodePtr fn=soapEnvelope(m,n); |
---|
747 | xmlDocSetRootElement(doc, fn); |
---|
748 | //xmlFreeNs(ns); |
---|
749 | free(SERVICE_URL); |
---|
750 | return nc; |
---|
751 | } |
---|
752 | |
---|
753 | void printGetCapabilitiesForProcess(maps* m,xmlNodePtr nc,service* serv){ |
---|
754 | xmlNsPtr ns,ns_ows,ns_xlink; |
---|
755 | xmlNodePtr nr,n,nc1,nc2,nc3,nc4,nc5,nc6,pseudor; |
---|
756 | /** |
---|
757 | * Initialize or get existing namspaces |
---|
758 | */ |
---|
759 | int wpsId=zooXmlAddNs(NULL,"http://www.opengis.net/wps/1.0.0","wps"); |
---|
760 | ns=usedNs[wpsId]; |
---|
761 | int owsId=zooXmlAddNs(NULL,"http://www.opengis.net/ows/1.1","ows"); |
---|
762 | ns_ows=usedNs[owsId]; |
---|
763 | int xlinkId=zooXmlAddNs(n,"http://www.w3.org/1999/xlink","xlink"); |
---|
764 | ns_xlink=usedNs[xlinkId]; |
---|
765 | |
---|
766 | int cursor=0; |
---|
767 | map* tmp1; |
---|
768 | if(serv->content!=NULL){ |
---|
769 | nc1 = xmlNewNode(ns, BAD_CAST "Process"); |
---|
770 | tmp1=getMap(serv->content,"processVersion"); |
---|
771 | if(tmp1!=NULL) |
---|
772 | xmlNewNsProp(nc1,ns,BAD_CAST "processVersion",BAD_CAST tmp1->value); |
---|
773 | printDescription(nc1,ns_ows,serv->name,serv->content); |
---|
774 | tmp1=serv->metadata; |
---|
775 | while(tmp1!=NULL){ |
---|
776 | nc2 = xmlNewNode(ns_ows, BAD_CAST "Metadata"); |
---|
777 | xmlNewNsProp(nc2,ns_xlink,BAD_CAST tmp1->name,BAD_CAST tmp1->value); |
---|
778 | xmlAddChild(nc1,nc2); |
---|
779 | tmp1=tmp1->next; |
---|
780 | } |
---|
781 | xmlAddChild(nc,nc1); |
---|
782 | } |
---|
783 | } |
---|
784 | |
---|
785 | xmlNodePtr printDescribeProcessHeader(xmlDocPtr doc,const char* service,maps* m){ |
---|
786 | |
---|
787 | xmlNsPtr ns,ns_ows,ns_xlink,ns_xsi; |
---|
788 | xmlNodePtr n,nr; |
---|
789 | xmlChar *xmlbuff; |
---|
790 | int buffersize; |
---|
791 | |
---|
792 | int wpsId=zooXmlAddNs(NULL,"http://schemas.opengis.net/wps/1.0.0","wps"); |
---|
793 | ns=usedNs[wpsId]; |
---|
794 | n = xmlNewNode(ns, BAD_CAST "ProcessDescriptions"); |
---|
795 | int owsId=zooXmlAddNs(n,"http://www.opengis.net/ows/1.1","ows"); |
---|
796 | ns_ows=usedNs[owsId]; |
---|
797 | xmlNewNs(n,BAD_CAST "http://www.opengis.net/wps/1.0.0",BAD_CAST "wps"); |
---|
798 | zooXmlAddNs(n,"http://www.w3.org/1999/xlink","xlink"); |
---|
799 | int xsiId=zooXmlAddNs(n,"http://www.w3.org/2001/XMLSchema-instance","xsi"); |
---|
800 | ns_xsi=usedNs[xsiId]; |
---|
801 | |
---|
802 | xmlNewNsProp(n,ns_xsi,BAD_CAST "schemaLocation",BAD_CAST "http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsDescribeProcess_response.xsd"); |
---|
803 | xmlNewProp(n,BAD_CAST "service",BAD_CAST "WPS"); |
---|
804 | xmlNewProp(n,BAD_CAST "version",BAD_CAST "1.0.0"); |
---|
805 | addLangAttr(n,m); |
---|
806 | |
---|
807 | xmlNodePtr fn=soapEnvelope(m,n); |
---|
808 | xmlDocSetRootElement(doc, fn); |
---|
809 | |
---|
810 | return n; |
---|
811 | } |
---|
812 | |
---|
813 | void printDescribeProcessForProcess(maps* m,xmlNodePtr nc,service* serv,int sc){ |
---|
814 | xmlNsPtr ns,ns_ows,ns_xlink,ns_xsi; |
---|
815 | xmlNodePtr nr,n,nc1,nc2,nc3,nc4,nc5,nc6,pseudor; |
---|
816 | |
---|
817 | char tmp[256]; |
---|
818 | n=nc; |
---|
819 | |
---|
820 | int wpsId=zooXmlAddNs(NULL,"http://schemas.opengis.net/wps/1.0.0","wps"); |
---|
821 | ns=usedNs[wpsId]; |
---|
822 | int owsId=zooXmlAddNs(NULL,"http://www.opengis.net/ows/1.1","ows"); |
---|
823 | ns_ows=usedNs[owsId]; |
---|
824 | int xlinkId=zooXmlAddNs(NULL,"http://www.w3.org/1999/xlink","xlink"); |
---|
825 | ns_xlink=usedNs[xlinkId]; |
---|
826 | |
---|
827 | nc = xmlNewNode(NULL, BAD_CAST "ProcessDescription"); |
---|
828 | char *tmp4[3]; |
---|
829 | tmp4[0]="processVersion"; |
---|
830 | tmp4[1]="storeSupported"; |
---|
831 | tmp4[2]="statusSupported"; |
---|
832 | int j=0; |
---|
833 | map* tmp1=NULL; |
---|
834 | for(j=0;j<3;j++){ |
---|
835 | tmp1=getMap(serv->content,tmp4[j]); |
---|
836 | if(tmp1!=NULL){ |
---|
837 | if(j==0) |
---|
838 | xmlNewNsProp(nc,ns,BAD_CAST "processVersion",BAD_CAST tmp1->value); |
---|
839 | else |
---|
840 | xmlNewProp(nc,BAD_CAST tmp4[j],BAD_CAST tmp1->value); |
---|
841 | } |
---|
842 | else{ |
---|
843 | if(j>0) |
---|
844 | xmlNewProp(nc,BAD_CAST tmp4[j],BAD_CAST "false"); |
---|
845 | } |
---|
846 | } |
---|
847 | |
---|
848 | printDescription(nc,ns_ows,serv->name,serv->content); |
---|
849 | |
---|
850 | tmp1=serv->metadata; |
---|
851 | while(tmp1!=NULL){ |
---|
852 | nc1 = xmlNewNode(ns_ows, BAD_CAST "Metadata"); |
---|
853 | xmlNewNsProp(nc1,ns_xlink,BAD_CAST tmp1->name,BAD_CAST tmp1->value); |
---|
854 | xmlAddChild(nc,nc1); |
---|
855 | tmp1=tmp1->next; |
---|
856 | } |
---|
857 | |
---|
858 | tmp1=getMap(serv->content,"Profile"); |
---|
859 | if(tmp1!=NULL){ |
---|
860 | nc1 = xmlNewNode(ns, BAD_CAST "Profile"); |
---|
861 | xmlAddChild(nc1,xmlNewText(BAD_CAST tmp1->value)); |
---|
862 | xmlAddChild(nc,nc1); |
---|
863 | } |
---|
864 | |
---|
865 | nc1 = xmlNewNode(NULL, BAD_CAST "DataInputs"); |
---|
866 | elements* e=serv->inputs; |
---|
867 | printFullDescription(e,"Input",ns_ows,nc1); |
---|
868 | xmlAddChild(nc,nc1); |
---|
869 | |
---|
870 | nc1 = xmlNewNode(NULL, BAD_CAST "ProcessOutputs"); |
---|
871 | e=serv->outputs; |
---|
872 | printFullDescription(e,"Output",ns_ows,nc1); |
---|
873 | xmlAddChild(nc,nc1); |
---|
874 | |
---|
875 | xmlAddChild(n,nc); |
---|
876 | |
---|
877 | } |
---|
878 | |
---|
879 | void printFullDescription(elements *elem,const char* type,xmlNsPtr ns_ows,xmlNodePtr nc1){ |
---|
880 | char *orderedFields[7]; |
---|
881 | orderedFields[0]="mimeType"; |
---|
882 | orderedFields[1]="encoding"; |
---|
883 | orderedFields[2]="schema"; |
---|
884 | orderedFields[3]="dataType"; |
---|
885 | orderedFields[4]="uom"; |
---|
886 | orderedFields[5]="CRS"; |
---|
887 | orderedFields[6]="value"; |
---|
888 | |
---|
889 | xmlNodePtr nc2,nc3,nc4,nc5,nc6,nc7; |
---|
890 | elements* e=elem; |
---|
891 | map* tmp1=NULL; |
---|
892 | while(e!=NULL){ |
---|
893 | int default1=0; |
---|
894 | int isAnyValue=1; |
---|
895 | nc2 = xmlNewNode(NULL, BAD_CAST type); |
---|
896 | tmp1=getMap(e->content,"minOccurs"); |
---|
897 | if(tmp1){ |
---|
898 | xmlNewProp(nc2,BAD_CAST tmp1->name,BAD_CAST tmp1->value); |
---|
899 | } |
---|
900 | tmp1=getMap(e->content,"maxOccurs"); |
---|
901 | if(tmp1){ |
---|
902 | xmlNewProp(nc2,BAD_CAST tmp1->name,BAD_CAST tmp1->value); |
---|
903 | } |
---|
904 | |
---|
905 | printDescription(nc2,ns_ows,e->name,e->content); |
---|
906 | |
---|
907 | if(strncmp(type,"Output",6)==0){ |
---|
908 | if(strncasecmp(e->format,"LITERALDATA",strlen(e->format))==0) |
---|
909 | nc3 = xmlNewNode(NULL, BAD_CAST "LiteralOutput"); |
---|
910 | else if(strncasecmp(e->format,"COMPLEXDATA",strlen(e->format))==0) |
---|
911 | nc3 = xmlNewNode(NULL, BAD_CAST "ComplexOutput"); |
---|
912 | else if(strncasecmp(e->format,"BOUNDINGBOXDATA",strlen(e->format))==0) |
---|
913 | nc3 = xmlNewNode(NULL, BAD_CAST "BoundingBoxOutput"); |
---|
914 | else |
---|
915 | nc3 = xmlNewNode(NULL, BAD_CAST e->format); |
---|
916 | }else{ |
---|
917 | if(strncasecmp(e->format,"LITERALDATA",strlen(e->format))==0){ |
---|
918 | nc3 = xmlNewNode(NULL, BAD_CAST "LiteralData"); |
---|
919 | } |
---|
920 | else if(strncasecmp(e->format,"COMPLEXDATA",strlen(e->format))==0) |
---|
921 | nc3 = xmlNewNode(NULL, BAD_CAST "ComplexData"); |
---|
922 | else if(strncasecmp(e->format,"BOUNDINGBOXDATA",strlen(e->format))==0) |
---|
923 | nc3 = xmlNewNode(NULL, BAD_CAST "BoundingBoxData"); |
---|
924 | else |
---|
925 | nc3 = xmlNewNode(NULL, BAD_CAST e->format); |
---|
926 | } |
---|
927 | iotype* _tmp=e->defaults; |
---|
928 | int datatype=0; |
---|
929 | bool hasDefault=false; |
---|
930 | bool hasUOM=false; |
---|
931 | if(_tmp!=NULL){ |
---|
932 | if(strcmp(e->format,"LiteralOutput")==0 || |
---|
933 | strcmp(e->format,"LiteralData")==0){ |
---|
934 | datatype=1; |
---|
935 | nc4 = xmlNewNode(NULL, BAD_CAST "UOMs"); |
---|
936 | nc5 = xmlNewNode(NULL, BAD_CAST "Default"); |
---|
937 | } |
---|
938 | else if(strcmp(e->format,"BoundingBoxOutput")==0 || |
---|
939 | strcmp(e->format,"BoundingBoxData")==0){ |
---|
940 | datatype=2; |
---|
941 | //nc4 = xmlNewNode(NULL, BAD_CAST "BoundingBoxOutput"); |
---|
942 | nc5 = xmlNewNode(NULL, BAD_CAST "Default"); |
---|
943 | } |
---|
944 | else{ |
---|
945 | nc4 = xmlNewNode(NULL, BAD_CAST "Default"); |
---|
946 | nc5 = xmlNewNode(NULL, BAD_CAST "Format"); |
---|
947 | } |
---|
948 | |
---|
949 | tmp1=_tmp->content; |
---|
950 | int avcnt=0; |
---|
951 | int dcnt=0; |
---|
952 | int oI=0; |
---|
953 | for(oI=0;oI<7;oI++) |
---|
954 | if((tmp1=getMap(_tmp->content,orderedFields[oI]))!=NULL){ |
---|
955 | //while(tmp1!=NULL){ |
---|
956 | #ifdef DEBUG |
---|
957 | printf("DATATYPE DEFAULT ? %s\n",tmp1->name); |
---|
958 | #endif |
---|
959 | if(strncasecmp(tmp1->name,"DataType",8)==0){ |
---|
960 | nc6 = xmlNewNode(ns_ows, BAD_CAST "DataType"); |
---|
961 | xmlAddChild(nc6,xmlNewText(BAD_CAST tmp1->value)); |
---|
962 | char tmp[1024]; |
---|
963 | sprintf(tmp,"http://www.w3.org/TR/xmlschema-2/#%s",tmp1->value); |
---|
964 | xmlNewNsProp(nc6,ns_ows,BAD_CAST "reference",BAD_CAST tmp); |
---|
965 | xmlAddChild(nc3,nc6); |
---|
966 | tmp1=tmp1->next; |
---|
967 | datatype=1; |
---|
968 | continue; |
---|
969 | } |
---|
970 | if(strcmp(tmp1->name,"asReference")!=0 && |
---|
971 | strncasecmp(tmp1->name,"DataType",8)!=0 && |
---|
972 | strcasecmp(tmp1->name,"extension")!=0 && |
---|
973 | strcasecmp(tmp1->name,"value")!=0 && |
---|
974 | strncasecmp(tmp1->name,"AllowedValues",13)!=0){ |
---|
975 | if(datatype!=1){ |
---|
976 | char *tmp2=zCapitalize1(tmp1->name); |
---|
977 | nc6 = xmlNewNode(NULL, BAD_CAST tmp2); |
---|
978 | free(tmp2); |
---|
979 | } |
---|
980 | else{ |
---|
981 | char *tmp2=zCapitalize(tmp1->name); |
---|
982 | nc6 = xmlNewNode(ns_ows, BAD_CAST tmp2); |
---|
983 | free(tmp2); |
---|
984 | } |
---|
985 | xmlAddChild(nc6,xmlNewText(BAD_CAST tmp1->value)); |
---|
986 | xmlAddChild(nc5,nc6); |
---|
987 | hasUOM=true; |
---|
988 | }else |
---|
989 | if(strncmp(type,"Input",5)==0){ |
---|
990 | if(strcmp(tmp1->name,"value")==0){ |
---|
991 | nc7 = xmlNewNode(NULL, BAD_CAST "DefaultValue"); |
---|
992 | xmlAddChild(nc7,xmlNewText(BAD_CAST tmp1->value)); |
---|
993 | default1=1; |
---|
994 | } |
---|
995 | if(strncasecmp(tmp1->name,"AllowedValues",13)==0){ |
---|
996 | nc6 = xmlNewNode(ns_ows, BAD_CAST "AllowedValues"); |
---|
997 | fprintf(stderr,"ALLOWED VALUE %s\n",tmp1->value); |
---|
998 | char *token,*saveptr1; |
---|
999 | token=strtok_r(tmp1->value,",",&saveptr1); |
---|
1000 | while(token!=NULL){ |
---|
1001 | nc7 = xmlNewNode(ns_ows, BAD_CAST "Value"); |
---|
1002 | char *tmps=strdup(token); |
---|
1003 | tmps[strlen(tmps)]=0; |
---|
1004 | xmlAddChild(nc7,xmlNewText(BAD_CAST tmps)); |
---|
1005 | fprintf(stderr,"strgin : %s\n",tmps); |
---|
1006 | xmlAddChild(nc6,nc7); |
---|
1007 | token=strtok_r(NULL,",",&saveptr1); |
---|
1008 | } |
---|
1009 | xmlAddChild(nc3,nc6); |
---|
1010 | isAnyValue=-1; |
---|
1011 | } |
---|
1012 | hasDefault=true; |
---|
1013 | } |
---|
1014 | tmp1=tmp1->next; |
---|
1015 | if(datatype!=2){ |
---|
1016 | if(hasUOM==true){ |
---|
1017 | xmlAddChild(nc4,nc5); |
---|
1018 | xmlAddChild(nc3,nc4); |
---|
1019 | } |
---|
1020 | }else{ |
---|
1021 | xmlAddChild(nc3,nc5); |
---|
1022 | } |
---|
1023 | |
---|
1024 | if(strncmp(type,"Input",5)==0){ |
---|
1025 | if(datatype==1 && isAnyValue==1 && avcnt==0){ |
---|
1026 | xmlAddChild(nc3,xmlNewNode(ns_ows, BAD_CAST "AnyValue")); |
---|
1027 | hasDefault=true; |
---|
1028 | avcnt++; |
---|
1029 | } |
---|
1030 | if(datatype==1 && default1>0){ |
---|
1031 | xmlAddChild(nc3,nc7); |
---|
1032 | } |
---|
1033 | } |
---|
1034 | } |
---|
1035 | } |
---|
1036 | |
---|
1037 | _tmp=e->supported; |
---|
1038 | if(_tmp==NULL && (getMap(e->defaults->content,"uom")!=NULL || datatype!=1)) |
---|
1039 | _tmp=e->defaults; |
---|
1040 | |
---|
1041 | int hasSupported=-1; |
---|
1042 | while(_tmp!=NULL){ |
---|
1043 | if(hasSupported<0){ |
---|
1044 | if(datatype==0){ |
---|
1045 | nc4 = xmlNewNode(NULL, BAD_CAST "Supported"); |
---|
1046 | nc5 = xmlNewNode(NULL, BAD_CAST "Format"); |
---|
1047 | } |
---|
1048 | else |
---|
1049 | nc5 = xmlNewNode(NULL, BAD_CAST "Supported"); |
---|
1050 | hasSupported=0; |
---|
1051 | }else |
---|
1052 | if(datatype==0) |
---|
1053 | nc5 = xmlNewNode(NULL, BAD_CAST "Format"); |
---|
1054 | tmp1=_tmp->content; |
---|
1055 | int oI=0; |
---|
1056 | for(oI=0;oI<6;oI++) |
---|
1057 | if((tmp1=getMap(_tmp->content,orderedFields[oI]))!=NULL){ |
---|
1058 | #ifdef DEBUG |
---|
1059 | printf("DATATYPE SUPPORTED ? %s\n",tmp1->name); |
---|
1060 | #endif |
---|
1061 | if(strcmp(tmp1->name,"asReference")!=0 && |
---|
1062 | strcmp(tmp1->name,"DataType")!=0 && |
---|
1063 | strcasecmp(tmp1->name,"extension")!=0){ |
---|
1064 | if(datatype!=1){ |
---|
1065 | char *tmp2=zCapitalize1(tmp1->name); |
---|
1066 | nc6 = xmlNewNode(NULL, BAD_CAST tmp2); |
---|
1067 | free(tmp2); |
---|
1068 | } |
---|
1069 | else{ |
---|
1070 | char *tmp2=zCapitalize(tmp1->name); |
---|
1071 | nc6 = xmlNewNode(ns_ows, BAD_CAST tmp2); |
---|
1072 | free(tmp2); |
---|
1073 | } |
---|
1074 | if(datatype==2){ |
---|
1075 | char *tmpv,*tmps; |
---|
1076 | tmps=strtok_r(tmp1->value,",",&tmpv); |
---|
1077 | while(tmps){ |
---|
1078 | xmlAddChild(nc6,xmlNewText(BAD_CAST tmps)); |
---|
1079 | xmlAddChild(nc5,nc6); |
---|
1080 | tmps=strtok_r(NULL,",",&tmpv); |
---|
1081 | if(tmps){ |
---|
1082 | char *tmp2=zCapitalize1(tmp1->name); |
---|
1083 | nc6 = xmlNewNode(NULL, BAD_CAST tmp2); |
---|
1084 | free(tmp2); |
---|
1085 | } |
---|
1086 | } |
---|
1087 | } |
---|
1088 | else{ |
---|
1089 | xmlAddChild(nc6,xmlNewText(BAD_CAST tmp1->value)); |
---|
1090 | xmlAddChild(nc5,nc6); |
---|
1091 | } |
---|
1092 | } |
---|
1093 | tmp1=tmp1->next; |
---|
1094 | } |
---|
1095 | if(hasSupported<=0){ |
---|
1096 | if(datatype!=2){ |
---|
1097 | xmlAddChild(nc4,nc5); |
---|
1098 | xmlAddChild(nc3,nc4); |
---|
1099 | }else |
---|
1100 | xmlAddChild(nc3,nc5); |
---|
1101 | hasSupported=1; |
---|
1102 | } |
---|
1103 | else |
---|
1104 | if(datatype!=2){ |
---|
1105 | xmlAddChild(nc4,nc5); |
---|
1106 | } |
---|
1107 | else |
---|
1108 | xmlAddChild(nc3,nc5); |
---|
1109 | _tmp=_tmp->next; |
---|
1110 | } |
---|
1111 | xmlAddChild(nc2,nc3); |
---|
1112 | |
---|
1113 | if(datatype!=2 && hasUOM==true){ |
---|
1114 | xmlAddChild(nc3,nc4); |
---|
1115 | xmlAddChild(nc2,nc3); |
---|
1116 | }else if(datatype!=2){ |
---|
1117 | if(hasDefault!=true && strncmp(type,"Input",5)==0) |
---|
1118 | xmlAddChild(nc3,xmlNewNode(ns_ows, BAD_CAST "AnyValue")); |
---|
1119 | } |
---|
1120 | |
---|
1121 | xmlAddChild(nc1,nc2); |
---|
1122 | |
---|
1123 | e=e->next; |
---|
1124 | } |
---|
1125 | } |
---|
1126 | |
---|
1127 | void printProcessResponse(maps* m,map* request, int pid,service* serv,const char* service,int status,maps* inputs,maps* outputs){ |
---|
1128 | xmlNsPtr ns,ns1,ns_ows,ns_xlink,ns_xsi; |
---|
1129 | xmlNodePtr nr,n,nc,nc1,nc2,nc3,pseudor; |
---|
1130 | xmlDocPtr doc; |
---|
1131 | xmlChar *xmlbuff; |
---|
1132 | int buffersize; |
---|
1133 | time_t time1; |
---|
1134 | time(&time1); |
---|
1135 | nr=NULL; |
---|
1136 | /** |
---|
1137 | * Create the document and its temporary root. |
---|
1138 | */ |
---|
1139 | doc = xmlNewDoc(BAD_CAST "1.0"); |
---|
1140 | int wpsId=zooXmlAddNs(NULL,"http://www.opengis.net/wps/1.0.0","wps"); |
---|
1141 | ns=usedNs[wpsId]; |
---|
1142 | |
---|
1143 | n = xmlNewNode(ns, BAD_CAST "ExecuteResponse"); |
---|
1144 | xmlNewNs(n,BAD_CAST "http://www.opengis.net/wps/1.0.0",BAD_CAST "wps"); |
---|
1145 | int owsId=zooXmlAddNs(n,"http://www.opengis.net/ows/1.1","ows"); |
---|
1146 | ns_ows=usedNs[owsId]; |
---|
1147 | int xlinkId=zooXmlAddNs(n,"http://www.w3.org/1999/xlink","xlink"); |
---|
1148 | ns_xlink=usedNs[xlinkId]; |
---|
1149 | int xsiId=zooXmlAddNs(n,"http://www.w3.org/2001/XMLSchema-instance","xsi"); |
---|
1150 | ns_xsi=usedNs[xsiId]; |
---|
1151 | |
---|
1152 | xmlNewNsProp(n,ns_xsi,BAD_CAST "schemaLocation",BAD_CAST "http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_response.xsd"); |
---|
1153 | |
---|
1154 | xmlNewProp(n,BAD_CAST "service",BAD_CAST "WPS"); |
---|
1155 | xmlNewProp(n,BAD_CAST "version",BAD_CAST "1.0.0"); |
---|
1156 | addLangAttr(n,m); |
---|
1157 | |
---|
1158 | char tmp[256]; |
---|
1159 | char url[1024]; |
---|
1160 | char stored_path[1024]; |
---|
1161 | memset(tmp,0,256); |
---|
1162 | memset(url,0,1024); |
---|
1163 | memset(stored_path,0,1024); |
---|
1164 | maps* tmp_maps=getMaps(m,"main"); |
---|
1165 | if(tmp_maps!=NULL){ |
---|
1166 | map* tmpm1=getMap(tmp_maps->content,"serverAddress"); |
---|
1167 | /** |
---|
1168 | * Check if the ZOO Service GetStatus is available in the local directory. |
---|
1169 | * If yes, then it uses a reference to an URL which the client can access |
---|
1170 | * to get information on the status of a running Service (using the |
---|
1171 | * percentCompleted attribute). |
---|
1172 | * Else fallback to the initial method using the xml file to write in ... |
---|
1173 | */ |
---|
1174 | char ntmp[1024]; |
---|
1175 | #ifndef WIN32 |
---|
1176 | getcwd(ntmp,1024); |
---|
1177 | #else |
---|
1178 | _getcwd(ntmp,1024); |
---|
1179 | #endif |
---|
1180 | struct stat myFileInfo; |
---|
1181 | int statRes; |
---|
1182 | char file_path[1024]; |
---|
1183 | sprintf(file_path,"%s/GetStatus.zcfg",ntmp); |
---|
1184 | statRes=stat(file_path,&myFileInfo); |
---|
1185 | if(statRes==0){ |
---|
1186 | char currentSid[128]; |
---|
1187 | map* tmpm=getMap(tmp_maps->content,"rewriteUrl"); |
---|
1188 | map *tmp_lenv=NULL; |
---|
1189 | tmp_lenv=getMapFromMaps(m,"lenv","sid"); |
---|
1190 | if(tmp_lenv==NULL) |
---|
1191 | sprintf(currentSid,"%i",pid); |
---|
1192 | else |
---|
1193 | sprintf(currentSid,"%s",tmp_lenv->value); |
---|
1194 | if(tmpm==NULL || strcasecmp(tmpm->value,"false")==0){ |
---|
1195 | sprintf(url,"%s?request=Execute&service=WPS&version=1.0.0&Identifier=GetStatus&DataInputs=sid=%s&RawDataOutput=Result",tmpm1->value,currentSid); |
---|
1196 | }else{ |
---|
1197 | if(strlen(tmpm->value)>0) |
---|
1198 | if(strcasecmp(tmpm->value,"true")!=0) |
---|
1199 | sprintf(url,"%s/%s/GetStatus/%s",tmpm1->value,tmpm->value,currentSid); |
---|
1200 | else |
---|
1201 | sprintf(url,"%s/GetStatus/%s",tmpm1->value,currentSid); |
---|
1202 | else |
---|
1203 | sprintf(url,"%s/?request=Execute&service=WPS&version=1.0.0&Identifier=GetStatus&DataInputs=sid=%s&RawDataOutput=Result",tmpm1->value,currentSid); |
---|
1204 | } |
---|
1205 | }else{ |
---|
1206 | map* tmpm2=getMap(tmp_maps->content,"tmpUrl"); |
---|
1207 | if(tmpm1!=NULL && tmpm2!=NULL){ |
---|
1208 | if(strncasecmp(tmpm2->value,"http://",7)==0){ |
---|
1209 | sprintf(url,"%s/%s_%i.xml",tmpm2->value,service,pid); |
---|
1210 | }else |
---|
1211 | sprintf(url,"%s/%s/%s_%i.xml",tmpm1->value,tmpm2->value,service,pid); |
---|
1212 | } |
---|
1213 | } |
---|
1214 | if(tmpm1!=NULL) |
---|
1215 | sprintf(tmp,"%s",tmpm1->value); |
---|
1216 | tmpm1=getMapFromMaps(m,"main","TmpPath"); |
---|
1217 | sprintf(stored_path,"%s/%s_%i.xml",tmpm1->value,service,pid); |
---|
1218 | } |
---|
1219 | |
---|
1220 | |
---|
1221 | |
---|
1222 | xmlNewProp(n,BAD_CAST "serviceInstance",BAD_CAST tmp); |
---|
1223 | map* test=getMap(request,"storeExecuteResponse"); |
---|
1224 | bool hasStoredExecuteResponse=false; |
---|
1225 | if(test!=NULL && strcasecmp(test->value,"true")==0){ |
---|
1226 | xmlNewProp(n,BAD_CAST "statusLocation",BAD_CAST url); |
---|
1227 | hasStoredExecuteResponse=true; |
---|
1228 | } |
---|
1229 | |
---|
1230 | nc = xmlNewNode(ns, BAD_CAST "Process"); |
---|
1231 | map* tmp2=getMap(serv->content,"processVersion"); |
---|
1232 | |
---|
1233 | if(tmp2!=NULL) |
---|
1234 | xmlNewNsProp(nc,ns,BAD_CAST "processVersion",BAD_CAST tmp2->value); |
---|
1235 | |
---|
1236 | printDescription(nc,ns_ows,serv->name,serv->content); |
---|
1237 | //fflush(stderr); |
---|
1238 | |
---|
1239 | xmlAddChild(n,nc); |
---|
1240 | |
---|
1241 | nc = xmlNewNode(ns, BAD_CAST "Status"); |
---|
1242 | const struct tm *tm; |
---|
1243 | size_t len; |
---|
1244 | time_t now; |
---|
1245 | char *tmp1; |
---|
1246 | map *tmpStatus; |
---|
1247 | |
---|
1248 | now = time ( NULL ); |
---|
1249 | tm = localtime ( &now ); |
---|
1250 | |
---|
1251 | tmp1 = (char*)malloc((TIME_SIZE+1)*sizeof(char)); |
---|
1252 | |
---|
1253 | len = strftime ( tmp1, TIME_SIZE, "%Y-%m-%dT%I:%M:%SZ", tm ); |
---|
1254 | |
---|
1255 | xmlNewProp(nc,BAD_CAST "creationTime",BAD_CAST tmp1); |
---|
1256 | |
---|
1257 | char sMsg[2048]; |
---|
1258 | switch(status){ |
---|
1259 | case SERVICE_SUCCEEDED: |
---|
1260 | nc1 = xmlNewNode(ns, BAD_CAST "ProcessSucceeded"); |
---|
1261 | sprintf(sMsg,_("Service \"%s\" run successfully."),serv->name); |
---|
1262 | nc3=xmlNewText(BAD_CAST sMsg); |
---|
1263 | xmlAddChild(nc1,nc3); |
---|
1264 | break; |
---|
1265 | case SERVICE_STARTED: |
---|
1266 | nc1 = xmlNewNode(ns, BAD_CAST "ProcessStarted"); |
---|
1267 | tmpStatus=getMapFromMaps(m,"lenv","status"); |
---|
1268 | xmlNewProp(nc1,BAD_CAST "percentCompleted",BAD_CAST tmpStatus->value); |
---|
1269 | sprintf(sMsg,_("ZOO Service \"%s\" is currently running. Please, reload this document to get the up-to-date status of the Service."),serv->name); |
---|
1270 | nc3=xmlNewText(BAD_CAST sMsg); |
---|
1271 | xmlAddChild(nc1,nc3); |
---|
1272 | break; |
---|
1273 | case SERVICE_ACCEPTED: |
---|
1274 | nc1 = xmlNewNode(ns, BAD_CAST "ProcessAccepted"); |
---|
1275 | sprintf(sMsg,_("Service \"%s\" was accepted by the ZOO Kernel and it run as a background task. Please consult the statusLocation attribtue providen in this document to get the up-to-date document."),serv->name); |
---|
1276 | nc3=xmlNewText(BAD_CAST sMsg); |
---|
1277 | xmlAddChild(nc1,nc3); |
---|
1278 | break; |
---|
1279 | case SERVICE_FAILED: |
---|
1280 | nc1 = xmlNewNode(ns, BAD_CAST "ProcessFailed"); |
---|
1281 | map *errorMap; |
---|
1282 | map *te; |
---|
1283 | te=getMapFromMaps(m,"lenv","code"); |
---|
1284 | if(te!=NULL) |
---|
1285 | errorMap=createMap("code",te->value); |
---|
1286 | else |
---|
1287 | errorMap=createMap("code","NoApplicableCode"); |
---|
1288 | te=getMapFromMaps(m,"lenv","message"); |
---|
1289 | if(te!=NULL) |
---|
1290 | addToMap(errorMap,"text",_ss(te->value)); |
---|
1291 | else |
---|
1292 | addToMap(errorMap,"text",_("No more information available")); |
---|
1293 | nc3=createExceptionReportNode(m,errorMap,0); |
---|
1294 | freeMap(&errorMap); |
---|
1295 | free(errorMap); |
---|
1296 | xmlAddChild(nc1,nc3); |
---|
1297 | break; |
---|
1298 | default : |
---|
1299 | printf(_("error code not know : %i\n"),status); |
---|
1300 | //exit(1); |
---|
1301 | break; |
---|
1302 | } |
---|
1303 | xmlAddChild(nc,nc1); |
---|
1304 | xmlAddChild(n,nc); |
---|
1305 | free(tmp1); |
---|
1306 | |
---|
1307 | #ifdef DEBUG |
---|
1308 | fprintf(stderr,"printProcessResponse 1 161\n"); |
---|
1309 | #endif |
---|
1310 | |
---|
1311 | map* lineage=getMap(request,"lineage"); |
---|
1312 | if(lineage!=NULL && strcasecmp(lineage->value,"true")==0){ |
---|
1313 | nc = xmlNewNode(ns, BAD_CAST "DataInputs"); |
---|
1314 | int i; |
---|
1315 | maps* mcursor=inputs; |
---|
1316 | elements* scursor=NULL; |
---|
1317 | while(mcursor!=NULL /*&& scursor!=NULL*/){ |
---|
1318 | scursor=getElements(serv->inputs,mcursor->name); |
---|
1319 | printIOType(doc,nc,ns,ns_ows,ns_xlink,scursor,mcursor,"Input"); |
---|
1320 | mcursor=mcursor->next; |
---|
1321 | } |
---|
1322 | xmlAddChild(n,nc); |
---|
1323 | |
---|
1324 | #ifdef DEBUG |
---|
1325 | fprintf(stderr,"printProcessResponse 1 177\n"); |
---|
1326 | #endif |
---|
1327 | |
---|
1328 | nc = xmlNewNode(ns, BAD_CAST "OutputDefinitions"); |
---|
1329 | mcursor=outputs; |
---|
1330 | scursor=NULL; |
---|
1331 | while(mcursor!=NULL){ |
---|
1332 | scursor=getElements(serv->outputs,mcursor->name); |
---|
1333 | printOutputDefinitions1(doc,nc,ns,ns_ows,scursor,mcursor,"Output"); |
---|
1334 | mcursor=mcursor->next; |
---|
1335 | } |
---|
1336 | xmlAddChild(n,nc); |
---|
1337 | } |
---|
1338 | #ifdef DEBUG |
---|
1339 | fprintf(stderr,"printProcessResponse 1 190\n"); |
---|
1340 | #endif |
---|
1341 | |
---|
1342 | /** |
---|
1343 | * Display the process output only when requested ! |
---|
1344 | */ |
---|
1345 | if(status==SERVICE_SUCCEEDED){ |
---|
1346 | nc = xmlNewNode(ns, BAD_CAST "ProcessOutputs"); |
---|
1347 | maps* mcursor=outputs; |
---|
1348 | elements* scursor=serv->outputs; |
---|
1349 | while(mcursor!=NULL){ |
---|
1350 | scursor=getElements(serv->outputs,mcursor->name); |
---|
1351 | if(scursor!=NULL){ |
---|
1352 | printIOType(doc,nc,ns,ns_ows,ns_xlink,scursor,mcursor,"Output"); |
---|
1353 | } |
---|
1354 | mcursor=mcursor->next; |
---|
1355 | } |
---|
1356 | xmlAddChild(n,nc); |
---|
1357 | } |
---|
1358 | |
---|
1359 | #ifdef DEBUG |
---|
1360 | fprintf(stderr,"printProcessResponse 1 202\n"); |
---|
1361 | #endif |
---|
1362 | nr=soapEnvelope(m,n); |
---|
1363 | xmlDocSetRootElement(doc, nr); |
---|
1364 | |
---|
1365 | if(hasStoredExecuteResponse==true){ |
---|
1366 | /* We need to write the ExecuteResponse Document somewhere */ |
---|
1367 | FILE* output=fopen(stored_path,"w"); |
---|
1368 | xmlChar *xmlbuff; |
---|
1369 | int buffersize; |
---|
1370 | xmlDocDumpFormatMemoryEnc(doc, &xmlbuff, &buffersize, "UTF-8", 1); |
---|
1371 | fwrite(xmlbuff,1,xmlStrlen(xmlbuff)*sizeof(char),output); |
---|
1372 | xmlFree(xmlbuff); |
---|
1373 | fclose(output); |
---|
1374 | } |
---|
1375 | printDocument(m,doc,pid); |
---|
1376 | |
---|
1377 | xmlCleanupParser(); |
---|
1378 | zooXmlCleanupNs(); |
---|
1379 | } |
---|
1380 | |
---|
1381 | |
---|
1382 | void printDocument(maps* m, xmlDocPtr doc,int pid){ |
---|
1383 | char *encoding=getEncoding(m); |
---|
1384 | if(pid==getpid()){ |
---|
1385 | printf("Content-Type: text/xml; charset=%s\r\nStatus: 200 OK\r\n\r\n",encoding); |
---|
1386 | } |
---|
1387 | fflush(stdout); |
---|
1388 | xmlChar *xmlbuff; |
---|
1389 | int buffersize; |
---|
1390 | /* |
---|
1391 | * Dump the document to a buffer and print it on stdout |
---|
1392 | * for demonstration purposes. |
---|
1393 | */ |
---|
1394 | xmlDocDumpFormatMemoryEnc(doc, &xmlbuff, &buffersize, encoding, 1); |
---|
1395 | printf("%s",xmlbuff); |
---|
1396 | fflush(stdout); |
---|
1397 | /* |
---|
1398 | * Free associated memory. |
---|
1399 | */ |
---|
1400 | xmlFree(xmlbuff); |
---|
1401 | xmlFreeDoc(doc); |
---|
1402 | xmlCleanupParser(); |
---|
1403 | zooXmlCleanupNs(); |
---|
1404 | } |
---|
1405 | |
---|
1406 | void printOutputDefinitions1(xmlDocPtr doc,xmlNodePtr nc,xmlNsPtr ns_wps,xmlNsPtr ns_ows,elements* e,maps* m,const char* type){ |
---|
1407 | xmlNodePtr nc1; |
---|
1408 | nc1=xmlNewNode(ns_wps, BAD_CAST type); |
---|
1409 | map *tmp=NULL; |
---|
1410 | if(e!=NULL && e->defaults!=NULL) |
---|
1411 | tmp=e->defaults->content; |
---|
1412 | else{ |
---|
1413 | /* |
---|
1414 | dumpElements(e); |
---|
1415 | */ |
---|
1416 | return; |
---|
1417 | } |
---|
1418 | while(tmp!=NULL){ |
---|
1419 | if(strncasecmp(tmp->name,"MIMETYPE",strlen(tmp->name))==0 |
---|
1420 | || strncasecmp(tmp->name,"ENCODING",strlen(tmp->name))==0 |
---|
1421 | || strncasecmp(tmp->name,"SCHEMA",strlen(tmp->name))==0 |
---|
1422 | || strncasecmp(tmp->name,"UOM",strlen(tmp->name))==0) |
---|
1423 | xmlNewProp(nc1,BAD_CAST tmp->name,BAD_CAST tmp->value); |
---|
1424 | tmp=tmp->next; |
---|
1425 | } |
---|
1426 | tmp=getMap(e->defaults->content,"asReference"); |
---|
1427 | if(tmp==NULL) |
---|
1428 | xmlNewProp(nc1,BAD_CAST "asReference",BAD_CAST "false"); |
---|
1429 | |
---|
1430 | tmp=e->content; |
---|
1431 | |
---|
1432 | printDescription(nc1,ns_ows,m->name,e->content); |
---|
1433 | |
---|
1434 | xmlAddChild(nc,nc1); |
---|
1435 | |
---|
1436 | } |
---|
1437 | |
---|
1438 | void printOutputDefinitions(xmlDocPtr doc,xmlNodePtr nc,xmlNsPtr ns_wps,xmlNsPtr ns_ows,elements* e,map* m,const char* type){ |
---|
1439 | xmlNodePtr nc1,nc2,nc3; |
---|
1440 | nc1=xmlNewNode(ns_wps, BAD_CAST type); |
---|
1441 | map *tmp=NULL; |
---|
1442 | if(e!=NULL && e->defaults!=NULL) |
---|
1443 | tmp=e->defaults->content; |
---|
1444 | else{ |
---|
1445 | /* |
---|
1446 | dumpElements(e); |
---|
1447 | */ |
---|
1448 | return; |
---|
1449 | } |
---|
1450 | while(tmp!=NULL){ |
---|
1451 | xmlNewProp(nc1,BAD_CAST tmp->name,BAD_CAST tmp->value); |
---|
1452 | tmp=tmp->next; |
---|
1453 | } |
---|
1454 | tmp=getMap(e->defaults->content,"asReference"); |
---|
1455 | if(tmp==NULL) |
---|
1456 | xmlNewProp(nc1,BAD_CAST "asReference",BAD_CAST "false"); |
---|
1457 | |
---|
1458 | tmp=e->content; |
---|
1459 | |
---|
1460 | printDescription(nc1,ns_ows,m->name,e->content); |
---|
1461 | |
---|
1462 | xmlAddChild(nc,nc1); |
---|
1463 | |
---|
1464 | } |
---|
1465 | |
---|
1466 | void printIOType(xmlDocPtr doc,xmlNodePtr nc,xmlNsPtr ns_wps,xmlNsPtr ns_ows,xmlNsPtr ns_xlink,elements* e,maps* m,const char* type){ |
---|
1467 | xmlNodePtr nc1,nc2,nc3; |
---|
1468 | nc1=xmlNewNode(ns_wps, BAD_CAST type); |
---|
1469 | map *tmp=NULL; |
---|
1470 | if(e!=NULL) |
---|
1471 | tmp=e->content; |
---|
1472 | else |
---|
1473 | tmp=m->content; |
---|
1474 | #ifdef DEBUG |
---|
1475 | dumpMap(tmp); |
---|
1476 | dumpElements(e); |
---|
1477 | #endif |
---|
1478 | nc2=xmlNewNode(ns_ows, BAD_CAST "Identifier"); |
---|
1479 | if(e!=NULL) |
---|
1480 | nc3=xmlNewText(BAD_CAST e->name); |
---|
1481 | else |
---|
1482 | nc3=xmlNewText(BAD_CAST m->name); |
---|
1483 | xmlAddChild(nc2,nc3); |
---|
1484 | xmlAddChild(nc1,nc2); |
---|
1485 | xmlAddChild(nc,nc1); |
---|
1486 | // Extract Title required to be first element in the ZCFG file ! |
---|
1487 | bool isTitle=TRUE; |
---|
1488 | if(e!=NULL) |
---|
1489 | tmp=getMap(e->content,"Title"); |
---|
1490 | else |
---|
1491 | tmp=getMap(m->content,"Title"); |
---|
1492 | |
---|
1493 | if(tmp!=NULL){ |
---|
1494 | nc2=xmlNewNode(ns_ows, BAD_CAST tmp->name); |
---|
1495 | nc3=xmlNewText(BAD_CAST _ss(tmp->value)); |
---|
1496 | xmlAddChild(nc2,nc3); |
---|
1497 | xmlAddChild(nc1,nc2); |
---|
1498 | } |
---|
1499 | |
---|
1500 | if(e!=NULL) |
---|
1501 | tmp=getMap(e->content,"Abstract"); |
---|
1502 | else |
---|
1503 | tmp=getMap(m->content,"Abstract"); |
---|
1504 | if(tmp!=NULL){ |
---|
1505 | nc2=xmlNewNode(ns_ows, BAD_CAST tmp->name); |
---|
1506 | nc3=xmlNewText(BAD_CAST _ss(tmp->value)); |
---|
1507 | xmlAddChild(nc2,nc3); |
---|
1508 | xmlAddChild(nc1,nc2); |
---|
1509 | xmlAddChild(nc,nc1); |
---|
1510 | } |
---|
1511 | |
---|
1512 | /** |
---|
1513 | * IO type Reference or full Data ? |
---|
1514 | */ |
---|
1515 | #ifdef DEBUG |
---|
1516 | fprintf(stderr,"FORMAT %s %s\n",e->format,e->format); |
---|
1517 | #endif |
---|
1518 | map *tmpMap=getMap(m->content,"Reference"); |
---|
1519 | if(tmpMap==NULL){ |
---|
1520 | nc2=xmlNewNode(ns_wps, BAD_CAST "Data"); |
---|
1521 | if(e!=NULL){ |
---|
1522 | if(strncasecmp(e->format,"LiteralOutput",strlen(e->format))==0) |
---|
1523 | nc3=xmlNewNode(ns_wps, BAD_CAST "LiteralData"); |
---|
1524 | else |
---|
1525 | if(strncasecmp(e->format,"ComplexOutput",strlen(e->format))==0) |
---|
1526 | nc3=xmlNewNode(ns_wps, BAD_CAST "ComplexData"); |
---|
1527 | else if(strncasecmp(e->format,"BoundingBoxOutput",strlen(e->format))==0) |
---|
1528 | nc3=xmlNewNode(ns_wps, BAD_CAST "BoundingBoxData"); |
---|
1529 | else |
---|
1530 | nc3=xmlNewNode(ns_wps, BAD_CAST e->format); |
---|
1531 | } |
---|
1532 | else{ |
---|
1533 | map* tmpV=getMapFromMaps(m,"format","value"); |
---|
1534 | if(tmpV!=NULL) |
---|
1535 | nc3=xmlNewNode(ns_wps, BAD_CAST tmpV->value); |
---|
1536 | else |
---|
1537 | nc3=xmlNewNode(ns_wps, BAD_CAST "LitteralData"); |
---|
1538 | } |
---|
1539 | tmp=m->content; |
---|
1540 | #ifdef USE_MS |
---|
1541 | map* testMap=getMap(tmp,"requestedMimeType"); |
---|
1542 | #endif |
---|
1543 | while(tmp!=NULL){ |
---|
1544 | if(strcasecmp(tmp->name,"mimeType")==0 || |
---|
1545 | strcasecmp(tmp->name,"encoding")==0 || |
---|
1546 | strcasecmp(tmp->name,"schema")==0 || |
---|
1547 | strcasecmp(tmp->name,"datatype")==0 || |
---|
1548 | strcasecmp(tmp->name,"uom")==0) |
---|
1549 | #ifdef USE_MS |
---|
1550 | if(testMap==NULL || (testMap!=NULL && strncasecmp(testMap->value,"text/xml",8)==0)){ |
---|
1551 | #endif |
---|
1552 | xmlNewProp(nc3,BAD_CAST tmp->name,BAD_CAST tmp->value); |
---|
1553 | #ifdef USE_MS |
---|
1554 | } |
---|
1555 | else |
---|
1556 | if(strcasecmp(tmp->name,"mimeType")==0) |
---|
1557 | if(testMap!=NULL) |
---|
1558 | xmlNewProp(nc3,BAD_CAST tmp->name,BAD_CAST testMap->value); |
---|
1559 | else |
---|
1560 | xmlNewProp(nc3,BAD_CAST tmp->name,BAD_CAST tmp->value); |
---|
1561 | #endif |
---|
1562 | tmp=tmp->next; |
---|
1563 | xmlAddChild(nc2,nc3); |
---|
1564 | } |
---|
1565 | if(e!=NULL && e->format!=NULL && strcasecmp(e->format,"BoundingBoxData")==0){ |
---|
1566 | map* bb=getMap(m->content,"value"); |
---|
1567 | if(bb!=NULL){ |
---|
1568 | map* tmpRes=parseBoundingBox(bb->value); |
---|
1569 | printBoundingBox(ns_ows,nc3,tmpRes); |
---|
1570 | freeMap(&tmpRes); |
---|
1571 | free(tmpRes); |
---|
1572 | } |
---|
1573 | }else{ |
---|
1574 | if(e!=NULL) |
---|
1575 | tmp=getMap(e->defaults->content,"mimeType"); |
---|
1576 | else |
---|
1577 | tmp=NULL; |
---|
1578 | #ifdef USE_MS |
---|
1579 | /** |
---|
1580 | * In case of OGC WebServices output use, as the data was requested |
---|
1581 | * with asReference=false we have to download the resulting OWS request |
---|
1582 | * stored in the Reference map value. |
---|
1583 | */ |
---|
1584 | map* testMap=getMap(m->content,"requestedMimeType"); |
---|
1585 | if(testMap!=NULL){ |
---|
1586 | HINTERNET hInternet; |
---|
1587 | hInternet=InternetOpen( |
---|
1588 | #ifndef WIN32 |
---|
1589 | (LPCTSTR) |
---|
1590 | #endif |
---|
1591 | "ZooWPSClient\0", |
---|
1592 | INTERNET_OPEN_TYPE_PRECONFIG, |
---|
1593 | NULL,NULL, 0); |
---|
1594 | testMap=getMap(m->content,"Reference"); |
---|
1595 | loadRemoteFile(m,m->content,hInternet,testMap->value); |
---|
1596 | InternetCloseHandle(hInternet); |
---|
1597 | } |
---|
1598 | #endif |
---|
1599 | map* tmp1=getMap(m->content,"encoding"); |
---|
1600 | map* tmp2=getMap(m->content,"mimeType"); |
---|
1601 | map* toto=getMap(m->content,"value"); |
---|
1602 | if((tmp1!=NULL && strncmp(tmp1->value,"base64",6)==0) |
---|
1603 | || (tmp2!=NULL && (strncmp(tmp2->value,"image/",6)==0 || |
---|
1604 | (strncmp(tmp2->value,"application/",12)==0) && |
---|
1605 | strncmp(tmp2->value,"application/json",16)!=0&& |
---|
1606 | strncmp(tmp2->value,"application/vnd.google-earth.kml",32)!=0) |
---|
1607 | )) { |
---|
1608 | map* rs=getMap(m->content,"size"); |
---|
1609 | bool isSized=true; |
---|
1610 | if(rs==NULL){ |
---|
1611 | char tmp1[1024]; |
---|
1612 | sprintf(tmp1,"%d",strlen(toto->value)); |
---|
1613 | rs=createMap("size",tmp1); |
---|
1614 | isSized=false; |
---|
1615 | } |
---|
1616 | |
---|
1617 | xmlAddChild(nc3,xmlNewText(BAD_CAST base64(toto->value, atoi(rs->value)))); |
---|
1618 | if(!isSized){ |
---|
1619 | freeMap(&rs); |
---|
1620 | free(rs); |
---|
1621 | } |
---|
1622 | } |
---|
1623 | else if(tmp2!=NULL){ |
---|
1624 | if(strncmp(tmp2->value,"text/js",7)==0 || |
---|
1625 | strncmp(tmp2->value,"application/json",16)==0) |
---|
1626 | xmlAddChild(nc3,xmlNewCDataBlock(doc,BAD_CAST toto->value,strlen(toto->value))); |
---|
1627 | else{ |
---|
1628 | if(strncmp(tmp2->value,"text/xml",8)==0 || |
---|
1629 | strncmp(tmp2->value,"application/vnd.google-earth.kml",32)==0){ |
---|
1630 | xmlDocPtr doc = |
---|
1631 | xmlParseMemory(toto->value,strlen(toto->value)); |
---|
1632 | xmlNodePtr ir = xmlDocGetRootElement(doc); |
---|
1633 | xmlAddChild(nc3,ir); |
---|
1634 | } |
---|
1635 | else |
---|
1636 | xmlAddChild(nc3,xmlNewText(BAD_CAST toto->value)); |
---|
1637 | } |
---|
1638 | xmlAddChild(nc2,nc3); |
---|
1639 | } |
---|
1640 | else{ |
---|
1641 | xmlAddChild(nc3,xmlNewText(BAD_CAST toto->value)); |
---|
1642 | } |
---|
1643 | } |
---|
1644 | } |
---|
1645 | else{ |
---|
1646 | tmpMap=getMap(m->content,"Reference"); |
---|
1647 | nc3=nc2=xmlNewNode(ns_wps, BAD_CAST "Reference"); |
---|
1648 | if(strcasecmp(type,"Output")==0) |
---|
1649 | xmlNewProp(nc3,BAD_CAST "href",BAD_CAST tmpMap->value); |
---|
1650 | else |
---|
1651 | xmlNewNsProp(nc3,ns_xlink,BAD_CAST "href",BAD_CAST tmpMap->value); |
---|
1652 | tmp=m->content; |
---|
1653 | #ifdef USE_MS |
---|
1654 | map* testMap=getMap(tmp,"requestedMimeType"); |
---|
1655 | #endif |
---|
1656 | while(tmp!=NULL){ |
---|
1657 | if(strcasecmp(tmp->name,"mimeType")==0 || |
---|
1658 | strcasecmp(tmp->name,"encoding")==0 || |
---|
1659 | strcasecmp(tmp->name,"schema")==0 || |
---|
1660 | strcasecmp(tmp->name,"datatype")==0 || |
---|
1661 | strcasecmp(tmp->name,"uom")==0) |
---|
1662 | #ifdef USE_MS |
---|
1663 | if(testMap!=NULL && strncasecmp(testMap->value,"text/xml",8)!=0){ |
---|
1664 | if(strcasecmp(tmp->name,"mimeType")==0) |
---|
1665 | xmlNewProp(nc3,BAD_CAST tmp->name,BAD_CAST testMap->value); |
---|
1666 | } |
---|
1667 | else |
---|
1668 | #endif |
---|
1669 | xmlNewProp(nc3,BAD_CAST tmp->name,BAD_CAST tmp->value); |
---|
1670 | tmp=tmp->next; |
---|
1671 | xmlAddChild(nc2,nc3); |
---|
1672 | } |
---|
1673 | } |
---|
1674 | xmlAddChild(nc1,nc2); |
---|
1675 | xmlAddChild(nc,nc1); |
---|
1676 | |
---|
1677 | } |
---|
1678 | |
---|
1679 | void printDescription(xmlNodePtr root,xmlNsPtr ns_ows,const char* identifier,map* amap){ |
---|
1680 | xmlNodePtr nc2 = xmlNewNode(ns_ows, BAD_CAST "Identifier"); |
---|
1681 | xmlAddChild(nc2,xmlNewText(BAD_CAST identifier)); |
---|
1682 | xmlAddChild(root,nc2); |
---|
1683 | map* tmp=amap; |
---|
1684 | char *tmp2[2]; |
---|
1685 | tmp2[0]="Title"; |
---|
1686 | tmp2[1]="Abstract"; |
---|
1687 | int j=0; |
---|
1688 | for(j=0;j<2;j++){ |
---|
1689 | map* tmp1=getMap(tmp,tmp2[j]); |
---|
1690 | if(tmp1!=NULL){ |
---|
1691 | nc2 = xmlNewNode(ns_ows, BAD_CAST tmp2[j]); |
---|
1692 | xmlAddChild(nc2,xmlNewText(BAD_CAST _ss(tmp1->value))); |
---|
1693 | xmlAddChild(root,nc2); |
---|
1694 | } |
---|
1695 | } |
---|
1696 | } |
---|
1697 | |
---|
1698 | char* getEncoding(maps* m){ |
---|
1699 | if(m!=NULL){ |
---|
1700 | map* tmp=getMap(m->content,"encoding"); |
---|
1701 | if(tmp!=NULL){ |
---|
1702 | return tmp->value; |
---|
1703 | } |
---|
1704 | else |
---|
1705 | return "UTF-8"; |
---|
1706 | } |
---|
1707 | else |
---|
1708 | return "UTF-8"; |
---|
1709 | } |
---|
1710 | |
---|
1711 | char* getVersion(maps* m){ |
---|
1712 | if(m!=NULL){ |
---|
1713 | map* tmp=getMap(m->content,"version"); |
---|
1714 | if(tmp!=NULL){ |
---|
1715 | return tmp->value; |
---|
1716 | } |
---|
1717 | else |
---|
1718 | return "1.0.0"; |
---|
1719 | } |
---|
1720 | else |
---|
1721 | return "1.0.0"; |
---|
1722 | } |
---|
1723 | |
---|
1724 | void printExceptionReportResponse(maps* m,map* s){ |
---|
1725 | int buffersize; |
---|
1726 | xmlDocPtr doc; |
---|
1727 | xmlChar *xmlbuff; |
---|
1728 | xmlNodePtr n; |
---|
1729 | |
---|
1730 | doc = xmlNewDoc(BAD_CAST "1.0"); |
---|
1731 | maps* tmpMap=getMaps(m,"main"); |
---|
1732 | char *encoding=getEncoding(tmpMap); |
---|
1733 | if(m!=NULL){ |
---|
1734 | map *tmpSid=getMapFromMaps(m,"lenv","sid"); |
---|
1735 | if(tmpSid!=NULL){ |
---|
1736 | if( getpid()==atoi(tmpSid->value) ) |
---|
1737 | printf("Content-Type: text/xml; charset=%s\r\nStatus: 200 OK\r\n\r\n",encoding); |
---|
1738 | } |
---|
1739 | else |
---|
1740 | printf("Content-Type: text/xml; charset=%s\r\nStatus: 200 OK\r\n\r\n",encoding); |
---|
1741 | }else |
---|
1742 | printf("Content-Type: text/xml; charset=%s\r\nStatus: 200 OK\r\n\r\n",encoding); |
---|
1743 | n=createExceptionReportNode(m,s,1); |
---|
1744 | xmlDocSetRootElement(doc, n); |
---|
1745 | xmlDocDumpFormatMemoryEnc(doc, &xmlbuff, &buffersize, encoding, 1); |
---|
1746 | printf("%s",xmlbuff); |
---|
1747 | fflush(stdout); |
---|
1748 | xmlFreeDoc(doc); |
---|
1749 | xmlFree(xmlbuff); |
---|
1750 | xmlCleanupParser(); |
---|
1751 | zooXmlCleanupNs(); |
---|
1752 | } |
---|
1753 | |
---|
1754 | xmlNodePtr createExceptionReportNode(maps* m,map* s,int use_ns){ |
---|
1755 | |
---|
1756 | int buffersize; |
---|
1757 | xmlChar *xmlbuff; |
---|
1758 | xmlNsPtr ns,ns_ows,ns_xlink,ns_xsi; |
---|
1759 | xmlNodePtr n,nc,nc1,nc2; |
---|
1760 | |
---|
1761 | maps* tmpMap=getMaps(m,"main"); |
---|
1762 | |
---|
1763 | int nsid=zooXmlAddNs(NULL,"http://www.opengis.net/ows/1.1","ows"); |
---|
1764 | ns=usedNs[nsid]; |
---|
1765 | n = xmlNewNode(ns, BAD_CAST "ExceptionReport"); |
---|
1766 | |
---|
1767 | if(use_ns==1){ |
---|
1768 | ns_ows=xmlNewNs(n,BAD_CAST "http://www.opengis.net/ows/1.1",BAD_CAST "ows"); |
---|
1769 | int xsiId=zooXmlAddNs(n,"http://www.w3.org/2001/XMLSchema-instance","xsi"); |
---|
1770 | ns_xsi=usedNs[xsiId]; |
---|
1771 | int xlinkId=zooXmlAddNs(n,"http://www.w3.org/1999/xlink","xlink"); |
---|
1772 | ns_xlink=usedNs[xlinkId]; |
---|
1773 | xmlNewNsProp(n,ns_xsi,BAD_CAST "schemaLocation",BAD_CAST "http://www.opengis.net/ows/1.1 http://schemas.opengis.net/ows/1.1.0/owsExceptionReport.xsd"); |
---|
1774 | } |
---|
1775 | addLangAttr(n,m); |
---|
1776 | xmlNewProp(n,BAD_CAST "version",BAD_CAST "1.1.0"); |
---|
1777 | |
---|
1778 | nc = xmlNewNode(ns, BAD_CAST "Exception"); |
---|
1779 | |
---|
1780 | map* tmp=getMap(s,"code"); |
---|
1781 | if(tmp!=NULL) |
---|
1782 | xmlNewProp(nc,BAD_CAST "exceptionCode",BAD_CAST tmp->value); |
---|
1783 | else |
---|
1784 | xmlNewProp(nc,BAD_CAST "exceptionCode",BAD_CAST "NoApplicableCode"); |
---|
1785 | |
---|
1786 | tmp=getMap(s,"text"); |
---|
1787 | nc1 = xmlNewNode(ns, BAD_CAST "ExceptionText"); |
---|
1788 | nc2=NULL; |
---|
1789 | if(tmp!=NULL){ |
---|
1790 | xmlNodeSetContent(nc1, BAD_CAST tmp->value); |
---|
1791 | } |
---|
1792 | else{ |
---|
1793 | xmlNodeSetContent(nc1, BAD_CAST _("No debug message available")); |
---|
1794 | } |
---|
1795 | xmlAddChild(nc,nc1); |
---|
1796 | xmlAddChild(n,nc); |
---|
1797 | return n; |
---|
1798 | } |
---|
1799 | |
---|
1800 | |
---|
1801 | void outputResponse(service* s,maps* request_inputs,maps* request_outputs, |
---|
1802 | map* request_inputs1,int cpid,maps* m,int res){ |
---|
1803 | #ifdef DEBUG |
---|
1804 | dumpMaps(request_inputs); |
---|
1805 | dumpMaps(request_outputs); |
---|
1806 | fprintf(stderr,"printProcessResponse\n"); |
---|
1807 | #endif |
---|
1808 | map* toto=getMap(request_inputs1,"RawDataOutput"); |
---|
1809 | int asRaw=0; |
---|
1810 | if(toto!=NULL) |
---|
1811 | asRaw=1; |
---|
1812 | |
---|
1813 | map *_tmp=getMapFromMaps(m,"lenv","cookie"); |
---|
1814 | map *_tmp1=getMapFromMaps(m,"lenv","sessid"); |
---|
1815 | if(_tmp!=NULL){ |
---|
1816 | printf("Set-Cookie: %s\r\n",_tmp->value); |
---|
1817 | printf("P3P: CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"\r\n"); |
---|
1818 | maps *tmpSess=getMaps(m,"senv"); |
---|
1819 | if(tmpSess!=NULL){ |
---|
1820 | char session_file_path[1024]; |
---|
1821 | map *tmpPath=getMapFromMaps(m,"main","sessPath"); |
---|
1822 | if(tmpPath==NULL) |
---|
1823 | tmpPath=getMapFromMaps(m,"main","tmpPath"); |
---|
1824 | char *tmp1=strtok(_tmp->value,";"); |
---|
1825 | if(tmp1!=NULL) |
---|
1826 | sprintf(session_file_path,"%s/sess_%s.cfg",tmpPath->value,strstr(tmp1,"=")+1); |
---|
1827 | else |
---|
1828 | sprintf(session_file_path,"%s/sess_%s.cfg",tmpPath->value,strstr(_tmp->value,"=")+1); |
---|
1829 | dumpMapsToFile(tmpSess,session_file_path); |
---|
1830 | } |
---|
1831 | } |
---|
1832 | |
---|
1833 | printHeaders(m); |
---|
1834 | |
---|
1835 | if(asRaw==0){ |
---|
1836 | #ifdef DEBUG |
---|
1837 | fprintf(stderr,"REQUEST_OUTPUTS FINAL\n"); |
---|
1838 | dumpMaps(request_outputs); |
---|
1839 | #endif |
---|
1840 | maps* tmpI=request_outputs; |
---|
1841 | while(tmpI!=NULL){ |
---|
1842 | #ifdef USE_MS |
---|
1843 | map* testMap=getMap(tmpI->content,"useMapserver"); |
---|
1844 | #endif |
---|
1845 | toto=getMap(tmpI->content,"asReference"); |
---|
1846 | #ifdef USE_MS |
---|
1847 | if(toto!=NULL && strcasecmp(toto->value,"true")==0 && testMap==NULL){ |
---|
1848 | #else |
---|
1849 | if(toto!=NULL && strcasecmp(toto->value,"true")==0){ |
---|
1850 | #endif |
---|
1851 | elements* in=getElements(s->outputs,tmpI->name); |
---|
1852 | char *format=NULL; |
---|
1853 | if(in!=NULL){ |
---|
1854 | format=strdup(in->format); |
---|
1855 | }else |
---|
1856 | format=strdup("LiteralData"); |
---|
1857 | if(strcasecmp(format,"BoundingBoxData")==0){ |
---|
1858 | addToMap(tmpI->content,"extension","xml"); |
---|
1859 | addToMap(tmpI->content,"mimeType","text/xml"); |
---|
1860 | addToMap(tmpI->content,"encoding","UTF-8"); |
---|
1861 | addToMap(tmpI->content,"schema","http://schemas.opengis.net/ows/1.1.0/owsCommon.xsd"); |
---|
1862 | } |
---|
1863 | map *ext=getMap(tmpI->content,"extension"); |
---|
1864 | map *tmp1=getMapFromMaps(m,"main","tmpPath"); |
---|
1865 | char *file_name; |
---|
1866 | bool hasExt=true; |
---|
1867 | if(ext==NULL){ |
---|
1868 | // We can fallback to a default list of supported formats using |
---|
1869 | // mimeType information if present here. Maybe we can add more formats |
---|
1870 | // here. |
---|
1871 | // If mimeType was not found, we then set txt as the default extension. |
---|
1872 | map* mtype=getMap(tmpI->content,"mimeType"); |
---|
1873 | if(mtype!=NULL){ |
---|
1874 | if(strcasecmp(mtype->value,"text/xml")==0) |
---|
1875 | ext=createMap("extension","xml"); |
---|
1876 | else if(strcasecmp(mtype->value,"application/json")==0) |
---|
1877 | ext=createMap("extension","js"); |
---|
1878 | else if(strncmp(mtype->value,"application/vnd.google-earth.kml",32)==0) |
---|
1879 | ext=createMap("extension","kml"); |
---|
1880 | else if(strncmp(mtype->value,"image/",6)==0) |
---|
1881 | ext=createMap("extension",strstr(mtype->value,"/")+1); |
---|
1882 | else |
---|
1883 | ext=createMap("extension","txt"); |
---|
1884 | } |
---|
1885 | else |
---|
1886 | ext=createMap("extension","txt"); |
---|
1887 | hasExt=false; |
---|
1888 | } |
---|
1889 | file_name=(char*)malloc((strlen(tmp1->value)+strlen(s->name)+strlen(ext->value)+strlen(tmpI->name)+13)*sizeof(char)); |
---|
1890 | sprintf(file_name,"%s/%s_%s_%i.%s",tmp1->value,s->name,tmpI->name,cpid+100000,ext->value); |
---|
1891 | FILE *ofile=fopen(file_name,"w"); |
---|
1892 | if(ofile==NULL) |
---|
1893 | fprintf(stderr,"Unable to create file on disk implying segfault ! \n"); |
---|
1894 | map *tmp2=getMapFromMaps(m,"main","tmpUrl"); |
---|
1895 | map *tmp3=getMapFromMaps(m,"main","serverAddress"); |
---|
1896 | char *file_url; |
---|
1897 | if(strncasecmp(tmp2->value,"http://",7)==0){ |
---|
1898 | file_url=(char*)malloc((strlen(tmp2->value)+strlen(s->name)+strlen(ext->value)+strlen(tmpI->name)+13)*sizeof(char)); |
---|
1899 | sprintf(file_url,"%s/%s_%s_%i.%s",tmp2->value,s->name,tmpI->name,cpid+100000,ext->value); |
---|
1900 | }else{ |
---|
1901 | file_url=(char*)malloc((strlen(tmp3->value)+strlen(tmp2->value)+strlen(s->name)+strlen(ext->value)+strlen(tmpI->name)+13)*sizeof(char)); |
---|
1902 | sprintf(file_url,"%s/%s/%s_%s_%i.%s",tmp3->value,tmp2->value,s->name,tmpI->name,cpid+100000,ext->value); |
---|
1903 | } |
---|
1904 | addToMap(tmpI->content,"Reference",file_url); |
---|
1905 | if(hasExt!=true){ |
---|
1906 | freeMap(&ext); |
---|
1907 | free(ext); |
---|
1908 | } |
---|
1909 | toto=getMap(tmpI->content,"value"); |
---|
1910 | if(strcasecmp(format,"BoundingBoxData")!=0){ |
---|
1911 | map* size=getMap(tmpI->content,"size"); |
---|
1912 | if(size!=NULL && toto!=NULL) |
---|
1913 | fwrite(toto->value,1,atoi(size->value)*sizeof(char),ofile); |
---|
1914 | else |
---|
1915 | if(toto!=NULL && toto->value!=NULL) |
---|
1916 | fwrite(toto->value,1,strlen(toto->value)*sizeof(char),ofile); |
---|
1917 | }else{ |
---|
1918 | printBoundingBoxDocument(m,tmpI,ofile); |
---|
1919 | } |
---|
1920 | free(format); |
---|
1921 | fclose(ofile); |
---|
1922 | free(file_name); |
---|
1923 | free(file_url); |
---|
1924 | } |
---|
1925 | #ifdef USE_MS |
---|
1926 | else{ |
---|
1927 | if(testMap!=NULL){ |
---|
1928 | setReferenceUrl(m,tmpI); |
---|
1929 | } |
---|
1930 | } |
---|
1931 | #endif |
---|
1932 | tmpI=tmpI->next; |
---|
1933 | } |
---|
1934 | map *r_inputs=getMap(s->content,"serviceProvider"); |
---|
1935 | #ifdef DEBUG |
---|
1936 | fprintf(stderr,"SERVICE : %s\n",r_inputs->value); |
---|
1937 | dumpMaps(m); |
---|
1938 | #endif |
---|
1939 | printProcessResponse(m,request_inputs1,cpid, |
---|
1940 | s,r_inputs->value,res, |
---|
1941 | request_inputs, |
---|
1942 | request_outputs); |
---|
1943 | } |
---|
1944 | else |
---|
1945 | if(res!=SERVICE_FAILED){ |
---|
1946 | /** |
---|
1947 | * We get the requested output or fallback to the first one if the |
---|
1948 | * requested one is not present in the resulting outputs maps. |
---|
1949 | */ |
---|
1950 | maps* tmpI=NULL; |
---|
1951 | map* tmpIV=getMap(request_inputs1,"RawDataOutput"); |
---|
1952 | if(tmpIV!=NULL){ |
---|
1953 | tmpI=getMaps(request_outputs,tmpIV->value); |
---|
1954 | } |
---|
1955 | if(tmpI==NULL) |
---|
1956 | tmpI=request_outputs; |
---|
1957 | elements* e=getElements(s->outputs,tmpI->name); |
---|
1958 | if(e!=NULL && strcasecmp(e->format,"BoundingBoxData")==0){ |
---|
1959 | printBoundingBoxDocument(m,tmpI,NULL); |
---|
1960 | }else{ |
---|
1961 | toto=getMap(tmpI->content,"value"); |
---|
1962 | if(toto==NULL){ |
---|
1963 | char tmpMsg[1024]; |
---|
1964 | sprintf(tmpMsg,_("Wrong RawDataOutput parameter, unable to fetch any result for the name your provided : \"%s\"."),tmpI->name); |
---|
1965 | map * errormap = createMap("text",tmpMsg); |
---|
1966 | addToMap(errormap,"code", "InvalidParameterValue"); |
---|
1967 | printExceptionReportResponse(m,errormap); |
---|
1968 | freeMap(&errormap); |
---|
1969 | free(errormap); |
---|
1970 | return; |
---|
1971 | } |
---|
1972 | char mime[1024]; |
---|
1973 | map* mi=getMap(tmpI->content,"mimeType"); |
---|
1974 | #ifdef DEBUG |
---|
1975 | fprintf(stderr,"SERVICE OUTPUTS\n"); |
---|
1976 | dumpMaps(request_outputs); |
---|
1977 | fprintf(stderr,"SERVICE OUTPUTS\n"); |
---|
1978 | #endif |
---|
1979 | map* en=getMap(tmpI->content,"encoding"); |
---|
1980 | if(mi!=NULL && en!=NULL) |
---|
1981 | sprintf(mime, |
---|
1982 | "Content-Type: %s; charset=%s\r\nStatus: 200 OK\r\n\r\n", |
---|
1983 | mi->value,en->value); |
---|
1984 | else |
---|
1985 | if(mi!=NULL) |
---|
1986 | sprintf(mime, |
---|
1987 | "Content-Type: %s; charset=UTF-8\r\nStatus: 200 OK\r\n\r\n", |
---|
1988 | mi->value); |
---|
1989 | else |
---|
1990 | sprintf(mime,"Content-Type: text/plain; charset=utf-8\r\nStatus: 200 OK\r\n\r\n"); |
---|
1991 | printf("%s",mime); |
---|
1992 | if(mi!=NULL && strncmp(mi->value,"image",5)==0){ |
---|
1993 | map* rs=getMapFromMaps(tmpI,tmpI->name,"size"); |
---|
1994 | fwrite(toto->value,atoi(rs->value),1,stdout); |
---|
1995 | } |
---|
1996 | else |
---|
1997 | printf("%s",toto->value); |
---|
1998 | #ifdef DEBUG |
---|
1999 | dumpMap(toto); |
---|
2000 | #endif |
---|
2001 | } |
---|
2002 | }else{ |
---|
2003 | char tmp[1024]; |
---|
2004 | map * errormap; |
---|
2005 | map *lenv; |
---|
2006 | lenv=getMapFromMaps(m,"lenv","message"); |
---|
2007 | if(lenv!=NULL) |
---|
2008 | sprintf(tmp,_("Unable to run the Service. The message returned back by the Service was the following : %s"),lenv->value); |
---|
2009 | else |
---|
2010 | sprintf(tmp,_("Unable to run the Service. No more information was returned back by the Service.")); |
---|
2011 | errormap = createMap("text",tmp); |
---|
2012 | addToMap(errormap,"code", "InternalError"); |
---|
2013 | printExceptionReportResponse(m,errormap); |
---|
2014 | freeMap(&errormap); |
---|
2015 | free(errormap); |
---|
2016 | } |
---|
2017 | } |
---|
2018 | |
---|
2019 | char *base64(const char *input, int length) |
---|
2020 | { |
---|
2021 | BIO *bmem, *b64; |
---|
2022 | BUF_MEM *bptr; |
---|
2023 | |
---|
2024 | b64 = BIO_new(BIO_f_base64()); |
---|
2025 | BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); |
---|
2026 | bmem = BIO_new(BIO_s_mem()); |
---|
2027 | b64 = BIO_push(b64, bmem); |
---|
2028 | BIO_write(b64, input, length); |
---|
2029 | BIO_flush(b64); |
---|
2030 | BIO_get_mem_ptr(b64, &bptr); |
---|
2031 | |
---|
2032 | char *buff = (char *)malloc((bptr->length)*sizeof(char)); |
---|
2033 | memcpy(buff, bptr->data, bptr->length-1); |
---|
2034 | buff[bptr->length-1] = 0; |
---|
2035 | |
---|
2036 | BIO_free_all(b64); |
---|
2037 | |
---|
2038 | return buff; |
---|
2039 | } |
---|
2040 | |
---|
2041 | char *base64d(const char *input, int length,int* red) |
---|
2042 | { |
---|
2043 | BIO *b64, *bmem; |
---|
2044 | |
---|
2045 | char *buffer = (char *)malloc(length); |
---|
2046 | if(buffer){ |
---|
2047 | memset(buffer, 0, length); |
---|
2048 | b64 = BIO_new(BIO_f_base64()); |
---|
2049 | if(b64){ |
---|
2050 | bmem = BIO_new_mem_buf((unsigned char*)input,length); |
---|
2051 | bmem = BIO_push(b64, bmem); |
---|
2052 | *red=BIO_read(bmem, buffer, length); |
---|
2053 | buffer[length-1]=0; |
---|
2054 | BIO_free_all(bmem); |
---|
2055 | } |
---|
2056 | } |
---|
2057 | return buffer; |
---|
2058 | } |
---|
2059 | |
---|
2060 | void ensureDecodedBase64(maps **in){ |
---|
2061 | maps* cursor=*in; |
---|
2062 | while(cursor!=NULL){ |
---|
2063 | map *tmp=getMap(cursor->content,"encoding"); |
---|
2064 | if(tmp!=NULL && strncasecmp(tmp->value,"base64",6)==0){ |
---|
2065 | tmp=getMap(cursor->content,"value"); |
---|
2066 | addToMap(cursor->content,"base64_value",tmp->value); |
---|
2067 | int size=0; |
---|
2068 | char *s=strdup(tmp->value); |
---|
2069 | free(tmp->value); |
---|
2070 | tmp->value=base64d(s,strlen(s),&size); |
---|
2071 | free(s); |
---|
2072 | char sizes[1024]; |
---|
2073 | sprintf(sizes,"%d",size); |
---|
2074 | addToMap(cursor->content,"size",sizes); |
---|
2075 | } |
---|
2076 | cursor=cursor->next; |
---|
2077 | } |
---|
2078 | } |
---|
2079 | |
---|
2080 | char* addDefaultValues(maps** out,elements* in,maps* m,int type){ |
---|
2081 | elements* tmpInputs=in; |
---|
2082 | maps* out1=*out; |
---|
2083 | if(type==1){ |
---|
2084 | while(out1!=NULL){ |
---|
2085 | if(getElements(in,out1->name)==NULL) |
---|
2086 | return out1->name; |
---|
2087 | out1=out1->next; |
---|
2088 | } |
---|
2089 | out1=*out; |
---|
2090 | } |
---|
2091 | while(tmpInputs!=NULL){ |
---|
2092 | maps *tmpMaps=getMaps(out1,tmpInputs->name); |
---|
2093 | if(tmpMaps==NULL){ |
---|
2094 | maps* tmpMaps2=(maps*)malloc(MAPS_SIZE); |
---|
2095 | tmpMaps2->name=strdup(tmpInputs->name); |
---|
2096 | tmpMaps2->content=NULL; |
---|
2097 | tmpMaps2->next=NULL; |
---|
2098 | |
---|
2099 | if(type==0){ |
---|
2100 | map* tmpMapMinO=getMap(tmpInputs->content,"minOccurs"); |
---|
2101 | if(tmpMapMinO!=NULL) |
---|
2102 | if(atoi(tmpMapMinO->value)>=1){ |
---|
2103 | freeMaps(&tmpMaps2); |
---|
2104 | free(tmpMaps2); |
---|
2105 | return tmpInputs->name; |
---|
2106 | } |
---|
2107 | else{ |
---|
2108 | if(tmpMaps2->content==NULL) |
---|
2109 | tmpMaps2->content=createMap("minOccurs",tmpMapMinO->value); |
---|
2110 | else |
---|
2111 | addToMap(tmpMaps2->content,"minOccurs",tmpMapMinO->value); |
---|
2112 | } |
---|
2113 | map* tmpMaxO=getMap(tmpInputs->content,"maxOccurs"); |
---|
2114 | if(tmpMaxO!=NULL) |
---|
2115 | if(tmpMaps2->content==NULL) |
---|
2116 | tmpMaps2->content=createMap("maxOccurs",tmpMaxO->value); |
---|
2117 | else |
---|
2118 | addToMap(tmpMaps2->content,"maxOccurs",tmpMaxO->value); |
---|
2119 | } |
---|
2120 | |
---|
2121 | iotype* tmpIoType=tmpInputs->defaults; |
---|
2122 | if(tmpIoType!=NULL){ |
---|
2123 | map* tmpm=tmpIoType->content; |
---|
2124 | while(tmpm!=NULL){ |
---|
2125 | if(tmpMaps2->content==NULL) |
---|
2126 | tmpMaps2->content=createMap(tmpm->name,tmpm->value); |
---|
2127 | else |
---|
2128 | addToMap(tmpMaps2->content,tmpm->name,tmpm->value); |
---|
2129 | tmpm=tmpm->next; |
---|
2130 | } |
---|
2131 | } |
---|
2132 | addToMap(tmpMaps2->content,"inRequest","false"); |
---|
2133 | if(type==0){ |
---|
2134 | map *tmpMap=getMap(tmpMaps2->content,"value"); |
---|
2135 | if(tmpMap==NULL) |
---|
2136 | addToMap(tmpMaps2->content,"value","NULL"); |
---|
2137 | } |
---|
2138 | if(out1==NULL){ |
---|
2139 | *out=dupMaps(&tmpMaps2); |
---|
2140 | out1=*out; |
---|
2141 | } |
---|
2142 | else |
---|
2143 | addMapsToMaps(&out1,tmpMaps2); |
---|
2144 | freeMap(&tmpMaps2->content); |
---|
2145 | free(tmpMaps2->content); |
---|
2146 | tmpMaps2->content=NULL; |
---|
2147 | freeMaps(&tmpMaps2); |
---|
2148 | free(tmpMaps2); |
---|
2149 | tmpMaps2=NULL; |
---|
2150 | } |
---|
2151 | else{ |
---|
2152 | iotype* tmpIoType=getIoTypeFromElement(tmpInputs,tmpInputs->name, |
---|
2153 | tmpMaps->content); |
---|
2154 | if(type==0) { |
---|
2155 | /** |
---|
2156 | * In case of an Input maps, then add the minOccurs and maxOccurs to the |
---|
2157 | * content map. |
---|
2158 | */ |
---|
2159 | map* tmpMap1=getMap(tmpInputs->content,"minOccurs"); |
---|
2160 | if(tmpMap1!=NULL){ |
---|
2161 | if(tmpMaps->content==NULL) |
---|
2162 | tmpMaps->content=createMap("minOccurs",tmpMap1->value); |
---|
2163 | else |
---|
2164 | addToMap(tmpMaps->content,"minOccurs",tmpMap1->value); |
---|
2165 | } |
---|
2166 | map* tmpMaxO=getMap(tmpInputs->content,"maxOccurs"); |
---|
2167 | if(tmpMaxO!=NULL){ |
---|
2168 | if(tmpMaps->content==NULL) |
---|
2169 | tmpMaps->content=createMap("maxOccurs",tmpMap1->value); |
---|
2170 | else |
---|
2171 | addToMap(tmpMaps->content,"maxOccurs",tmpMap1->value); |
---|
2172 | } |
---|
2173 | /** |
---|
2174 | * Parsing BoundingBoxData, fill the following map and then add it to |
---|
2175 | * the content map of the Input maps: |
---|
2176 | * lowerCorner, upperCorner, srs and dimensions |
---|
2177 | * cf. parseBoundingBox |
---|
2178 | */ |
---|
2179 | if(strcasecmp(tmpInputs->format,"BoundingBoxData")==0){ |
---|
2180 | maps* tmpI=getMaps(*out,tmpInputs->name); |
---|
2181 | if(tmpI!=NULL){ |
---|
2182 | map* tmpV=getMap(tmpI->content,"value"); |
---|
2183 | if(tmpV!=NULL){ |
---|
2184 | char *tmpVS=strdup(tmpV->value); |
---|
2185 | map* tmp=parseBoundingBox(tmpVS); |
---|
2186 | free(tmpVS); |
---|
2187 | map* tmpC=tmp; |
---|
2188 | while(tmpC!=NULL){ |
---|
2189 | addToMap(tmpMaps->content,tmpC->name,tmpC->value); |
---|
2190 | tmpC=tmpC->next; |
---|
2191 | } |
---|
2192 | freeMap(&tmp); |
---|
2193 | free(tmp); |
---|
2194 | } |
---|
2195 | } |
---|
2196 | } |
---|
2197 | } |
---|
2198 | |
---|
2199 | if(tmpIoType!=NULL){ |
---|
2200 | map* tmpContent=tmpIoType->content; |
---|
2201 | map* cval=NULL; |
---|
2202 | int hasPassed=-1; |
---|
2203 | while(tmpContent!=NULL){ |
---|
2204 | if((cval=getMap(tmpMaps->content,tmpContent->name))==NULL){ |
---|
2205 | #ifdef DEBUG |
---|
2206 | fprintf(stderr,"addDefaultValues %s => %s\n",tmpContent->name,tmpContent->value); |
---|
2207 | #endif |
---|
2208 | if(tmpMaps->content==NULL) |
---|
2209 | tmpMaps->content=createMap(tmpContent->name,tmpContent->value); |
---|
2210 | else |
---|
2211 | addToMap(tmpMaps->content,tmpContent->name,tmpContent->value); |
---|
2212 | |
---|
2213 | if(hasPassed<0 && type==0 && getMap(tmpMaps->content,"isArray")!=NULL){ |
---|
2214 | map* length=getMap(tmpMaps->content,"length"); |
---|
2215 | int i; |
---|
2216 | char *tcn=strdup(tmpContent->name); |
---|
2217 | for(i=1;i<atoi(length->value);i++){ |
---|
2218 | #ifdef DEBUG |
---|
2219 | dumpMap(tmpMaps->content); |
---|
2220 | fprintf(stderr,"addDefaultValues %s_%d => %s\n",tcn,i,tmpContent->value); |
---|
2221 | #endif |
---|
2222 | int len=strlen((char*) tcn); |
---|
2223 | char *tmp1=(char *)malloc((len+10)*sizeof(char)); |
---|
2224 | sprintf(tmp1,"%s_%d",tcn,i); |
---|
2225 | #ifdef DEBUG |
---|
2226 | fprintf(stderr,"addDefaultValues %s => %s\n",tmp1,tmpContent->value); |
---|
2227 | #endif |
---|
2228 | addToMap(tmpMaps->content,tmp1,tmpContent->value); |
---|
2229 | free(tmp1); |
---|
2230 | hasPassed=1; |
---|
2231 | } |
---|
2232 | free(tcn); |
---|
2233 | } |
---|
2234 | } |
---|
2235 | tmpContent=tmpContent->next; |
---|
2236 | } |
---|
2237 | #ifdef USE_MS |
---|
2238 | /** |
---|
2239 | * check for useMapServer presence |
---|
2240 | */ |
---|
2241 | map* tmpCheck=getMap(tmpIoType->content,"useMapServer"); |
---|
2242 | if(tmpCheck!=NULL){ |
---|
2243 | // Get the default value |
---|
2244 | tmpIoType=getIoTypeFromElement(tmpInputs,tmpInputs->name,NULL); |
---|
2245 | tmpCheck=getMap(tmpMaps->content,"mimeType"); |
---|
2246 | addToMap(tmpMaps->content,"requestedMimeType",tmpCheck->value); |
---|
2247 | map* cursor=tmpIoType->content; |
---|
2248 | while(cursor!=NULL){ |
---|
2249 | addToMap(tmpMaps->content,cursor->name,cursor->value); |
---|
2250 | cursor=cursor->next; |
---|
2251 | } |
---|
2252 | |
---|
2253 | cursor=tmpInputs->content; |
---|
2254 | while(cursor!=NULL){ |
---|
2255 | if(strcasecmp(cursor->name,"Title")==0 || |
---|
2256 | strcasecmp(cursor->name,"Abstract")==0) |
---|
2257 | addToMap(tmpMaps->content,cursor->name,cursor->value); |
---|
2258 | cursor=cursor->next; |
---|
2259 | } |
---|
2260 | } |
---|
2261 | #endif |
---|
2262 | } |
---|
2263 | if(tmpMaps->content==NULL) |
---|
2264 | tmpMaps->content=createMap("inRequest","true"); |
---|
2265 | else |
---|
2266 | addToMap(tmpMaps->content,"inRequest","true"); |
---|
2267 | |
---|
2268 | } |
---|
2269 | tmpInputs=tmpInputs->next; |
---|
2270 | } |
---|
2271 | return ""; |
---|
2272 | } |
---|
2273 | |
---|
2274 | /** |
---|
2275 | * parseBoundingBox : parse a BoundingBox string |
---|
2276 | * |
---|
2277 | * OGC 06-121r3 : 10.2 Bounding box |
---|
2278 | * |
---|
2279 | * value is provided as : lowerCorner,upperCorner,crs,dimension |
---|
2280 | * exemple : 189000,834000,285000,962000,urn:ogc:def:crs:OGC:1.3:CRS84 |
---|
2281 | * |
---|
2282 | * Need to create a map to store boundingbox informations : |
---|
2283 | * - lowerCorner : double,double (minimum within this bounding box) |
---|
2284 | * - upperCorner : double,double (maximum within this bounding box) |
---|
2285 | * - crs : URI (Reference to definition of the CRS) |
---|
2286 | * - dimensions : int |
---|
2287 | * |
---|
2288 | * Note : support only 2D bounding box. |
---|
2289 | */ |
---|
2290 | map* parseBoundingBox(const char* value){ |
---|
2291 | map *res=NULL; |
---|
2292 | if(value!=NULL){ |
---|
2293 | char *cv,*cvp; |
---|
2294 | cv=strtok_r((char*) value,",",&cvp); |
---|
2295 | int cnt=0; |
---|
2296 | int icnt=0; |
---|
2297 | char *currentValue=NULL; |
---|
2298 | while(cv){ |
---|
2299 | if(cnt<2) |
---|
2300 | if(currentValue!=NULL){ |
---|
2301 | char *finalValue=(char*)malloc((strlen(currentValue)+strlen(cv)+1)*sizeof(char)); |
---|
2302 | sprintf(finalValue,"%s%s",currentValue,cv); |
---|
2303 | switch(cnt){ |
---|
2304 | case 0: |
---|
2305 | res=createMap("lowerCorner",finalValue); |
---|
2306 | break; |
---|
2307 | case 1: |
---|
2308 | addToMap(res,"upperCorner",finalValue); |
---|
2309 | icnt=-1; |
---|
2310 | break; |
---|
2311 | } |
---|
2312 | cnt++; |
---|
2313 | free(currentValue); |
---|
2314 | currentValue=NULL; |
---|
2315 | free(finalValue); |
---|
2316 | } |
---|
2317 | else{ |
---|
2318 | currentValue=(char*)malloc((strlen(cv)+2)*sizeof(char)); |
---|
2319 | sprintf(currentValue,"%s ",cv); |
---|
2320 | } |
---|
2321 | else |
---|
2322 | if(cnt==2){ |
---|
2323 | addToMap(res,"crs",cv); |
---|
2324 | cnt++; |
---|
2325 | } |
---|
2326 | else |
---|
2327 | addToMap(res,"dimensions",cv); |
---|
2328 | icnt++; |
---|
2329 | cv=strtok_r(NULL,",",&cvp); |
---|
2330 | } |
---|
2331 | } |
---|
2332 | return res; |
---|
2333 | } |
---|
2334 | |
---|
2335 | /** |
---|
2336 | * printBoundingBox : fill a BoundingBox node (ows:BoundingBox or |
---|
2337 | * wps:BoundingBoxData). Set crs and dimensions attributes, add |
---|
2338 | * Lower/UpperCorner nodes to a pre-existing XML node. |
---|
2339 | */ |
---|
2340 | void printBoundingBox(xmlNsPtr ns_ows,xmlNodePtr n,map* boundingbox){ |
---|
2341 | |
---|
2342 | xmlNodePtr bb,lw,uc; |
---|
2343 | |
---|
2344 | map* tmp=getMap(boundingbox,"value"); |
---|
2345 | |
---|
2346 | tmp=getMap(boundingbox,"lowerCorner"); |
---|
2347 | if(tmp!=NULL){ |
---|
2348 | lw=xmlNewNode(ns_ows,BAD_CAST "LowerCorner"); |
---|
2349 | xmlAddChild(lw,xmlNewText(BAD_CAST tmp->value)); |
---|
2350 | } |
---|
2351 | |
---|
2352 | tmp=getMap(boundingbox,"upperCorner"); |
---|
2353 | if(tmp!=NULL){ |
---|
2354 | uc=xmlNewNode(ns_ows,BAD_CAST "UpperCorner"); |
---|
2355 | xmlAddChild(uc,xmlNewText(BAD_CAST tmp->value)); |
---|
2356 | } |
---|
2357 | |
---|
2358 | tmp=getMap(boundingbox,"crs"); |
---|
2359 | if(tmp!=NULL) |
---|
2360 | xmlNewProp(n,BAD_CAST "crs",BAD_CAST tmp->value); |
---|
2361 | |
---|
2362 | tmp=getMap(boundingbox,"dimensions"); |
---|
2363 | if(tmp!=NULL) |
---|
2364 | xmlNewProp(n,BAD_CAST "dimensions",BAD_CAST tmp->value); |
---|
2365 | |
---|
2366 | xmlAddChild(n,lw); |
---|
2367 | xmlAddChild(n,uc); |
---|
2368 | |
---|
2369 | } |
---|
2370 | |
---|
2371 | void printBoundingBoxDocument(maps* m,maps* boundingbox,FILE* file){ |
---|
2372 | if(file==NULL) |
---|
2373 | rewind(stdout); |
---|
2374 | xmlNodePtr n; |
---|
2375 | xmlDocPtr doc; |
---|
2376 | xmlNsPtr ns_ows,ns_xsi; |
---|
2377 | xmlChar *xmlbuff; |
---|
2378 | int buffersize; |
---|
2379 | char *encoding=getEncoding(m); |
---|
2380 | map *tmp; |
---|
2381 | if(file==NULL){ |
---|
2382 | int pid=0; |
---|
2383 | tmp=getMapFromMaps(m,"lenv","sid"); |
---|
2384 | if(tmp!=NULL) |
---|
2385 | pid=atoi(tmp->value); |
---|
2386 | if(pid==getpid()){ |
---|
2387 | printf("Content-Type: text/xml; charset=%s\r\nStatus: 200 OK\r\n\r\n",encoding); |
---|
2388 | } |
---|
2389 | fflush(stdout); |
---|
2390 | } |
---|
2391 | |
---|
2392 | doc = xmlNewDoc(BAD_CAST "1.0"); |
---|
2393 | int owsId=zooXmlAddNs(NULL,"http://www.opengis.net/ows/1.1","ows"); |
---|
2394 | ns_ows=usedNs[owsId]; |
---|
2395 | n = xmlNewNode(ns_ows, BAD_CAST "BoundingBox"); |
---|
2396 | xmlNewNs(n,BAD_CAST "http://www.opengis.net/ows/1.1",BAD_CAST "ows"); |
---|
2397 | int xsiId=zooXmlAddNs(n,"http://www.w3.org/2001/XMLSchema-instance","xsi"); |
---|
2398 | ns_xsi=usedNs[xsiId]; |
---|
2399 | xmlNewNsProp(n,ns_xsi,BAD_CAST "schemaLocation",BAD_CAST "http://www.opengis.net/ows/1.1 http://schemas.opengis.net/ows/1.1.0/owsCommon.xsd"); |
---|
2400 | map *tmp1=getMap(boundingbox->content,"value"); |
---|
2401 | tmp=parseBoundingBox(tmp1->value); |
---|
2402 | printBoundingBox(ns_ows,n,tmp); |
---|
2403 | xmlDocSetRootElement(doc, n); |
---|
2404 | |
---|
2405 | xmlDocDumpFormatMemoryEnc(doc, &xmlbuff, &buffersize, encoding, 1); |
---|
2406 | if(file==NULL) |
---|
2407 | printf("%s",xmlbuff); |
---|
2408 | else{ |
---|
2409 | fprintf(file,"%s",xmlbuff); |
---|
2410 | } |
---|
2411 | |
---|
2412 | if(tmp!=NULL){ |
---|
2413 | freeMap(&tmp); |
---|
2414 | free(tmp); |
---|
2415 | } |
---|
2416 | xmlFree(xmlbuff); |
---|
2417 | xmlFreeDoc(doc); |
---|
2418 | xmlCleanupParser(); |
---|
2419 | zooXmlCleanupNs(); |
---|
2420 | |
---|
2421 | } |
---|
2422 | |
---|
2423 | |
---|
2424 | char* getMd5(char* url){ |
---|
2425 | EVP_MD_CTX md5ctx; |
---|
2426 | char* fresult=(char*)malloc((EVP_MAX_MD_SIZE+1)*sizeof(char)); |
---|
2427 | unsigned char result[EVP_MAX_MD_SIZE]; |
---|
2428 | unsigned int len; |
---|
2429 | EVP_DigestInit(&md5ctx, EVP_md5()); |
---|
2430 | EVP_DigestUpdate(&md5ctx, url, strlen(url)); |
---|
2431 | EVP_DigestFinal_ex(&md5ctx,result,&len); |
---|
2432 | EVP_MD_CTX_cleanup(&md5ctx); |
---|
2433 | int i; |
---|
2434 | for(i = 0; i < len; i++){ |
---|
2435 | if(i>0){ |
---|
2436 | char *tmp=strdup(fresult); |
---|
2437 | sprintf(fresult,"%s%02x", tmp,result[i]); |
---|
2438 | free(tmp); |
---|
2439 | } |
---|
2440 | else |
---|
2441 | sprintf(fresult,"%02x",result[i]); |
---|
2442 | } |
---|
2443 | return fresult; |
---|
2444 | } |
---|
2445 | |
---|
2446 | /** |
---|
2447 | * Cache a file for a given request |
---|
2448 | */ |
---|
2449 | void addToCache(maps* conf,char* request,char* content,int length){ |
---|
2450 | map* tmp=getMapFromMaps(conf,"main","cacheDir"); |
---|
2451 | if(tmp!=NULL){ |
---|
2452 | char* md5str=getMd5(request); |
---|
2453 | char* fname=(char*)malloc(sizeof(char)*(strlen(tmp->value)+strlen(md5str)+6)); |
---|
2454 | sprintf(fname,"%s/%s.zca",tmp->value,md5str); |
---|
2455 | #ifdef DEBUG |
---|
2456 | fprintf(stderr,"Cache list : %s\n",fname); |
---|
2457 | fflush(stderr); |
---|
2458 | #endif |
---|
2459 | FILE* fo=fopen(fname,"w+"); |
---|
2460 | fwrite(content,sizeof(char),length,fo); |
---|
2461 | fclose(fo); |
---|
2462 | free(md5str); |
---|
2463 | free(fname); |
---|
2464 | } |
---|
2465 | } |
---|
2466 | |
---|
2467 | char* isInCache(maps* conf,char* request){ |
---|
2468 | map* tmpM=getMapFromMaps(conf,"main","cacheDir"); |
---|
2469 | if(tmpM!=NULL){ |
---|
2470 | char* md5str=getMd5(request); |
---|
2471 | #ifdef DEBUG |
---|
2472 | fprintf(stderr,"MD5STR : (%s)\n\n",md5str); |
---|
2473 | #endif |
---|
2474 | char* fname=(char*)malloc(sizeof(char)*(strlen(tmpM->value)+38)); |
---|
2475 | sprintf(fname,"%s/%s.zca",tmpM->value,md5str); |
---|
2476 | struct stat f_status; |
---|
2477 | int s=stat(fname, &f_status); |
---|
2478 | if(s==0 && f_status.st_size>0){ |
---|
2479 | free(md5str); |
---|
2480 | return fname; |
---|
2481 | } |
---|
2482 | free(md5str); |
---|
2483 | free(fname); |
---|
2484 | } |
---|
2485 | return NULL; |
---|
2486 | } |
---|
2487 | |
---|
2488 | /** |
---|
2489 | * loadRemoteFile: |
---|
2490 | * Try to load file from cache or download a remote file if not in cache |
---|
2491 | */ |
---|
2492 | int loadRemoteFile(maps* m,map* content,HINTERNET hInternet,char *url){ |
---|
2493 | HINTERNET res; |
---|
2494 | char* fcontent; |
---|
2495 | char* cached=isInCache(m,url); |
---|
2496 | int fsize; |
---|
2497 | if(cached!=NULL){ |
---|
2498 | struct stat f_status; |
---|
2499 | int s=stat(cached, &f_status); |
---|
2500 | if(s==0){ |
---|
2501 | fprintf(stderr,"FILE SIZE (%d)\n",f_status.st_size/1024); |
---|
2502 | fcontent=(char*)malloc(sizeof(char)*(f_status.st_size+1)); |
---|
2503 | FILE* f=fopen(cached,"rb"); |
---|
2504 | fread(fcontent,sizeof(char),f_status.st_size,f); |
---|
2505 | fsize=f_status.st_size; |
---|
2506 | } |
---|
2507 | }else{ |
---|
2508 | res=InternetOpenUrl(hInternet,url,NULL,0,INTERNET_FLAG_NO_CACHE_WRITE,0); |
---|
2509 | fcontent=(char*)calloc((res.nDataLen+1),sizeof(char)); |
---|
2510 | if(fcontent == NULL){ |
---|
2511 | return errorException(m, _("Unable to allocate memory."), "InternalError"); |
---|
2512 | } |
---|
2513 | size_t dwRead; |
---|
2514 | InternetReadFile(res, (LPVOID)fcontent, res.nDataLen, &dwRead); |
---|
2515 | fcontent[res.nDataLen]=0; |
---|
2516 | fsize=res.nDataLen; |
---|
2517 | } |
---|
2518 | if(fsize==0){ |
---|
2519 | return errorException(m, _("Unable to download the file."), "InternalError"); |
---|
2520 | } |
---|
2521 | |
---|
2522 | map* tmpMap=getMapOrFill(content,"value",""); |
---|
2523 | |
---|
2524 | free(tmpMap->value); |
---|
2525 | tmpMap->value=(char*)malloc((fsize+1)*sizeof(char)); |
---|
2526 | memcpy(tmpMap->value,fcontent,(fsize)*sizeof(char)); |
---|
2527 | |
---|
2528 | char ltmp1[256]; |
---|
2529 | sprintf(ltmp1,"%d",fsize); |
---|
2530 | addToMap(content,"size",ltmp1); |
---|
2531 | if(cached==NULL) |
---|
2532 | addToCache(m,url,fcontent,fsize); |
---|
2533 | free(fcontent); |
---|
2534 | if(cached!=NULL) |
---|
2535 | free(cached); |
---|
2536 | return 0; |
---|
2537 | } |
---|
2538 | |
---|
2539 | int errorException(maps *m, const char *message, const char *errorcode) |
---|
2540 | { |
---|
2541 | map* errormap = createMap("text", message); |
---|
2542 | addToMap(errormap,"code", errorcode); |
---|
2543 | printExceptionReportResponse(m,errormap); |
---|
2544 | freeMap(&errormap); |
---|
2545 | free(errormap); |
---|
2546 | return -1; |
---|
2547 | } |
---|