source: trunk/zoo-kernel/service.h @ 282

Last change on this file since 282 was 282, checked in by djay, 13 years ago

Fixe previous commit...

File size: 17.6 KB
Line 
1/**
2 * Author : Gérald FENOY
3 *
4 * Copyright (c) 2009-2010 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#ifndef ZOO_SERVICE_H
26#define ZOO_SERVICE_H 1
27
28#pragma once
29
30#ifdef WIN32
31#define strncasecmp strnicmp
32#define strcasecmp stricmp
33#define snprintf sprintf_s
34#endif
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40#include <stdlib.h>
41#include <ctype.h>
42#include <stdio.h>
43#include <string.h>
44
45#define bool int
46#define true 1
47#define false -1
48
49#define SERVICE_ACCEPTED 0
50#define SERVICE_STARTED 1
51#define SERVICE_PAUSED 2
52#define SERVICE_SUCCEEDED 3
53#define SERVICE_FAILED 4
54
55#define ELEMENTS_SIZE (sizeof(char*)+(((2*sizeof(char*))+sizeof(maps*))*2)+sizeof(char*)+(((2*sizeof(char*))+sizeof(iotype*))*2)+sizeof(elements*))
56#define MAP_SIZE (2*sizeof(char*))+sizeof(NULL)
57#define IOTYPE_SIZE MAP_SIZE+sizeof(NULL)
58#define MAPS_SIZE (2*sizeof(char*))+sizeof(map*)+MAP_SIZE
59#define SERVICE_SIZE (ELEMENTS_SIZE*2)+(MAP_SIZE*2)+sizeof(char*)
60
61#define SHMSZ     27
62
63
64  /**
65   * \struct map
66   * \brief KVP linked list
67   *
68   * Deal with WPS KVP (name,value).
69   * A map is defined as:
70   *  - name : a key,
71   *  - value: a value,
72   *  - next : a pointer to the next map if any.
73   */
74  typedef struct map{
75    char* name;
76    char* value;
77    struct map* next;
78  } map;
79
80#ifdef WIN32
81#define NULLMAP ((map*) 0)
82#else
83#define NULLMAP NULL
84#endif
85
86  /**
87   * \struct maps
88   * \brief linked list of map pointer
89   *
90   * Small object to store WPS KVP set.
91   * Maps is defined as:
92   *  - a name,
93   *  - a content map,
94   *  - a pointer to the next maps if any.
95   */
96  typedef struct maps{
97    char* name;         
98    struct map* content; 
99    struct maps* next;   
100  } maps;
101
102  /**
103   * \brief Dump a map on stderr
104   */
105  static void _dumpMap(map* t){
106    if(t!=NULL){
107      fprintf(stderr,"[%s] => [%s] \n",t->name,t->value);
108      fflush(stderr);
109    }else{
110      fprintf(stderr,"NULL\n");
111      fflush(stderr);
112    }
113  }
114
115  static void dumpMap(map* t){
116    map* tmp=t;
117    while(tmp!=NULL){
118      _dumpMap(tmp);
119      tmp=tmp->next;
120    }
121  }
122
123  static void dumpMapToFile(map* t,FILE* file){
124    map* tmp=t;
125    while(tmp!=NULL){
126      fprintf(stderr,"%s = %s\n",tmp->name,tmp->value);
127      fprintf(file,"%s = %s\n",tmp->name,tmp->value);
128      tmp=tmp->next;
129    }
130  }
131
132  static void dumpMaps(maps* m){
133    maps* tmp=m;
134    while(tmp!=NULL){
135      fprintf(stderr,"MAP => [%s] \n",tmp->name);
136      dumpMap(tmp->content);
137      tmp=tmp->next;
138    }
139  }
140
141  static void dumpMapsToFile(maps* m,char* file_path){
142    FILE* file=fopen(file_path,"w");
143    maps* tmp=m;
144    if(tmp!=NULL){
145      fprintf(file,"[%s]\n",tmp->name);
146      dumpMapToFile(tmp->content,file);
147      fflush(file);
148    }
149    fclose(file);
150  }
151
152  static map* createMap(const char* name,const char* value){
153    map* tmp=(map *)malloc(MAP_SIZE);
154    tmp->name=strdup(name);
155    tmp->value=strdup(value);
156    tmp->next=NULL;
157    return tmp;
158  }
159
160  static int count(map* m){
161    map* tmp=m;
162    int c=0;
163    while(tmp!=NULL){
164      c++;
165      tmp=tmp->next;
166    }
167    return c;
168  }
169   
170  static bool hasKey(map* m,const char *key){
171    map* tmp=m;
172    while(tmp!=NULL){
173      if(strcasecmp(tmp->name,key)==0)
174        return true;
175      tmp=tmp->next;
176    }
177#ifdef DEBUG_MAP
178    fprintf(stderr,"NOT FOUND \n");
179#endif
180    return false;
181  }
182
183  static maps* getMaps(maps* m,const char *key){
184    maps* tmp=m;
185    while(tmp!=NULL){
186      if(strcasecmp(tmp->name,key)==0){
187        return tmp;
188      }
189      tmp=tmp->next;
190    }
191    return NULL;
192  }
193
194  static map* getMap(map* m,const char *key){
195    map* tmp=m;
196    while(tmp!=NULL){
197      if(strcasecmp(tmp->name,key)==0){
198        return tmp;
199      }
200      tmp=tmp->next;
201    }
202    return NULL;
203  }
204
205
206  static map* getLastMap(map* m){
207    map* tmp=m;
208    while(tmp!=NULL){
209      if(tmp->next==NULL){
210        return tmp;
211      }
212      tmp=tmp->next;
213    }
214    return NULL;
215  }
216
217  static map* getMapFromMaps(maps* m,const char* key,const char* subkey){
218    maps* _tmpm=getMaps(m,key);
219    if(_tmpm!=NULL){
220      map* _ztmpm=getMap(_tmpm->content,subkey);
221      return _ztmpm;
222    }
223    else return NULL;
224  }
225
226  static char* getMapsAsKVP(maps* m,int length,int type){
227    char *dataInputsKVP=(char*) malloc(length*sizeof(char));
228    maps* curs=m;
229    int i=0;
230    while(curs!=NULL){
231      if(i==0)
232        if(type==0)
233          sprintf(dataInputsKVP,"%s=",curs->name);
234        else
235          sprintf(dataInputsKVP,"%s",curs->name);
236      else{
237        char *temp=strdup(dataInputsKVP);
238        if(type==0)
239          sprintf(dataInputsKVP,"%s;%s=",temp,curs->name);
240        else
241          sprintf(dataInputsKVP,"%s;%s",temp,curs->name);
242        free(temp);
243      }
244      map* icurs=curs->content;
245      if(type==0){
246        map* tmp=getMap(curs->content,"value");
247        char *temp=strdup(dataInputsKVP);
248        if(getMap(m->content,"xlink:href")!=NULL)
249          sprintf(dataInputsKVP,"%sReference",temp);
250        else
251          sprintf(dataInputsKVP,"%s%s",temp,icurs->value);
252        free(temp);
253      }
254      int j=0;
255      while(icurs!=NULL){
256        if(strcasecmp(icurs->name,"value")!=0 &&
257           strcasecmp(icurs->name,"Reference")!=0 &&
258           strcasecmp(icurs->name,"minOccurs")!=0 &&
259           strcasecmp(icurs->name,"maxOccurs")!=0 &&
260           strcasecmp(icurs->name,"inRequest")!=0){
261          char *itemp=strdup(dataInputsKVP);
262          sprintf(dataInputsKVP,"%s@%s=%s",itemp,icurs->name,icurs->value);
263          free(itemp);
264        }
265        icurs=icurs->next;
266      }
267      curs=curs->next;
268      i++;
269    }
270    return dataInputsKVP;
271  }
272
273
274  static void freeMap(map** mo){
275    map* _cursor=*mo;
276    if(_cursor!=NULL){
277#ifdef DEBUG
278      fprintf(stderr,"freeMap\n");
279#endif
280      free(_cursor->name);
281      free(_cursor->value);
282      if(_cursor->next!=NULL){
283        freeMap(&_cursor->next);
284        free(_cursor->next);
285      }
286    }
287  }
288
289  static void freeMaps(maps** mo){
290    maps* _cursor=*mo;
291    fflush(stderr);
292    if(_cursor && _cursor!=NULL){
293#ifdef DEBUG
294      fprintf(stderr,"freeMaps\n");
295#endif
296      free(_cursor->name);
297      if(_cursor->content!=NULL){
298        freeMap(&_cursor->content);
299        free(_cursor->content);
300      }
301      if(_cursor->next!=NULL){
302        freeMaps(&_cursor->next);
303        free(_cursor->next);
304      }
305    }
306  }
307
308  /**
309   * \brief Not named linked list
310   *
311   * Used to store informations about formats, such as mimeType, encoding ...
312   *
313   * An iotype is defined as :
314   *  - a content map,
315   *  - a pointer to the next iotype if any.
316   */
317  typedef struct iotype{
318    struct map* content;
319    struct iotype* next;
320  } iotype;
321
322  /**
323   * \brief Metadata information about input or output.
324   *
325   * The elements are used to store metadata informations defined in the ZCFG.
326   *
327   * An elements is defined as :
328   *  - a name,
329   *  - a content map,
330   *  - a metadata map,
331   *  - a format (possible values are LiteralData, ComplexData or
332   * BoundingBoxData),
333   *  - a default iotype,
334   *  - a pointer to the next elements id any.
335   */
336  typedef struct elements{
337    char* name;
338    struct map* content;
339    struct map* metadata;
340    char* format;
341    struct iotype* defaults;
342    struct iotype* supported;
343    struct elements* next;
344  } elements;
345
346  typedef struct service{
347    char* name;
348    struct map* content;
349    struct map* metadata;
350    struct elements* inputs;
351    struct elements* outputs; 
352  } service;
353
354  typedef struct services{
355    struct service* content; 
356    struct services* next; 
357  } services;
358
359  static bool hasElement(elements* e,const char* key){
360    elements* tmp=e;
361    while(tmp!=NULL){
362      if(strcasecmp(key,tmp->name)==0)
363        return true;
364      tmp=tmp->next;
365    }
366    return false;
367  }
368
369  static elements* getElements(elements* m,char *key){
370    elements* tmp=m;
371    while(tmp!=NULL){
372      if(strcasecmp(tmp->name,key)==0)
373        return tmp;
374      tmp=tmp->next;
375    }
376    return NULL;
377  }
378
379
380  static void freeIOType(iotype** i){
381    iotype* _cursor=*i;
382    if(_cursor!=NULL){
383      if(_cursor->next!=NULL){
384        freeIOType(&_cursor->next);
385        free(_cursor->next);
386      }
387      freeMap(&_cursor->content);
388      free(_cursor->content);
389    }
390  }
391
392  static void freeElements(elements** e){
393    elements* tmp=*e;
394    if(tmp!=NULL){
395      if(tmp->name!=NULL)
396        free(tmp->name);
397      freeMap(&tmp->content);
398      if(tmp->content!=NULL)
399        free(tmp->content);
400      freeMap(&tmp->metadata);
401      if(tmp->metadata!=NULL)
402        free(tmp->metadata);
403      if(tmp->format!=NULL)
404        free(tmp->format);
405      freeIOType(&tmp->defaults);
406      if(tmp->defaults!=NULL)
407        free(tmp->defaults);
408      freeIOType(&tmp->supported);
409      if(tmp->supported!=NULL){
410        free(tmp->supported);
411      }
412      freeElements(&tmp->next);
413      if(tmp->next!=NULL)
414        free(tmp->next);
415    }
416  }
417
418  static void freeService(service** s){
419    service* tmp=*s;
420    if(tmp!=NULL){
421      if(tmp->name!=NULL)
422        free(tmp->name);
423      freeMap(&tmp->content);
424      if(tmp->content!=NULL)
425        free(tmp->content);
426      freeMap(&tmp->metadata);
427      if(tmp->metadata!=NULL)
428        free(tmp->metadata);
429      freeElements(&tmp->inputs);
430      if(tmp->inputs!=NULL)
431        free(tmp->inputs);
432      freeElements(&tmp->outputs);
433      if(tmp->outputs!=NULL)
434        free(tmp->outputs);
435    }
436  }
437
438  static void addToMap(map* m,const char* n,const char* v){
439    if(hasKey(m,n)==false){
440      map* _cursor=m;
441      while(_cursor->next!=NULL)
442        _cursor=_cursor->next;
443      _cursor->next=createMap(n,v);
444    }
445    else{
446      map *tmp=getMap(m,n);
447      if(tmp->value!=NULL)
448        free(tmp->value);
449      tmp->value=strdup(v);
450    }
451  }
452
453  static void addMapToMap(map** mo,map* mi){
454    map* tmp=mi;
455    map* _cursor=*mo;
456    if(tmp==NULL){
457      if(_cursor!=NULL){
458        while(_cursor!=NULL)
459          _cursor=_cursor->next;
460        _cursor=NULL;
461      }else
462        *mo=NULL;
463    }
464    while(tmp!=NULL){
465      if(_cursor==NULL){
466        if(*mo==NULL)
467          *mo=createMap(tmp->name,tmp->value);
468        else
469          addToMap(*mo,tmp->name,tmp->value);
470      }
471      else{
472#ifdef DEBUG
473        fprintf(stderr,"_CURSOR\n");
474        dumpMap(_cursor);
475#endif
476        while(_cursor!=NULL)
477          _cursor=_cursor->next;
478        _cursor=createMap(tmp->name,tmp->value);
479        _cursor->next=NULL;
480      }
481      tmp=tmp->next;
482#ifdef DEBUG
483      fprintf(stderr,"MO\n");
484      dumpMap(*mo);
485#endif
486    }
487  }
488
489  static void addMapToIoType(iotype** io,map* mi){
490    iotype* tmp=*io;
491    while(tmp->next!=NULL){
492      tmp=tmp->next;
493    }
494    tmp->next=(iotype*)malloc(IOTYPE_SIZE);
495    tmp->next->content=NULL;
496    addMapToMap(&tmp->next->content,mi);
497    tmp->next->next=NULL;
498  }
499
500  static map* getMapOrFill(map* m,const char *key,char* value){
501    map* tmp=m;
502    map* tmpMap=getMap(tmp,key);
503    if(tmpMap==NULL){
504      addToMap(tmp,key,value);
505      tmpMap=getMap(tmp,key);
506    }
507    return tmpMap;
508  }
509
510  static bool contains(map* m,map* i){
511    while(i!=NULL){     
512      if(strcasecmp(i->name,"value")!=0 &&
513         strcasecmp(i->name,"xlink:href")!=0){
514        map *tmp;
515        if(hasKey(m,i->name) && (tmp=getMap(m,i->name))!=NULL && 
516           strcasecmp(i->value,tmp->value)!=0)
517          return false;
518      }
519      i=i->next;
520    }
521    return true;
522  }
523
524  static iotype* getIoTypeFromElement(elements* e,char *name, map* values){
525    elements* cursor=e;
526    while(cursor!=NULL){
527      if(strcasecmp(cursor->name,name)==0){
528        if(contains(cursor->defaults->content,values)==true)
529          return cursor->defaults;
530        else{
531          iotype* tmp=cursor->supported;
532          while(tmp!=NULL){
533            if(contains(tmp->content,values)==true)
534              return tmp;           
535            tmp=tmp->next;
536          }
537        }
538      }
539      cursor=cursor->next;
540    }
541    return NULL;
542  }
543
544  static maps* dupMaps(maps** mo){
545    maps* _cursor=*mo;
546    maps* res=NULL;
547    if(_cursor!=NULL){
548      res=(maps*)malloc(MAPS_SIZE);
549      res->name=strdup(_cursor->name);
550      res->content=NULL;
551      res->next=NULL;
552      map* mc=_cursor->content;
553      map* tmp=getMap(mc,"size");
554      char* tmpSized=NULL;
555      if(tmp!=NULL){
556        map* tmpV=getMap(mc,"value");
557        tmpSized=(char*)malloc((atoi(tmp->value)+1)*sizeof(char));
558        memmove(tmpSized,tmpV->value,atoi(tmp->value)*sizeof(char));
559      }
560      if(mc!=NULL){
561        addMapToMap(&res->content,mc);
562      }
563      if(tmp!=NULL){
564        map* tmpV=getMap(res->content,"value");
565        free(tmpV->value);
566        tmpV->value=(char*)malloc((atoi(tmp->value)+1)*sizeof(char));
567        memmove(tmpV->value,tmpSized,atoi(tmp->value)*sizeof(char));
568        tmpV->value[atoi(tmp->value)]=0;
569        free(tmpSized);
570      }
571      res->next=dupMaps(&_cursor->next);
572    }
573    return res;
574  }
575
576  static void addMapsToMaps(maps** mo,maps* mi){
577    maps* tmp=mi;
578    maps* _cursor=*mo;
579    while(tmp!=NULL){
580      if(_cursor==NULL){
581        *mo=dupMaps(&mi);
582        (*mo)->next=NULL;
583      }
584      else{
585        while(_cursor->next!=NULL)
586          _cursor=_cursor->next;
587        _cursor->next=dupMaps(&tmp);
588      }
589      tmp=tmp->next;
590    }
591  }
592
593
594  static void setMapInMaps(maps* m,const char* key,const char* subkey,const char *value){
595    maps* _tmpm=getMaps(m,key);
596    if(_tmpm!=NULL){
597      map* _ztmpm=getMap(_tmpm->content,subkey);
598      if(_ztmpm!=NULL){
599        if(_ztmpm->value!=NULL)
600          free(_ztmpm->value);
601        _ztmpm->value=strdup(value);
602      }else{
603        addToMap(_tmpm->content,subkey,value);
604      }
605    }
606  }
607
608
609  static void dumpElements(elements* e){
610    elements* tmp=e;
611    while(tmp!=NULL){
612      fprintf(stderr,"ELEMENT [%s]\n",tmp->name);
613      fprintf(stderr," > CONTENT [%s]\n",tmp->name);
614      dumpMap(tmp->content);
615      fprintf(stderr," > METADATA [%s]\n",tmp->name);
616      dumpMap(tmp->metadata);
617      fprintf(stderr," > FORMAT [%s]\n",tmp->format);
618      iotype* tmpio=tmp->defaults;
619      int ioc=0;
620      while(tmpio!=NULL){
621        fprintf(stderr," > DEFAULTS [%s] (%i)\n",tmp->name,ioc);
622        dumpMap(tmpio->content);
623        tmpio=tmpio->next;
624        ioc++;
625      }
626      tmpio=tmp->supported;
627      ioc=0;
628      while(tmpio!=NULL){
629        fprintf(stderr," > SUPPORTED [%s] (%i)\n",tmp->name,ioc);
630        dumpMap(tmpio->content);
631        tmpio=tmpio->next;
632        ioc++;
633      }
634      fprintf(stderr,"------------------\n");
635      tmp=tmp->next;
636    }
637  }
638
639  static elements* dupElements(elements* e){
640    elements* cursor=e;
641    elements* tmp=NULL;
642    if(cursor!=NULL){
643#ifdef DEBUG
644      fprintf(stderr,">> %s %i\n",__FILE__,__LINE__);
645      dumpElements(e);
646      fprintf(stderr,">> %s %i\n",__FILE__,__LINE__);
647#endif
648      tmp=(elements*)malloc(ELEMENTS_SIZE);
649      tmp->name=strdup(e->name);
650      tmp->content=NULL;
651      addMapToMap(&tmp->content,e->content);
652      tmp->metadata=NULL;
653      addMapToMap(&tmp->metadata,e->metadata);
654      tmp->format=strdup(e->format);
655      if(e->defaults!=NULL){
656        tmp->defaults=(iotype*)malloc(IOTYPE_SIZE);
657        tmp->defaults->content=NULL;
658        addMapToMap(&tmp->defaults->content,e->defaults->content);
659        tmp->defaults->next=NULL;
660#ifdef DEBUG
661        fprintf(stderr,">> %s %i\n",__FILE__,__LINE__);
662        dumpMap(tmp->defaults->content);
663#endif
664      }else
665        tmp->defaults=NULL;
666      if(e->supported!=NULL){
667        tmp->supported=(iotype*)malloc(IOTYPE_SIZE);
668        tmp->supported->content=NULL;
669        addMapToMap(&tmp->supported->content,e->supported->content);
670        tmp->supported->next=NULL;
671        iotype *tmp2=e->supported->next;
672        while(tmp2!=NULL){
673          addMapToIoType(&tmp->supported,tmp2->content);
674#ifdef DEBUG
675          fprintf(stderr,">> %s %i\n",__FILE__,__LINE__);
676          dumpMap(tmp->defaults->content);
677#endif
678          tmp2=tmp2->next;
679        }
680      }
681      else
682        tmp->supported=NULL;
683      tmp->next=dupElements(cursor->next);
684    }
685    return tmp;
686  }
687
688  static void addToElements(elements** m,elements* e){
689    elements* tmp=e;
690    if(*m==NULL){
691      *m=dupElements(tmp);
692    }else{
693      addToElements(&(*m)->next,tmp);
694    }
695  }
696
697  static void dumpService(service* s){
698    fprintf(stderr,"++++++++++++++++++\nSERVICE [%s]\n++++++++++++++++++\n",s->name);
699    if(s->content!=NULL){
700      fprintf(stderr,"CONTENT MAP\n");
701      dumpMap(s->content);
702      fprintf(stderr,"CONTENT METADATA\n");
703      dumpMap(s->metadata);
704    }
705    if(s->inputs!=NULL){
706      fprintf(stderr,"INPUT ELEMENTS [%s]\n------------------\n",s->name);
707      dumpElements(s->inputs);
708    }
709    if(s->outputs!=NULL){
710      fprintf(stderr,"OUTPUT ELEMENTS [%s]\n------------------\n",s->name);
711      dumpElements(s->outputs);
712    }
713    fprintf(stderr,"++++++++++++++++++\n");
714  }
715
716  static void mapsToCharXXX(maps* m,char*** c){
717    maps* tm=m;
718    int i=0;
719    int j=0;
720    char tmp[10][30][1024];
721    memset(tmp,0,1024*10*10);
722    while(tm!=NULL){
723      if(i>=10)
724        break;
725      strcpy(tmp[i][j],"name");
726      j++;
727      strcpy(tmp[i][j],tm->name);
728      j++;
729      map* tc=tm->content;
730      while(tc!=NULL){
731        if(j>=30)
732          break;
733        strcpy(tmp[i][j],tc->name);
734        j++;
735        strcpy(tmp[i][j],tc->value);
736        j++;
737        tc=tc->next;
738      }
739      tm=tm->next;
740      j=0;
741      i++;
742    }
743    memcpy(c,tmp,10*10*1024);
744  }
745
746  static void charxxxToMaps(char*** c,maps**m){
747    maps* trorf=*m;
748    int i,j;
749    char tmp[10][30][1024];
750    memcpy(tmp,c,10*30*1024);
751    for(i=0;i<10;i++){
752      if(strlen(tmp[i][1])==0)
753        break;
754      trorf->name=tmp[i][1];
755      trorf->content=NULL;
756      trorf->next=NULL;
757      for(j=2;j<29;j+=2){
758        if(strlen(tmp[i][j+1])==0)
759          break;
760        if(trorf->content==NULL)
761          trorf->content=createMap(tmp[i][j],tmp[i][j+1]);
762        else
763          addToMap(trorf->content,tmp[i][j],tmp[i][j+1]);
764      }
765      trorf=trorf->next;
766    }
767    m=&trorf;
768  }
769
770#ifdef __cplusplus
771}
772#endif
773
774#endif
Note: See TracBrowser for help on using the repository browser.

Search

ZOO Sponsors

http://www.zoo-project.org/trac/chrome/site/img/geolabs-logo.pnghttp://www.zoo-project.org/trac/chrome/site/img/neogeo-logo.png http://www.zoo-project.org/trac/chrome/site/img/apptech-logo.png http://www.zoo-project.org/trac/chrome/site/img/3liz-logo.png http://www.zoo-project.org/trac/chrome/site/img/gateway-logo.png

Become a sponsor !

Knowledge partners

http://www.zoo-project.org/trac/chrome/site/img/ocu-logo.png http://www.zoo-project.org/trac/chrome/site/img/gucas-logo.png http://www.zoo-project.org/trac/chrome/site/img/polimi-logo.png http://www.zoo-project.org/trac/chrome/site/img/fem-logo.png http://www.zoo-project.org/trac/chrome/site/img/supsi-logo.png http://www.zoo-project.org/trac/chrome/site/img/cumtb-logo.png

Become a knowledge partner

Related links

http://zoo-project.org/img/ogclogo.png http://zoo-project.org/img/osgeologo.png