MEDlienEcr.c

Aller à la documentation de ce fichier.
00001 /*  This file is part of MED.
00002  *
00003  *  COPYRIGHT (C) 1999 - 2015  EDF R&D, CEA/DEN
00004  *  MED is free software: you can redistribute it and/or modify
00005  *  it under the terms of the GNU Lesser General Public License as published by
00006  *  the Free Software Foundation, either version 3 of the License, or
00007  *  (at your option) any later version.
00008  *
00009  *  MED is distributed in the hope that it will be useful,
00010  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  *  GNU Lesser General Public License for more details.
00013  *
00014  *  You should have received a copy of the GNU Lesser General Public License
00015  *  along with MED.  If not, see <http://www.gnu.org/licenses/>.
00016  */
00017 
00018 
00019 #include <med.h>
00020 #include <med_config.h>
00021 #include <med_outils.h>
00022 
00023 #include <string.h>
00024 #include <stdlib.h>
00025 
00026 /*
00027  * - Nom de la fonction : MEDlienEcrire
00028  * - Description : Ecrit le chemin d'accès à un maillage distant
00029  * - Parametres :
00030  *   - fid     (IN) : ID du fichier HDF courant
00031  *   - lienval (IN) : le chemin d'accès au fichier contenant le maillage distant
00032  *   - maa     (IN) : le nom du maillage distant
00033  * - Resultat : 0 en cas de succes, -1 sinon
00034  */ 
00035 
00036 med_err
00037 MEDlienEcr(med_idt fid, char *lienval, char *maa)
00038 {
00039   med_idt gid=0, chid=0, did=0;
00040   med_size dimd[1];
00041   med_err ret=-1;
00042   char chemin[MED_TAILLE_LIENS+1];
00043   med_int n ;
00044   
00045   /*
00046    * On inhibe le gestionnaire d'erreur HDF 5
00047    */
00048   _MEDmodeErreurVerrouiller();
00049 if (MEDcheckVersion(fid) < 0) return -1;
00050 
00051 
00052   /* 
00053    * Si le groupe "LIENS" n'existe pas, on le cree
00054    */
00055   strncpy(chemin,MED_LIENS,MED_TAILLE_LIENS-1);
00056   chemin[MED_TAILLE_LIENS-1] = '\0';
00057   if ((gid = _MEDdatagroupOuvrir(fid,chemin)) < 0)
00058     if ((gid = _MEDdatagroupCreer(fid,chemin)) < 0) {
00059       MESSAGE("Impossible de creer le groupe MED_LIENS : ");
00060       SSCRUTE(chemin); goto ERROR;
00061     }
00062 
00063   /*
00064    * Si le groupe "maa" n'existe pas, on le cree
00065    * Sinon => erreur
00066    */
00067   NOFINALBLANK(maa,ERROR);
00068   if ((chid = _MEDdatagroupOuvrir(gid,maa)) < 0) 
00069     if ((chid = _MEDdatagroupCreer(gid,maa)) < 0) {
00070       MESSAGE("Erreur à la création du lien au maillage : ");
00071       SSCRUTE(maa);
00072       goto ERROR;
00073     }
00074 
00075   /*
00076    * On stocke "n" sous forme d'attribut
00077    */
00078   n = strlen(lienval);
00079   if ((ret = _MEDattrEntierEcrire(chid,MED_NOM_NBR,&n)) < 0) {
00080     MESSAGE("Erreur à l'écriture de l'attribut n : ");
00081     ISCRUTE(n); goto ERROR;
00082   }
00083 
00084   /*
00085    * On stocke le lienval dans un dataset
00086    */
00087   dimd[0] = n;
00088   if ((ret = _MEDdatasetStringEcrire(chid,MED_NOM_LIE,dimd,lienval))<0) {
00089     MESSAGE("Impossible d'ecrire le dataset lienval de taille  : ");
00090     ISCRUTE(n); goto ERROR;
00091   }
00092 
00093   /*
00094    * On ferme tout
00095    */
00096   ret =0;
00097  ERROR:
00098   if (chid>0)     if (_MEDdatagroupFermer(chid) < 0) {
00099     MESSAGE("Impossible de fermer le datagroup : ");
00100     ISCRUTE_id(chid);ret=-1; 
00101   }
00102   
00103   if (gid>0)     if (_MEDdatagroupFermer(gid) < 0) {
00104     MESSAGE("Impossible de fermer le datagroup : ");
00105     ISCRUTE_id(gid);ret=-1;
00106   }
00107 
00108   return ret;
00109 }

Généré le Thu Oct 8 14:26:16 2015 pour MED fichier par  doxygen 1.6.1