MED fichier
MEDfichierNo.c
Aller à la documentation de ce fichier.
1 /* This file is part of MED.
2  *
3  * COPYRIGHT (C) 1999 - 2016 EDF R&D, CEA/DEN
4  * MED is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * MED is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with MED. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 
19 #include <med.h>
20 #include <med_config.h>
21 #include <med_outils.h>
22 #include <hdf5.h>
23 
24 /*
25  * - Nom de la fonction : _MEDfichierNo
26  * - Description : Renvoi le numéro de fichier contenant l'objet
27  * identifiés par id1
28  * - Parametres :
29  * - id (IN) : identificateur de l'objet1
30  * - fileno (OUT) : numéro de fichier unique
31  * - Resultat : numéro hdf du fichier en cas de succes, -1 sinon
32  */
33 med_err _MEDfichierNo(med_idt id, unsigned long * fileno )
34 {
35 
36  H5G_stat_t statbuf;
37 
38  if ( H5Gget_objinfo(id, "/", 1 , &statbuf ) < 0 ) {
39  MESSAGE("Impossible d'identifier un numéro de fichier correct à partir de l'identifiant :");
40  ISCRUTE_id(id);
41  return -1;
42  };
43 
44  *fileno = statbuf.fileno[0];
45 /* ISCRUTE_id(id); */
46 /* ISCRUTE(statbuf.fileno[0]); */
47 /* ISCRUTE(statbuf.fileno[1]); */
48 
49  return 0;
50 }
herr_t med_err
Definition: med.h:310
#define MESSAGE(chaine)
Definition: med_utils.h:316
med_err _MEDfichierNo(med_idt id, unsigned long *fileno)
Definition: MEDfichierNo.c:33
#define ISCRUTE_id(entier)
Definition: med_utils.h:311
hid_t med_idt
Definition: med.h:309