1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
| void recupXML()
{
register short int i=-1;
register unsigned int j=0;
char * tab = NULL;
FILE * fp = NULL;
char * chaine = (char *)malloc(256*sizeof(char));
if(chaine == NULL)
{
printf("Memoire insuffisante, arret du programme.");
exit(1);
}
if((fp = fopen("data.xml","r+"))==NULL)
{
printf("ERREUR LORS DE L'OUVERTURE DU FICHIER\n");
exit(1);
}
while(fgets(chaine, 255, fp))
{
if(!strcmp(chaine, "</automatisation>"))
break;
chaine = formatAff(chaine, i, j);
if(i==6)
{
i=1;
j++;
}
else
i++;
}
fclose(fp);
}
char * formatAff(char * chaine, int i, int j)
{
char * tampon = (char *)malloc(256*sizeof(char));
if(tampon == NULL)
{
printf("Memoire insuffisante, arret du programme.");
exit(1);
}
switch(i)
{
case 2:
tampon = couperDebut(chaine,13);
tampon = couperFin(tampon, 11);
break;
case 3:
tampon = couperDebut(chaine, 21);
tampon = couperFin(tampon, 19);
break;
case 4:
tampon = couperDebut(chaine,11);
tampon = couperFin(tampon, 9);
break;
case 5:
tampon = couperDebut(chaine,10);
tampon = couperFin(tampon, 8);
}
return tampon;
}
char * couperDebut(char * chaine, int n)
{
register int i=0;
char * tampon = (char *)malloc(256*sizeof(char));
if(tampon == NULL)
{
printf("Memoire insuffisante, arret du programme.");
exit(1);
}
for(i=0;i<256;i++)
{
if(chaine[i]=='\0')
break;
tampon[i] = chaine[i+n];
}
tampon[i] = '\0';
return(tampon);
}
char * couperFin(char * chaine, int n)
{
register int i;
char * tampon = (char *)malloc(256*sizeof(char));
if(tampon == NULL)
{
printf("Memoire insuffisante, arret du programme.");
exit(1);
}
for(i=0;i<256;i++)
{
if(chaine[i+n]=='\0')
break;
tampon[i] = chaine[i];
}
tampon[i]='\0';
return(tampon);
} |
Partager