[1] | 1 | %{ |
---|
| 2 | //====================================================== |
---|
| 3 | /** |
---|
| 4 | * Thx to Jean-Marie CODOL and Naitan GROLLEMUND |
---|
| 5 | * copyright 2009 GeoLabs SARL |
---|
| 6 | * Author : Gérald FENOY |
---|
| 7 | * |
---|
| 8 | */ |
---|
| 9 | //====================================================== |
---|
| 10 | |
---|
| 11 | #include <string> |
---|
| 12 | #include <stdio.h> |
---|
| 13 | #include <ctype.h> |
---|
| 14 | #include <service.h> |
---|
[9] | 15 | //#include <vector> |
---|
[1] | 16 | |
---|
| 17 | static int tmp_count=1; |
---|
| 18 | static int defaultsc=0; |
---|
| 19 | static bool wait_maincontent=true; |
---|
| 20 | static bool wait_mainmetadata=false; |
---|
| 21 | static bool wait_metadata=false; |
---|
| 22 | static bool wait_inputs=false; |
---|
| 23 | static bool wait_defaults=false; |
---|
| 24 | static bool wait_supporteds=false; |
---|
| 25 | static bool wait_outputs=false; |
---|
| 26 | static bool wait_data=false; |
---|
| 27 | static int services_c=0; |
---|
| 28 | static service* my_service=NULL; |
---|
| 29 | static map* previous_content=NULL; |
---|
| 30 | static map* current_content=NULL; |
---|
| 31 | static elements* current_element=NULL; |
---|
| 32 | static map* scontent=NULL; |
---|
| 33 | static char* curr_key; |
---|
| 34 | static int debug=0; |
---|
| 35 | static int data=-1; |
---|
| 36 | static int previous_data=0; |
---|
| 37 | static int current_data=0; |
---|
| 38 | static char* myFinalObjectAsJSON="{"; |
---|
| 39 | // namespace |
---|
| 40 | using namespace std; |
---|
| 41 | //====================================================== |
---|
| 42 | |
---|
| 43 | // srerror |
---|
| 44 | void srerror(char *s); |
---|
| 45 | //====================================================== |
---|
| 46 | |
---|
| 47 | // usage () |
---|
| 48 | void usage(void) ; |
---|
| 49 | //====================================================== |
---|
| 50 | |
---|
| 51 | // srdebug |
---|
| 52 | extern int srdebug; |
---|
| 53 | //====================================================== |
---|
| 54 | |
---|
| 55 | extern char srtext[]; |
---|
| 56 | |
---|
| 57 | // srlineno |
---|
| 58 | extern int srlineno; |
---|
| 59 | //====================================================== |
---|
| 60 | |
---|
| 61 | // srin |
---|
| 62 | extern FILE* srin; |
---|
| 63 | //====================================================== |
---|
| 64 | |
---|
| 65 | // srlex |
---|
| 66 | extern int srlex(void); |
---|
[9] | 67 | extern int srlex_destroy(void); |
---|
[1] | 68 | |
---|
[9] | 69 | //vector<char*> lattribute; |
---|
[1] | 70 | |
---|
| 71 | %} |
---|
| 72 | |
---|
| 73 | |
---|
| 74 | |
---|
| 75 | %union |
---|
| 76 | {char * s;char* chaine;char* key;char* val;} |
---|
| 77 | |
---|
| 78 | // jetons // |
---|
| 79 | %token <s> ID |
---|
| 80 | %token <s> CHAINE |
---|
| 81 | /* STARTXMLDECL et ENDXMLDECL qui sont <?xml et ?>*/ |
---|
| 82 | %token STARTXMLDECL ENDXMLDECL |
---|
| 83 | //====================================================== |
---|
| 84 | /* version="xxx" et encoding="xxx" */ |
---|
| 85 | %token VERSIONDECL ENCODINGDECL SDDECL |
---|
| 86 | //====================================================== |
---|
| 87 | /* < et > */ |
---|
| 88 | %token INFCAR SUPCAR |
---|
| 89 | //====================================================== |
---|
| 90 | /* / = a1 texte "texte" */ |
---|
| 91 | %token SLASH Eq CHARDATA ATTVALUE PAIR SPAIR EPAIR ANID |
---|
| 92 | %type <chaine> PAIR |
---|
| 93 | %type <chaine> EPAIR |
---|
| 94 | %type <chaine> SPAIR |
---|
| 95 | //====================================================== |
---|
| 96 | /* <!-- xxx -> <? xxx yyy ?> */ |
---|
| 97 | %token PI PIERROR /** COMMENT **/ |
---|
| 98 | //====================================================== |
---|
| 99 | /* <!-- xxx -> <? xxx yyy ?> */ |
---|
| 100 | %token ERREURGENERALE CDATA WHITESPACE NEWLINE |
---|
| 101 | %type <s> STag |
---|
| 102 | %type <s> ETag |
---|
| 103 | %type <s> ANID |
---|
| 104 | //====================================================== |
---|
| 105 | // %start |
---|
| 106 | //====================================================== |
---|
| 107 | |
---|
| 108 | %% |
---|
| 109 | // document <//=== |
---|
| 110 | //====================================================== |
---|
| 111 | // regle 1 |
---|
| 112 | // on est a la racine du fichier xml |
---|
| 113 | //====================================================== |
---|
| 114 | document |
---|
| 115 | : miscetoile element miscetoile {} |
---|
| 116 | | contentetoile processid contentetoile document {} |
---|
| 117 | ; |
---|
| 118 | |
---|
| 119 | miscetoile |
---|
| 120 | : miscetoile PIERROR { srerror("processing instruction begining with <?xml ?> impossible\n");} |
---|
| 121 | | miscetoile PI {} |
---|
| 122 | | {} |
---|
| 123 | ; |
---|
| 124 | // element |
---|
| 125 | //====================================================== |
---|
| 126 | // regle 39 |
---|
| 127 | // OUVRANTE CONTENU FERMANTE obligatoirement |
---|
| 128 | // ou neutre |
---|
| 129 | // on ne peut pas avoir Epsilon |
---|
| 130 | // un fichier xml ne peut pas etre vide ou seulement avec un prolog |
---|
| 131 | //====================================================== |
---|
| 132 | element |
---|
| 133 | : STag contentetoile ETag |
---|
| 134 | { |
---|
| 135 | } |
---|
[20] | 136 | |
---|
[1] | 137 | // pour neutre |
---|
| 138 | // on a rien a faire, meme pas renvoyer l identificateur de balise |
---|
| 139 | // vu qu'il n y a pas de comparaison d'identificateurs avec un balise jumelle . |
---|
| 140 | | EmptyElemTag {} |
---|
| 141 | ; |
---|
[20] | 142 | |
---|
[1] | 143 | //====================================================== |
---|
| 144 | // STag |
---|
| 145 | //====================================================== |
---|
| 146 | // regle 40 |
---|
| 147 | // BALISE OUVRANTE |
---|
| 148 | // on est obligé de faire appel a infcar et supcar |
---|
| 149 | // pour acceder aux start conditions DANSBALISE et INITIAL |
---|
| 150 | //====================================================== |
---|
| 151 | STag |
---|
| 152 | : INFCAR ID Attributeetoile SUPCAR |
---|
| 153 | { |
---|
| 154 | if(my_service->content==NULL){ |
---|
| 155 | #ifdef DEBUG_SERVICE_CONF |
---|
| 156 | fprintf(stderr,"NO CONTENT\n"); |
---|
| 157 | #endif |
---|
[9] | 158 | addMapToMap(&my_service->content,current_content); |
---|
| 159 | freeMap(¤t_content); |
---|
| 160 | free(current_content); |
---|
[1] | 161 | current_content=NULL; |
---|
| 162 | my_service->metadata=NULL; |
---|
| 163 | wait_maincontent=false; |
---|
| 164 | } |
---|
[9] | 165 | if(strncasecmp($2,"DataInputs",10)==0){ |
---|
[1] | 166 | if(wait_mainmetadata==true){ |
---|
[9] | 167 | addMapToMap(&my_service->metadata,current_content); |
---|
| 168 | freeMap(¤t_content); |
---|
| 169 | free(current_content); |
---|
[1] | 170 | current_content=NULL; |
---|
| 171 | } |
---|
| 172 | if(current_element==NULL){ |
---|
| 173 | #ifdef DEBUG_SERVICE_CONF |
---|
| 174 | fprintf(stderr,"(DATAINPUTS - 184) FREE current_element\n"); |
---|
| 175 | #endif |
---|
| 176 | freeElements(¤t_element); |
---|
| 177 | free(current_element); |
---|
| 178 | #ifdef DEBUG_SERVICE_CONF |
---|
| 179 | fprintf(stderr,"(DATAINPUTS - 186) ALLOCATE current_element\n"); |
---|
| 180 | #endif |
---|
| 181 | current_element=NULL; |
---|
| 182 | current_element=(elements*)malloc(ELEMENTS_SIZE); |
---|
| 183 | current_element->name=NULL; |
---|
| 184 | current_element->content=NULL; |
---|
| 185 | current_element->metadata=NULL; |
---|
| 186 | current_element->format=NULL; |
---|
| 187 | current_element->defaults=NULL; |
---|
| 188 | current_element->supported=NULL; |
---|
| 189 | current_element->next=NULL; |
---|
| 190 | } |
---|
| 191 | wait_inputs=true; |
---|
| 192 | current_data=1; |
---|
| 193 | previous_data=1; |
---|
| 194 | } |
---|
| 195 | else |
---|
[9] | 196 | if(strncasecmp($2,"DataOutputs",11)==0){ |
---|
[1] | 197 | if(wait_inputs==true){ |
---|
| 198 | #ifdef DEBUG_SERVICE_CONF |
---|
| 199 | fprintf(stderr,"(DATAOUTPUTS) DUP INPUTS current_element\n"); |
---|
[9] | 200 | fprintf(stderr,"CURRENT_ELEMENT\n"); |
---|
| 201 | dumpElements(current_element); |
---|
| 202 | fprintf(stderr,"SERVICE INPUTS\n"); |
---|
| 203 | dumpElements(my_service->inputs); |
---|
| 204 | dumpService(my_service); |
---|
[1] | 205 | #endif |
---|
[9] | 206 | if(my_service->inputs==NULL){ |
---|
[1] | 207 | my_service->inputs=dupElements(current_element); |
---|
[9] | 208 | my_service->inputs->next=NULL; |
---|
| 209 | } |
---|
[57] | 210 | else if(current_element!=NULL && current_element->name!=NULL){ |
---|
[9] | 211 | addToElements(&my_service->inputs,current_element); |
---|
[57] | 212 | } |
---|
[1] | 213 | #ifdef DEBUG_SERVICE_CONF |
---|
[9] | 214 | fprintf(stderr,"CURRENT_ELEMENT\n"); |
---|
[1] | 215 | dumpElements(current_element); |
---|
[9] | 216 | fprintf(stderr,"SERVICE INPUTS\n"); |
---|
[1] | 217 | dumpElements(my_service->inputs); |
---|
| 218 | fprintf(stderr,"(DATAOUTPUTS) FREE current_element\n"); |
---|
| 219 | #endif |
---|
| 220 | freeElements(¤t_element); |
---|
| 221 | free(current_element); |
---|
| 222 | current_element=NULL; |
---|
| 223 | wait_inputs=false; |
---|
| 224 | } |
---|
| 225 | if(current_element==NULL){ |
---|
| 226 | #ifdef DEBUG_SERVICE_CONF |
---|
| 227 | fprintf(stderr,"(DATAOUTPUTS - 206) ALLOCATE current_element (%s)\n",$2); |
---|
| 228 | #endif |
---|
| 229 | current_element=(elements*)malloc(ELEMENTS_SIZE); |
---|
| 230 | current_element->name=NULL; |
---|
| 231 | current_element->content=NULL; |
---|
| 232 | current_element->metadata=NULL; |
---|
| 233 | current_element->format=NULL; |
---|
| 234 | current_element->defaults=NULL; |
---|
| 235 | current_element->supported=NULL; |
---|
| 236 | current_element->next=NULL; |
---|
| 237 | } |
---|
| 238 | wait_outputs=true; |
---|
| 239 | current_data=2; |
---|
| 240 | previous_data=1; |
---|
| 241 | } |
---|
| 242 | else |
---|
[9] | 243 | if(strncasecmp($2,"MetaData",8)==0){ |
---|
[1] | 244 | current_data=3; |
---|
| 245 | if(current_element!=NULL){ |
---|
| 246 | wait_metadata=true; |
---|
| 247 | #ifdef DEBUG_SERVICE_CONF |
---|
| 248 | fprintf(stderr,"add current_content to current_element->content\n"); |
---|
| 249 | fprintf(stderr,"LINE 247"); |
---|
| 250 | #endif |
---|
| 251 | addMapToMap(¤t_element->content,current_content); |
---|
| 252 | freeMap(¤t_content); |
---|
| 253 | free(current_content); |
---|
| 254 | } |
---|
| 255 | else{ |
---|
| 256 | wait_mainmetadata=true; |
---|
| 257 | } |
---|
| 258 | current_content=NULL; |
---|
| 259 | } |
---|
| 260 | else |
---|
[9] | 261 | if(strncasecmp($2,"ComplexData",11)==0 || strncasecmp($2,"LiteralData",10)==0 |
---|
| 262 | || strncasecmp($2,"ComplexOutput",13)==0 || strncasecmp($2,"LiteralOutput",12)==0){ |
---|
[1] | 263 | current_data=4; |
---|
| 264 | if(wait_metadata==true){ |
---|
| 265 | if(current_content!=NULL){ |
---|
[9] | 266 | addMapToMap(¤t_element->metadata,current_content); |
---|
[1] | 267 | current_element->next=NULL; |
---|
[57] | 268 | current_element->format=strdup($2); |
---|
[1] | 269 | current_element->defaults=NULL; |
---|
[9] | 270 | current_element->supported=NULL; |
---|
| 271 | freeMap(¤t_content); |
---|
| 272 | free(current_content); |
---|
[1] | 273 | } |
---|
[9] | 274 | }else{ |
---|
| 275 | // No MainMetaData |
---|
| 276 | addMapToMap(¤t_element->content,current_content); |
---|
| 277 | freeMap(¤t_content); |
---|
| 278 | free(current_content); |
---|
[1] | 279 | current_element->metadata=NULL; |
---|
| 280 | current_element->next=NULL; |
---|
[57] | 281 | current_element->format=strdup($2); |
---|
[1] | 282 | current_element->defaults=NULL; |
---|
[9] | 283 | current_element->supported=NULL; |
---|
[1] | 284 | } |
---|
| 285 | current_content=NULL; |
---|
| 286 | wait_metadata=false; |
---|
| 287 | } |
---|
| 288 | else |
---|
[9] | 289 | if(strncasecmp($2,"Default",7)==0){ |
---|
[1] | 290 | wait_defaults=true; |
---|
| 291 | current_data=5; |
---|
| 292 | } |
---|
| 293 | else |
---|
[9] | 294 | if(strncasecmp($2,"Supported",9)==0){ |
---|
[1] | 295 | wait_supporteds=true; |
---|
| 296 | if(wait_defaults==true){ |
---|
| 297 | defaultsc++; |
---|
| 298 | } |
---|
| 299 | current_data=5; |
---|
| 300 | } |
---|
| 301 | #ifdef DEBUG_SERVICE_CONF |
---|
| 302 | printf("* Identifiant : %s\n",$2); |
---|
| 303 | #endif |
---|
| 304 | } |
---|
| 305 | ; |
---|
[20] | 306 | |
---|
[1] | 307 | //====================================================== |
---|
| 308 | // Attributeetoile |
---|
| 309 | //====================================================== |
---|
| 310 | // regle 41 |
---|
| 311 | // une liste qui peut etre vide d'attributs |
---|
| 312 | // utiliser la récursivité a gauche |
---|
| 313 | //====================================================== |
---|
| 314 | Attributeetoile |
---|
| 315 | : Attributeetoile attribute {} |
---|
| 316 | | {/* Epsilon */} |
---|
| 317 | ; |
---|
[20] | 318 | |
---|
[1] | 319 | //====================================================== |
---|
| 320 | // attribute |
---|
| 321 | //====================================================== |
---|
| 322 | // regle 41 |
---|
| 323 | // un attribut est compose d'un identifiant |
---|
| 324 | // d'un "=" |
---|
| 325 | // et d'une définition de chaine de caractere |
---|
| 326 | // ( "xxx" ou 'xxx' ) |
---|
| 327 | //====================================================== |
---|
| 328 | attribute |
---|
| 329 | : ID Eq ATTVALUE |
---|
| 330 | { |
---|
| 331 | #ifdef DEBUG_SERVICE_CONF |
---|
| 332 | printf ("attribute : %s\n",$1) ; |
---|
| 333 | #endif |
---|
| 334 | } |
---|
| 335 | ; |
---|
[20] | 336 | |
---|
[1] | 337 | //====================================================== |
---|
| 338 | // EmptyElemTag |
---|
| 339 | //====================================================== |
---|
| 340 | // regle 44 |
---|
| 341 | // ICI ON DEFINIT NEUTRE |
---|
| 342 | // on ne renvoie pas de char* |
---|
| 343 | // parce qu'il n'y a pas de comparaisons a faire |
---|
| 344 | // avec un identifiant d'une balise jumelle |
---|
| 345 | //====================================================== |
---|
| 346 | EmptyElemTag |
---|
[9] | 347 | : INFCAR ID Attributeetoile SLASH SUPCAR {/*lattribute.clear();/* voir Stag */} |
---|
[1] | 348 | ; |
---|
[20] | 349 | |
---|
[1] | 350 | //====================================================== |
---|
| 351 | // ETag |
---|
| 352 | //====================================================== |
---|
| 353 | // regle 42 |
---|
| 354 | // BALISE FERMANTE |
---|
| 355 | // les separateurs après ID sont filtrés |
---|
| 356 | //====================================================== |
---|
| 357 | ETag |
---|
| 358 | : INFCAR SLASH ID SUPCAR |
---|
| 359 | { |
---|
| 360 | if(strcmp($3,"DataInputs")==0){ |
---|
| 361 | current_data=1; |
---|
| 362 | } |
---|
| 363 | if(strcmp($3,"DataOutputs")==0){ |
---|
| 364 | current_data=2; |
---|
| 365 | } |
---|
| 366 | if(strcmp($3,"MetaData")==0){ |
---|
| 367 | current_data=previous_data; |
---|
| 368 | } |
---|
| 369 | if(strcmp($3,"ComplexData")==0 || strcmp($3,"LiteralData")==0 |
---|
| 370 | || strcmp($3,"ComplexOutput")==0 || strcmp($3,"LiteralOutput")==0){ |
---|
| 371 | current_content=NULL; |
---|
| 372 | } |
---|
| 373 | if(strcmp($3,"Default")==0){ |
---|
| 374 | current_data=previous_data; |
---|
| 375 | if(current_element->defaults==NULL){ |
---|
[9] | 376 | current_element->defaults=(iotype*)malloc(IOTYPE_SIZE); |
---|
| 377 | current_element->defaults->content=NULL; |
---|
[1] | 378 | } |
---|
[9] | 379 | addMapToMap(¤t_element->defaults->content,current_content); |
---|
| 380 | freeMap(¤t_content); |
---|
| 381 | free(current_content); |
---|
[1] | 382 | current_element->defaults->next=NULL; |
---|
| 383 | wait_defaults=false; |
---|
| 384 | current_content=NULL; |
---|
| 385 | current_element->supported=NULL; |
---|
[57] | 386 | current_element->next=NULL; |
---|
[1] | 387 | } |
---|
| 388 | if(strcmp($3,"Supported")==0){ |
---|
| 389 | current_data=previous_data; |
---|
| 390 | if(current_element->supported==NULL){ |
---|
[57] | 391 | if(current_content!=NULL){ |
---|
| 392 | current_element->supported=(iotype*)malloc(IOTYPE_SIZE); |
---|
| 393 | current_element->supported->content=NULL; |
---|
| 394 | addMapToMap(¤t_element->supported->content,current_content); |
---|
| 395 | freeMap(¤t_content); |
---|
| 396 | free(current_content); |
---|
| 397 | current_element->supported->next=NULL; |
---|
| 398 | current_content=NULL; |
---|
| 399 | }else{ |
---|
| 400 | current_element->supported=NULL; |
---|
| 401 | current_element->next=NULL; |
---|
| 402 | } |
---|
[1] | 403 | } |
---|
[9] | 404 | else{ |
---|
[57] | 405 | #ifdef DEBUG_SERVICE_CONF |
---|
[9] | 406 | fprintf(stderr,"SECOND SUPPORTED FORMAT !!!!\n"); |
---|
[1] | 407 | #endif |
---|
[57] | 408 | addMapToIoType(¤t_element->supported,current_content); |
---|
[9] | 409 | freeMap(¤t_content); |
---|
| 410 | free(current_content); |
---|
| 411 | current_content=NULL; |
---|
[57] | 412 | #ifdef DEBUG_SERVICE_CONF |
---|
| 413 | dumpElements(current_element); |
---|
[9] | 414 | fprintf(stderr,"SECOND SUPPORTED FORMAT !!!!\n"); |
---|
| 415 | #endif |
---|
[1] | 416 | } |
---|
| 417 | current_content=NULL; |
---|
| 418 | } |
---|
| 419 | } |
---|
| 420 | ; |
---|
[20] | 421 | |
---|
[1] | 422 | //====================================================== |
---|
| 423 | // contentetoile |
---|
| 424 | //====================================================== |
---|
| 425 | // regle 43 |
---|
| 426 | // ENTRE 2 BALISES |
---|
| 427 | // entre 2 balises, on peut avoir : |
---|
| 428 | // --- OUVRANTE CONTENU FERMANTE (recursivement !) |
---|
| 429 | // --- DU TEXTE quelconque |
---|
| 430 | // --- COMMENTS |
---|
| 431 | // --- DES PROCESSES INSTRUCTIONS |
---|
| 432 | // --- /!\ il peut y avoir une processing instruction invalide ! <?xml |
---|
| 433 | // --- EPSILON |
---|
| 434 | // ### et/ou tout ca a la suite en nombre indeterminé |
---|
| 435 | // ### donc c'est un operateur etoile (*) |
---|
| 436 | //====================================================== |
---|
| 437 | contentetoile |
---|
| 438 | : contentetoile element {} |
---|
| 439 | | contentetoile PIERROR {srerror("processing instruction <?xml ?> impossible\n");} |
---|
| 440 | | contentetoile PI {} |
---|
| 441 | ///// on filtre les commentaires | contentetoile comment {} |
---|
| 442 | | contentetoile NEWLINE {/*printf("NEWLINE FOUND !!");*/} |
---|
| 443 | | contentetoile pair {} |
---|
| 444 | | contentetoile processid {} |
---|
| 445 | | contentetoile texteinterbalise {} |
---|
| 446 | | contentetoile CDATA {} |
---|
| 447 | | {/* Epsilon */} |
---|
| 448 | ; |
---|
[20] | 449 | |
---|
[1] | 450 | //====================================================== |
---|
| 451 | // texteinterbalise |
---|
| 452 | //====================================================== |
---|
| 453 | // regle 14 |
---|
| 454 | // DU TEXTE quelconque |
---|
| 455 | // c'est du CHARDATA |
---|
| 456 | // il y a eut un probleme avec ID, |
---|
| 457 | // on a mis des starts conditions, |
---|
| 458 | // maintenant on croise les ID dans les dbalises |
---|
| 459 | // et des CHARDATA hors des balises |
---|
| 460 | //====================================================== |
---|
| 461 | texteinterbalise |
---|
| 462 | : CHARDATA {} |
---|
| 463 | ; |
---|
| 464 | //====================================================== |
---|
| 465 | |
---|
[9] | 466 | pair: PAIR { if(debug) fprintf(stderr,"PAIR FOUND !!\n");if(curr_key!=NULL){free(curr_key);curr_key=NULL;} } |
---|
[1] | 467 | | EPAIR { |
---|
| 468 | #ifdef DEBUG_SERVICE_CONF |
---|
| 469 | fprintf(stderr,"EPAIR FOUND !! \n"); |
---|
| 470 | fprintf(stderr,"[%s=>%s]\n",curr_key,$1); |
---|
| 471 | fprintf(stderr,"[ZOO: service_conf.y line 482 free(%s)]\n",curr_key); |
---|
| 472 | dumpMap(current_content); |
---|
| 473 | fflush(stderr); |
---|
| 474 | #endif |
---|
| 475 | if(current_content==NULL){ |
---|
| 476 | #ifdef DEBUG_SERVICE_CONF |
---|
| 477 | fprintf(stderr,"[ZOO: service_conf.y line 482 free(%s)]\n",curr_key); |
---|
| 478 | #endif |
---|
| 479 | current_content=createMap(curr_key,$1); |
---|
| 480 | #ifdef DEBUG_SERVICE_CONF |
---|
| 481 | fprintf(stderr,"[ZOO: service_conf.y line 482 free(%s)]\n",curr_key); |
---|
| 482 | #endif |
---|
| 483 | //current_content->next=NULL; |
---|
| 484 | } |
---|
| 485 | else{ |
---|
| 486 | #ifdef DEBUG_SERVICE_CONF |
---|
| 487 | dumpMap(current_content); |
---|
| 488 | fprintf(stderr,"addToMap(current_content,%s,%s) !! \n",curr_key,$1); |
---|
| 489 | #endif |
---|
| 490 | addToMap(current_content,curr_key,$1); |
---|
| 491 | #ifdef DEBUG_SERVICE_CONF |
---|
| 492 | fprintf(stderr,"addToMap(current_content,%s,%s) end !! \n",curr_key,$1); |
---|
| 493 | #endif |
---|
| 494 | } |
---|
| 495 | #ifdef DEBUG_SERVICE_CONF |
---|
| 496 | fprintf(stderr,"EPAIR FOUND !! \n"); |
---|
| 497 | fprintf(stderr,"[%s=>%s]\n",curr_key,$1); |
---|
| 498 | fprintf(stderr,"[ZOO: service_conf.y line 505 free(%s)]\n",curr_key); |
---|
| 499 | fflush(stderr); |
---|
| 500 | #endif |
---|
[9] | 501 | if(curr_key!=NULL){ |
---|
| 502 | free(curr_key); |
---|
| 503 | curr_key=NULL; |
---|
[1] | 504 | } |
---|
[9] | 505 | } |
---|
[60] | 506 | | SPAIR { curr_key=strdup($1);if(debug) fprintf(stderr,"SPAIR FOUND !!\n"); } |
---|
[1] | 507 | ; |
---|
| 508 | |
---|
| 509 | |
---|
| 510 | processid |
---|
| 511 | : ANID { |
---|
| 512 | if(data==-1){ |
---|
| 513 | data=1; |
---|
[9] | 514 | char *cen=strdup($1); |
---|
| 515 | my_service->name=(char*)malloc((strlen(cen)-1)*sizeof(char*)); |
---|
| 516 | cen[strlen(cen)-1]=0; |
---|
| 517 | cen+=1; |
---|
| 518 | sprintf(my_service->name,"%s",cen); |
---|
| 519 | cen-=1; |
---|
| 520 | free(cen); |
---|
[1] | 521 | my_service->content=NULL; |
---|
| 522 | my_service->metadata=NULL; |
---|
| 523 | my_service->inputs=NULL; |
---|
| 524 | my_service->outputs=NULL; |
---|
| 525 | } else { |
---|
| 526 | if(current_data==1){ |
---|
| 527 | if(my_service->content!=NULL && current_element->name!=NULL){ |
---|
| 528 | if(my_service->inputs==NULL){ |
---|
| 529 | my_service->inputs=dupElements(current_element); |
---|
[9] | 530 | my_service->inputs->next=NULL; |
---|
[1] | 531 | tmp_count++; |
---|
| 532 | } |
---|
| 533 | else{ |
---|
[9] | 534 | addToElements(&my_service->inputs,current_element); |
---|
[1] | 535 | } |
---|
| 536 | #ifdef DEBUG_SERVICE_CONF |
---|
[9] | 537 | fprintf(stderr,"(%s %d)FREE current_element (after adding to allread existing inputs)",__FILE__,__LINE__); |
---|
| 538 | dumpElements(current_element); |
---|
| 539 | fprintf(stderr,"(%s %d)FREE current_element (after adding to allread existing inputs)",__FILE__,__LINE__); |
---|
[1] | 540 | dumpElements(my_service->inputs); |
---|
| 541 | #endif |
---|
[9] | 542 | freeElements(¤t_element); |
---|
[1] | 543 | free(current_element); |
---|
| 544 | current_element=NULL; |
---|
| 545 | #ifdef DEBUG_SERVICE_CONF |
---|
| 546 | fprintf(stderr,"(DATAINPUTS - 489) ALLOCATE current_element\n"); |
---|
| 547 | #endif |
---|
| 548 | current_element=(elements*)malloc(ELEMENTS_SIZE); |
---|
| 549 | current_element->name=NULL; |
---|
| 550 | current_element->content=NULL; |
---|
| 551 | current_element->metadata=NULL; |
---|
| 552 | current_element->format=NULL; |
---|
| 553 | current_element->defaults=NULL; |
---|
| 554 | current_element->supported=NULL; |
---|
| 555 | current_element->next=NULL; |
---|
| 556 | } |
---|
| 557 | if(current_element->name==NULL){ |
---|
| 558 | #ifdef DEBUG_SERVICE_CONF |
---|
| 559 | fprintf(stderr,"NAME IN %s (current - %s)\n", |
---|
| 560 | $1,current_element->name); |
---|
| 561 | #endif |
---|
| 562 | wait_inputs=true; |
---|
| 563 | #ifdef DEBUG_SERVICE_CONF |
---|
| 564 | fprintf(stderr,"(DATAINPUTS - 501) SET NAME OF current_element\n"); |
---|
| 565 | #endif |
---|
[9] | 566 | char *cen=strdup($1); |
---|
| 567 | current_element->name=(char*)malloc((strlen(cen)-1)*sizeof(char*)); |
---|
| 568 | cen[strlen(cen)-1]=0; |
---|
| 569 | cen+=1; |
---|
| 570 | sprintf(current_element->name,"%s",cen); |
---|
| 571 | cen-=1; |
---|
| 572 | free(cen); |
---|
[1] | 573 | #ifdef DEBUG_SERVICE_CONF |
---|
| 574 | fprintf(stderr,"NAME IN %s (current - %s)\n",$1,current_element->name); |
---|
| 575 | #endif |
---|
| 576 | current_element->content=NULL; |
---|
| 577 | current_element->metadata=NULL; |
---|
| 578 | current_element->format=NULL; |
---|
| 579 | current_element->defaults=NULL; |
---|
| 580 | current_element->supported=NULL; |
---|
| 581 | current_element->next=NULL; |
---|
| 582 | #ifdef DEBUG_SERVICE_CONF |
---|
| 583 | fprintf(stderr,"NAME IN %s (current - %s)\n",$1,current_element->name); |
---|
| 584 | #endif |
---|
| 585 | } |
---|
| 586 | } |
---|
| 587 | else |
---|
| 588 | if(current_data==2){ |
---|
| 589 | if(wait_inputs==true){ |
---|
[57] | 590 | if(current_element!=NULL && current_element->name!=NULL){ |
---|
[1] | 591 | if(my_service->inputs==NULL){ |
---|
| 592 | my_service->inputs=dupElements(current_element); |
---|
[9] | 593 | my_service->inputs->next=NULL; |
---|
[1] | 594 | } |
---|
| 595 | else{ |
---|
| 596 | #ifdef DEBUG_SERVICE_CONF |
---|
| 597 | fprintf(stderr,"LAST NAME IN %s (current - %s)\n",$1,current_element->name); |
---|
| 598 | #endif |
---|
[9] | 599 | addToElements(&my_service->inputs,current_element); |
---|
[1] | 600 | } |
---|
| 601 | #ifdef DEBUG_SERVICE_CONF |
---|
| 602 | dumpElements(current_element); |
---|
[9] | 603 | fprintf(stderr,"(DATAOUTPUTS) FREE current_element %s %i\n",__FILE__,__LINE__); |
---|
[1] | 604 | #endif |
---|
| 605 | freeElements(¤t_element); |
---|
[9] | 606 | free(current_element); |
---|
[1] | 607 | current_element=NULL; |
---|
| 608 | #ifdef DEBUG_SERVICE_CONF |
---|
[9] | 609 | fprintf(stderr,"(DATAOUTPUTS) ALLOCATE current_element %s %i\n",__FILE__,__LINE__); |
---|
[1] | 610 | #endif |
---|
| 611 | current_element=(elements*)malloc(ELEMENTS_SIZE); |
---|
| 612 | current_element->name=NULL; |
---|
| 613 | current_element->content=NULL; |
---|
| 614 | current_element->metadata=NULL; |
---|
| 615 | current_element->format=NULL; |
---|
| 616 | current_element->defaults=NULL; |
---|
| 617 | current_element->supported=NULL; |
---|
| 618 | current_element->next=NULL; |
---|
| 619 | } |
---|
| 620 | if(current_element->name==NULL){ |
---|
| 621 | #ifdef DEBUG_SERVICE_CONF |
---|
| 622 | fprintf(stderr,"NAME OUT %s\n",$1); |
---|
| 623 | fprintf(stderr,"(DATAOUTPUTS - 545) SET NAME OF current_element\n"); |
---|
| 624 | #endif |
---|
[9] | 625 | char *cen=strdup($1); |
---|
| 626 | current_element->name=(char*)malloc((strlen(cen)-1)*sizeof(char*)); |
---|
| 627 | cen[strlen(cen)-1]=0; |
---|
| 628 | cen+=1; |
---|
| 629 | sprintf(current_element->name,"%s",cen); |
---|
| 630 | cen-=1; |
---|
| 631 | free(cen); |
---|
[1] | 632 | current_element->content=NULL; |
---|
| 633 | current_element->metadata=NULL; |
---|
| 634 | current_element->format=NULL; |
---|
| 635 | current_element->defaults=NULL; |
---|
| 636 | current_element->supported=NULL; |
---|
| 637 | current_element->next=NULL; |
---|
| 638 | } |
---|
| 639 | wait_inputs=false; |
---|
| 640 | current_content=NULL; |
---|
| 641 | } |
---|
| 642 | else |
---|
| 643 | if(current_element->name==NULL){ |
---|
| 644 | #ifdef DEBUG_SERVICE_CONF |
---|
| 645 | fprintf(stderr,"NAME OUT %s\n",$1); |
---|
| 646 | fprintf(stderr,"(DATAOUTPUTS - 545) SET NAME OF current_element\n"); |
---|
| 647 | #endif |
---|
[9] | 648 | char *cen=strdup($1); |
---|
| 649 | current_element->name=(char*)malloc((strlen(cen)-1)*sizeof(char*)); |
---|
| 650 | cen[strlen(cen)-1]=0; |
---|
| 651 | #ifdef DEBUG |
---|
| 652 | fprintf(stderr,"tmp %s\n",cen); |
---|
| 653 | #endif |
---|
| 654 | cen+=1; |
---|
| 655 | sprintf(current_element->name,"%s",cen); |
---|
| 656 | cen-=1; |
---|
| 657 | free(cen); |
---|
[1] | 658 | current_element->content=NULL; |
---|
| 659 | current_element->metadata=NULL; |
---|
| 660 | current_element->format=NULL; |
---|
| 661 | current_element->defaults=NULL; |
---|
| 662 | current_element->supported=NULL; |
---|
| 663 | current_element->next=NULL; |
---|
| 664 | } |
---|
| 665 | wait_outputs=true; |
---|
| 666 | } |
---|
| 667 | } |
---|
| 668 | } |
---|
| 669 | ; |
---|
| 670 | |
---|
| 671 | %% |
---|
| 672 | |
---|
| 673 | // srerror |
---|
| 674 | //====================================================== |
---|
| 675 | /* fonction qui affiche l erreur si il y en a une */ |
---|
| 676 | //====================================================== |
---|
| 677 | void srerror(char *s) |
---|
| 678 | { |
---|
| 679 | if(debug) |
---|
| 680 | fprintf(stderr,"\nligne %d : %s\n",srlineno,s); |
---|
| 681 | } |
---|
| 682 | |
---|
| 683 | /** |
---|
| 684 | * getServiceFromFile : |
---|
| 685 | * set service given as second parameter with informations extracted from the |
---|
| 686 | * definition file. |
---|
| 687 | */ |
---|
| 688 | int getServiceFromFile(char* file,service** service){ |
---|
| 689 | |
---|
| 690 | freeMap(&previous_content); |
---|
| 691 | previous_content=NULL; |
---|
| 692 | freeMap(¤t_content); |
---|
| 693 | current_content=NULL; |
---|
| 694 | freeMap(&scontent); |
---|
| 695 | #ifdef DEBUG_SERVICE_CONF |
---|
| 696 | fprintf(stderr,"(STARTING)FREE current_element\n"); |
---|
| 697 | #endif |
---|
| 698 | freeElements(¤t_element); |
---|
[60] | 699 | free(current_element); |
---|
[1] | 700 | current_element=NULL; |
---|
| 701 | my_service=NULL; |
---|
| 702 | scontent=NULL; |
---|
| 703 | |
---|
| 704 | wait_maincontent=true; |
---|
| 705 | wait_mainmetadata=false; |
---|
| 706 | wait_metadata=false; |
---|
| 707 | wait_inputs=false; |
---|
| 708 | wait_defaults=false; |
---|
| 709 | wait_supporteds=false; |
---|
| 710 | wait_outputs=false; |
---|
| 711 | wait_data=false; |
---|
| 712 | data=-1; |
---|
| 713 | previous_data=1; |
---|
| 714 | current_data=0; |
---|
| 715 | |
---|
| 716 | my_service=*service; |
---|
| 717 | |
---|
| 718 | srin = fopen(file,"r"); |
---|
| 719 | if (srin==NULL){ |
---|
[60] | 720 | fprintf(stderr,"error : file not found\n") ; |
---|
[9] | 721 | return -1; |
---|
[1] | 722 | } |
---|
| 723 | |
---|
| 724 | int resultatYYParse = srparse() ; |
---|
| 725 | |
---|
[57] | 726 | if(wait_outputs==true && current_element!=NULL && current_element->name!=NULL){ |
---|
[1] | 727 | if(my_service->outputs==NULL){ |
---|
| 728 | #ifdef DEBUG_SERVICE_CONF |
---|
| 729 | fprintf(stderr,"(DATAOUTPUTS - 623) DUP current_element\n"); |
---|
| 730 | #endif |
---|
| 731 | my_service->outputs=dupElements(current_element); |
---|
[9] | 732 | my_service->outputs->next=NULL; |
---|
[1] | 733 | } |
---|
| 734 | else{ |
---|
| 735 | #ifdef DEBUG_SERVICE_CONF |
---|
| 736 | fprintf(stderr,"(DATAOUTPUTS - 628) COPY current_element\n"); |
---|
| 737 | #endif |
---|
[9] | 738 | addToElements(&my_service->outputs,current_element); |
---|
[1] | 739 | } |
---|
| 740 | #ifdef DEBUG_SERVICE_CONF |
---|
| 741 | fprintf(stderr,"(DATAOUTPUTS - 631) FREE current_element\n"); |
---|
| 742 | #endif |
---|
| 743 | freeElements(¤t_element); |
---|
[9] | 744 | free(current_element); |
---|
| 745 | current_element=NULL; |
---|
[57] | 746 | #ifdef DEBUG_SERVICE_CONF |
---|
| 747 | fprintf(stderr,"(DATAOUTPUTS - 631) FREE current_element\n"); |
---|
| 748 | #endif |
---|
[1] | 749 | } |
---|
| 750 | if(current_element!=NULL){ |
---|
| 751 | freeElements(¤t_element); |
---|
[9] | 752 | free(current_element); |
---|
[1] | 753 | current_element=NULL; |
---|
| 754 | } |
---|
| 755 | if(current_content!=NULL){ |
---|
| 756 | freeMap(¤t_content); |
---|
[9] | 757 | free(current_content); |
---|
[1] | 758 | current_content=NULL; |
---|
| 759 | } |
---|
| 760 | fclose(srin); |
---|
| 761 | #ifdef DEBUG_SERVICE_CONF |
---|
| 762 | dumpService(my_service); |
---|
| 763 | #endif |
---|
| 764 | *service=my_service; |
---|
| 765 | |
---|
[9] | 766 | srlex_destroy(); |
---|
[1] | 767 | return resultatYYParse; |
---|
| 768 | } |
---|