MED fichier
MEDfileObjectDescriptionExist.c
Aller à la documentation de ce fichier.
1 /* This file is part of MED.
2  *
3  * COPYRIGHT (C) 1999 - 2023 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 
23 #include <string.h>
24 
25 
26 /*
27 Les objets de class medclass dont il est ici question sont représentés par des noms de groupes
28 dans le modèle HDF.
29 */
30 #define MY_CASE(OBJ)\
31  case MED_##OBJ :\
32  strcpy(_datagroupname,MED_##OBJ##_GRP);\
33  _objsize = MED_##OBJ##_GRP_SIZE;\
34  break;
35 
48 med_err
50  const med_class medclass,
51  const char * const objectname,
52  med_bool * const descriptionexist)
53 {
54  med_err _ret = -1;
55  char _datagroupname[2*MED_NAME_SIZE+1]="";
56  int _objsize = 0;
57  med_bool _descriptionexist = MED_FALSE;
58  med_bool _datagroupexist = MED_FALSE;
59  med_bool _isasoftlink = MED_FALSE;
60 
61  /*
62  * On inhibe le gestionnaire d'erreur HDF
63  */
65 
66  *descriptionexist = MED_FALSE;
67  /*
68  * Give access to the class object in the local file
69  */
70  switch(medclass) {
71 
72  MY_CASE(MESH);
73  MY_CASE(FIELD);
74  MY_CASE(MESH_SUPPORT);
75  MY_CASE(ELSTRUCT);
76  MY_CASE(FAMILY);
77  MY_CASE(EQUIVALENCE);
78  /* MY_CASE(GROUP); C'est un dataset, non un group hdf */
79  /* Il serait possible d'ajouter un commentaire au datatset <groupname> */
80  /* mais il faudrait en plus de son nom : */
81  /* - le nom du maillage concerné */
82  /* - le nom de la famille d'éléments à laquelle */
83  /* or l'API ne prévoit qu'un nom */
84  /* MEDmodel/MEDfile/FAS/<FAMILY_MESH_NAME_REF>/_ELEME/<FAMILY_NAME_ELEM>/_GRO/<GROUPNAME> */
85  /* Une première solution pourrait être une liste de noms séparés par le caractère '/' : */
86  /* objectname == <FAMILY_MESH_NAME_REF>/<FAMILY_NAME_ELEM>/<GROUPNAME> */
87  /* Une deuxième solution pourrait être un objectname de type const char * const [] */
88  /* mais il faudrait un paramètre supplémentaire indiquant le nombre de chaînes */
89  /* Une troisième solution pourraît être l'utlisation d'un objectId au lieu du fid avec */
90  /* une gestion du chemin relatif à l'objectId et une API permettant d'obtenir l'objectID */
91  /* en sélectionnant n'importe quel objet, mais cela necessiterait une revue complète d'API */
92  MY_CASE(JOINT);
93  MY_CASE(LOCALIZATION);
94  MY_CASE(PROFILE);
95  MY_CASE(INTERPOLATION);
96  MY_CASE(NUMERICAL_DATA);
97  MY_CASE(FILE);
98 
99  default :
100  MED_ERR_(_ret,MED_ERR_RANGE,MED_ERR_CLASS,_datagroupname);
101  goto ERROR;
102  }
103 
104  strncpy(_datagroupname+_objsize,objectname,MED_NAME_SIZE+1);
105  _datagroupname[2*MED_NAME_SIZE]='\0';
106 
107  if (_MEDdatagroupExist(fid,
108  _datagroupname,
109  &_datagroupexist,
110  &_isasoftlink ) <0 ) {
111  MED_ERR_(_ret,MED_ERR_CALL,MED_ERR_API,"_MEDdatagroupExist");
112  SSCRUTE(_datagroupname);
113  goto ERROR;
114  }
115 
116  if ( !_datagroupexist ) goto SORTIE;
117 
118  if ( _MEDattributeExist(fid,
119  _datagroupname,
120  MED_NOM_DES,
121  &_descriptionexist ) <0 ) {
122  /* MED_ERR_(_ret,MED_ERR_CALL,MED_ERR_API,"_MEDattributeExist"); */
123  /* SSCRUTE(_datagroupname); */
124  goto SORTIE;
125  }
126 
127  if ( _descriptionexist ) *descriptionexist = MED_TRUE;
128 
129  SORTIE:
130  _ret=0;
131  ERROR:
132 
133  return _ret;
134 }
MED_ERR_API
#define MED_ERR_API
Definition: med_err.h:111
MED_ERR_CLASS
#define MED_ERR_CLASS
Definition: med_err.h:130
med_err
herr_t med_err
Definition: med.h:336
MED_TRUE
Definition: med.h:264
med_config.h
MED_ERR_
#define MED_ERR_(rt, r1, r2, r3)
Definition: med_utils.h:160
med_idt
hid_t med_idt
Definition: med.h:335
MEDfileObjectDescriptionExist
med_err MEDfileObjectDescriptionExist(const med_idt fid, const med_class medclass, const char *const objectname, med_bool *const descriptionexist)
Interroge le fichier fid pour tester l'existence d'une description associée à l'objet objectname de t...
Definition: MEDfileObjectDescriptionExist.c:49
med_bool
med_bool
Definition: med.h:264
MED_ERR_CALL
#define MED_ERR_CALL
Definition: med_err.h:48
med_outils.h
MY_CASE
#define MY_CASE(OBJ)
Definition: MEDfileObjectDescriptionExist.c:30
SSCRUTE
#define SSCRUTE(chaine)
Definition: med_utils.h:323
_MEDattributeExist
MEDC_EXPORT med_err _MEDattributeExist(const med_idt gid, const char *const datagroupname, const char *const attributename, med_bool *const attributeexist)
med.h
med_class
med_class
Definition: med.h:191
MED_NAME_SIZE
#define MED_NAME_SIZE
Definition: med.h:82
MED_NOM_DES
#define MED_NOM_DES
Definition: med_outils.h:53
MED_ERR_RANGE
#define MED_ERR_RANGE
Definition: med_err.h:34
_MEDdatagroupExist
MEDC_EXPORT med_err _MEDdatagroupExist(const med_idt gid, const char *const datagroupname, med_bool *const datagroupexist, med_bool *const isasoftlink)
MED_FALSE
Definition: med.h:264
_MEDmodeErreurVerrouiller
MEDC_EXPORT void _MEDmodeErreurVerrouiller(void)