Salome HOME
4382dc27df3663e30438b9838703fbd0947dbd64
[modules/med.git] / src / MEDWrapper / V2_1 / MEDnumEcr.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library 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 GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 /*************************************************************************
21 * COPYRIGHT (C) 1999 - 2002  EDF R&D
22 * THIS LIBRARY IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
23 * IT UNDER THE TERMS OF THE GNU LESSER GENERAL PUBLIC LICENSE 
24 * AS PUBLISHED BY THE FREE SOFTWARE FOUNDATION; 
25 * EITHER VERSION 2.1 OF THE LICENSE, OR (AT YOUR OPTION) ANY LATER VERSION.
26 *  
27 * THIS LIBRARY IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
28 * WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
29 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
30 * LESSER GENERAL PUBLIC LICENSE FOR MORE DETAILS.
31 *
32 * YOU SHOULD HAVE RECEIVED A COPY OF THE GNU LESSER GENERAL PUBLIC LICENSE
33 * ALONG WITH THIS LIBRARY; IF NOT, WRITE TO THE FREE SOFTWARE FOUNDATION,
34 * INC., 59 TEMPLE PLACE, SUITE 330, BOSTON, MA 02111-1307 USA
35 *
36 *************************************************************************/
37
38 #include "med.hxx"
39 #include "med_outils.hxx"
40
41 #include <stdlib.h>
42 #include <string.h>
43
44 namespace med_2_1{
45
46 med_err 
47 MEDnumEcr(med_idt fid,char *maa, med_int *num, med_int n, med_mode_acces mode,
48           med_entite_maillage type_ent,med_geometrie_element type_geo)
49 {
50   med_idt root, maaid, entid, geoid, dataset;
51   med_err ret;
52   med_size dimd[1];
53   char chemin[MED_TAILLE_MAA+MED_TAILLE_NOM+1];
54   char nom_ent[MED_TAILLE_NOM_ENTITE+1];
55   char nom_geo[MED_TAILLE_NOM_ENTITE+1];
56
57   /*
58    * On inhibe le gestionnaire d'erreur HDF 5
59    */
60   _MEDmodeErreurVerrouiller(); 
61
62   /*
63    * Si le maillage n'existe pas => erreur
64    */
65   strcpy(chemin,MED_MAA);
66   strcat(chemin,maa);
67   if ((maaid = _MEDdatagroupOuvrir(fid,chemin)) < 0)
68       return -1;
69
70   /*
71    * On met a jour le nom du Data Group representant
72    * le type des entites
73    */
74    if ((ret = _MEDnomEntite(nom_ent,type_ent)) < 0)
75      return -1;
76
77    /*
78     * Si le Data Group des entites n'existe pas on le cree
79     */
80    if ((entid = _MEDdatagroupOuvrir(maaid,nom_ent)) < 0)
81      if ((root = _MEDdatagroupCreer(maaid,nom_ent)) < 0)
82        return -1;
83
84    /*
85     * Pour les mailles, les faces et le aretes, on cree
86     * s'il n'existe pas le Data Group du type geometrique
87     */
88    if ((type_ent==MED_MAILLE)||(type_ent==MED_FACE)||(type_ent==MED_ARETE))
89      {
90        if ((ret = _MEDnomGeometrie(nom_geo,type_geo)) < 0)
91          return -1;
92
93        if ((geoid = _MEDdatagroupOuvrir(entid,nom_geo)) < 0)
94          if ((geoid = _MEDdatagroupCreer(entid,nom_geo)) < 0)
95            return -1;
96      }
97    else 
98      geoid = -1;
99
100    /*
101     * Creation du Data Set "NUM" 
102     */
103    if (geoid == -1)
104      root = entid;
105    else
106      root = geoid;
107    dimd[0] = n;
108 #if defined(IRIX64)||defined(OSF1)
109    if ((ret = _MEDdatasetNumEcrire(root,MED_NOM_NUM,MED_INT64,MED_NO_INTERLACE,MED_DIM1,MED_ALL,MED_NOPF,0,MED_NOPG,dimd,
110                                 (unsigned char*) num,mode)) < 0)
111      return -1;
112 #else
113    if ((ret = _MEDdatasetNumEcrire(root,MED_NOM_NUM,MED_INT32,MED_NO_INTERLACE,MED_DIM1,MED_ALL,MED_NOPF,0,MED_NOPG,dimd,
114                                 (unsigned char*) num,mode)) < 0)
115      return -1;
116 #endif
117
118   /*
119    * Attribut NBR (nombre de noeuds)
120    */
121    if ((dataset = _MEDdatasetOuvrir(root,MED_NOM_NUM)) < 0)
122      return -1;
123    if ((ret = _MEDattrEntierEcrire(dataset,MED_NOM_NBR,&n,mode)) < 0)
124      return -1;
125
126    /*
127     * On ferme tout
128     */
129    if ((ret = _MEDdatasetFermer(dataset)) < 0)
130      return -1;
131    if (geoid != -1)
132      if ((ret = _MEDdatagroupFermer(geoid)) < 0)
133        return -1;
134    if ((ret = _MEDdatagroupFermer(entid)) < 0)
135      return -1;
136    if ((ret = _MEDdatagroupFermer(maaid)) < 0)
137      return -1; 
138
139   return 0; 
140 }
141
142 }