MED fichier
MEDparameterValueWr.c
Aller à la documentation de ce fichier.
1 /* This file is part of MED.
2  *
3  * COPYRIGHT (C) 1999 - 2021 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 <string.h>
23 #include <stdlib.h>
24 
38 med_err
40  const char* const paramname,
41  const med_int numdt,
42  const med_int numit,
43  const med_float dt,
44  const unsigned char* const value)
45 {
46  med_err _ret = -1;
47  med_idt _paramidt = 0;
48  med_idt _cpstidt = 0;
49  char _parampath [MED_NUMERICAL_DATA_GRP_SIZE+MED_NAME_SIZE+1] = "";
50  char _cpstpath[MED_MESH_SUPPORT_GRP_SIZE+MED_NAME_SIZE+1+2*MED_MAX_PARA+1+1]="";
51  char _cpstname [2*MED_MAX_PARA+1]="";
52  med_access_mode _MED_ACCESS_MODE;
53  med_int _intparamtype = 0;
54  med_parameter_type _paramtype;
55 
57  if (_MEDcheckVersion30(fid) < 0) goto ERROR;
58 
59  /* Verification du mode d'acces aux donn�es */
60  if ( (_MED_ACCESS_MODE = _MEDmodeAcces(fid) ) == MED_ACC_UNDEF ) {
62  goto ERROR;
63  }
64  if ( _MED_ACCESS_MODE == MED_ACC_RDONLY) {
66  ISCRUTE_int(_MED_ACCESS_MODE);
67  goto ERROR;
68  }
69 
70  /* Si le group HDF correspondant au parametre n'existe pas => erreur
71  Sinon on l'ouvre */
72  NOFINALBLANK(paramname,ERROR);
73  strcpy(_parampath, MED_NUMERICAL_DATA_GRP);
74  strcat(_parampath, paramname);
75  if ((_paramidt = _MEDdatagroupOuvrir(fid,_parampath)) < 0) {
77  SSCRUTE(paramname);SSCRUTE(_parampath); goto ERROR;
78  }
79 
80  /* On construit le nom du datagroup du pas de temps */
81  _MEDgetComputationStepName(MED_SORT_DTIT,numdt,numit,_cpstname);
82  strcpy( _cpstpath, _parampath);
83  strcat( _cpstpath, "/");
84  strcat( _cpstpath, _cpstname);
85 
86  /* Si l'etape de calcul n'existe pas, on la cr�e */
87  if ((_cpstidt = _MEDdatagroupOuvrir(_paramidt, _cpstname)) < 0 )
88  if ((_cpstidt = _MEDdatagroupCreer(_paramidt,_cpstname)) < 0 ) {
89  MED_ERR_(_ret, MED_ERR_EXIST, MED_ERR_COMPUTINGSTEP, _cpstname);
90  SSCRUTE(paramname);goto ERROR;
91  }
92 
93  /* ecriture de l'attribut MED_NOM_NDT pour �criture */
94  if ( _MEDattributeIntWr(_cpstidt,MED_NOM_NDT,&numdt) < 0) {
96  SSCRUTE(paramname);SSCRUTE(_cpstname);SSCRUTE(MED_NOM_NDT);
97  ISCRUTE(numdt);goto ERROR;
98  }
99  /* ecriture de l'attribut MED_NOM_PDT */
100  if ( _MEDattrFloatEcrire(_cpstidt,MED_NOM_PDT,&dt) < 0) {
102  SSCRUTE(paramname);SSCRUTE(_cpstname);SSCRUTE(MED_NOM_PDT);
103  RSCRUTE(dt);goto ERROR;
104  }
105  /* ecriture de l'attribut MED_NOM_NOR */
106  if ( _MEDattributeIntWr(_cpstidt,MED_NOM_NOR,&numit) < 0) {
108  SSCRUTE(paramname);SSCRUTE(_cpstname);SSCRUTE(MED_NOM_NOR);
109  ISCRUTE(numit); goto ERROR;
110  }
111 
112  /* on ecrit la valeur du parametre */
113  if ( _MEDattrEntierLire(_paramidt,MED_NOM_TYP,&_intparamtype) < 0) {
115  SSCRUTE(paramname);SSCRUTE(MED_NOM_TYP);
116  goto ERROR;
117  }
118  _paramtype = (med_field_type) (_intparamtype);
119  if (_paramtype == MED_FLOAT64)
120  if (_MEDattrFloatEcrire(_cpstidt, MED_NOM_VAL, value) < 0) {
122  SSCRUTE(paramname);SSCRUTE(MED_NOM_VAL);
123  }
124  if (_paramtype != MED_FLOAT64)
125  if (_MEDattributeIntWr(_cpstidt, MED_NOM_VAL, value) < 0) {
127  SSCRUTE(paramname);SSCRUTE(MED_NOM_VAL);
128  }
129 
130  _ret = 0;
131  ERROR:
132 
133  /* on ferme tout */
134 
135  if (_cpstidt > 0)
136  if (_MEDdatagroupFermer(_cpstidt) < 0) {
137  MED_ERR_(_ret,MED_ERR_CLOSE,MED_ERR_DATAGROUP,_cpstname);
138  ISCRUTE_id(_cpstidt);
139  }
140 
141  if (_paramidt > 0)
142  if (_MEDdatagroupFermer(_paramidt) < 0) {
143  MED_ERR_(_ret,MED_ERR_CLOSE,MED_ERR_DATAGROUP,_parampath);
144  ISCRUTE_id(_paramidt);
145  }
146 
147  return _ret;
148 }
MED_SORT_DTIT
Definition: med.h:309
_MEDdatagroupFermer
MEDC_EXPORT med_err _MEDdatagroupFermer(med_idt id)
ISCRUTE_id
#define ISCRUTE_id(entier)
Definition: med_utils.h:319
MED_NUMERICAL_DATA_GRP
#define MED_NUMERICAL_DATA_GRP
Definition: med_outils.h:243
MED_NUMERICAL_DATA_GRP_SIZE
#define MED_NUMERICAL_DATA_GRP_SIZE
Definition: med_outils.h:244
_MEDmodeAcces
MEDC_EXPORT med_access_mode _MEDmodeAcces(med_idt oid)
ISCRUTE_int
#define ISCRUTE_int(entier)
Definition: med_utils.h:314
med_idt
hid_t med_idt
Definition: med.h:331
MED_ERR_
#define MED_ERR_(rt, r1, r2, r3)
Definition: med_utils.h:160
_MEDattributeIntWr
#define _MEDattributeIntWr(w, x, y)
Definition: med_hdfi.h:45
MED_ACC_RDONLY
Definition: med.h:120
MED_ERR_INVALID
#define MED_ERR_INVALID
Definition: med_err.h:40
MED_ERR_ATTRIBUTE
#define MED_ERR_ATTRIBUTE
Definition: med_err.h:100
med_err
herr_t med_err
Definition: med.h:332
MED_MAX_PARA
#define MED_MAX_PARA
Definition: med.h:76
MED_ERR_CLOSE
#define MED_ERR_CLOSE
Definition: med_err.h:30
MED_ERR_OPEN
#define MED_ERR_OPEN
Definition: med_err.h:37
med_int
int med_int
Definition: med.h:342
med_field_type
med_field_type
Definition: med.h:165
MED_ERR_WRITE
#define MED_ERR_WRITE
Definition: med_err.h:29
_MEDgetComputationStepName
MEDC_EXPORT med_err _MEDgetComputationStepName(const med_sorting_type sortingtype, const med_int numdt, const med_int numit, char *const datagroupname)
MED_NOM_TYP
#define MED_NOM_TYP
Definition: med_outils.h:65
med.h
ISCRUTE
#define ISCRUTE(entier)
Definition: med_utils.h:313
med_float
double med_float
Definition: med.h:336
MED_ERR_READ
#define MED_ERR_READ
Definition: med_err.h:28
med_access_mode
med_access_mode
Definition: med.h:120
MED_NOM_NDT
#define MED_NOM_NDT
Definition: med_outils.h:142
MED_NOM_PDT
#define MED_NOM_PDT
Definition: med_outils.h:144
MED_ERR_ACCESSMODE
#define MED_ERR_ACCESSMODE
Definition: med_err.h:104
_MEDdatagroupCreer
MEDC_EXPORT med_idt _MEDdatagroupCreer(med_idt pid, const char *const nom)
MED_NOM_NOR
#define MED_NOM_NOR
Definition: med_outils.h:145
RSCRUTE
#define RSCRUTE(reel)
Definition: med_utils.h:321
SSCRUTE
#define SSCRUTE(chaine)
Definition: med_utils.h:323
MED_ERR_DATAGROUP
#define MED_ERR_DATAGROUP
Definition: med_err.h:99
MED_ERR_EXIST
#define MED_ERR_EXIST
Definition: med_err.h:43
MED_NAME_SIZE
#define MED_NAME_SIZE
Definition: med.h:81
_MEDcheckVersion30
MEDC_EXPORT med_err _MEDcheckVersion30(med_idt fid)
med_outils.h
med_config.h
MED_ERR_COMPUTINGSTEP
#define MED_ERR_COMPUTINGSTEP
Definition: med_err.h:113
_MEDattrFloatEcrire
#define _MEDattrFloatEcrire(w, x, y)
Definition: med_hdfi.h:48
MED_NOM_VAL
#define MED_NOM_VAL
Definition: med_outils.h:53
MED_MESH_SUPPORT_GRP_SIZE
#define MED_MESH_SUPPORT_GRP_SIZE
Definition: med_outils.h:165
_MEDattrEntierLire
#define _MEDattrEntierLire(x, y, z)
Definition: med_hdfi.h:68
MED_FLOAT64
Definition: med.h:166
NOFINALBLANK
#define NOFINALBLANK(chaine, label)
Definition: med_utils.h:311
MED_ERR_UNRECOGNIZED
#define MED_ERR_UNRECOGNIZED
Definition: med_err.h:39
MEDparameterValueWr
med_err MEDparameterValueWr(const med_idt fid, const char *const paramname, const med_int numdt, const med_int numit, const med_float dt, const unsigned char *const value)
Cette routine permet l'écriture de la valeur d'un paramètre numérique scalaire.
Definition: MEDparameterValueWr.c:39
MED_ERR_FILE_MSG
#define MED_ERR_FILE_MSG
Definition: med_err.h:132
_MEDdatagroupOuvrir
MEDC_EXPORT med_idt _MEDdatagroupOuvrir(med_idt pid, const char *const nom)
MED_ERR_PARAM_MSG
#define MED_ERR_PARAM_MSG
Definition: med_err.h:175
_MEDmodeErreurVerrouiller
MEDC_EXPORT void _MEDmodeErreurVerrouiller(void)
MED_ACC_UNDEF
Definition: med.h:124