Salome HOME
Copyrights update
[modules/med.git] / src / MEDWrapper / V2_1 / MEDprofilEcr.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 <string.h>
42 #include <stdlib.h>
43
44 namespace med_2_1{
45
46 med_err
47 MEDprofilEcr(med_idt fid,med_int *pflval,med_int n,char *nom)
48 {
49   med_idt root, pid, did;
50   med_size dimd[1];
51   med_err ret;
52   char chemin[MED_TAILLE_PROFILS+1];
53
54   /*
55    * On inhibe le gestionnaire d'erreur HDF 5
56    */
57   _MEDmodeErreurVerrouiller();
58
59   /* 
60    * Si le groupe "PROFILS" n'existe pas, on le cree
61    */
62   strncpy(chemin,MED_PROFILS,MED_TAILLE_PROFILS-1);
63   chemin[MED_TAILLE_PROFILS-1] = '\0';
64   if ((root = _MEDdatagroupOuvrir(fid,chemin)) < 0)
65     if ((root = _MEDdatagroupCreer(fid,chemin)) < 0)
66       return -1;
67
68   /* 
69    * Si le groupe "nom" n'existe pas, on le cree
70    * Sinon => erreur
71    */
72   if ((pid = _MEDdatagroupOuvrir(root,nom)) >= 0)
73     return -1;
74   if ((pid = _MEDdatagroupCreer(root,nom)) < 0)
75     return -1;
76
77   /*
78    * On stocke "n" sous forme d'attribut
79    */
80   if ((ret = _MEDattrEntierEcrire(pid,MED_NOM_N,&n,MED_REMP)) < 0)
81     return -1;
82
83   /*
84    * On stocke le profil dans un dataset
85    */
86   dimd[0] = n;
87 #if defined(IRIX64)||defined(OSF1)
88   if ((ret =  _MEDdatasetNumEcrire(pid,MED_NOM_PFL,MED_INT64,MED_NO_INTERLACE,MED_DIM1,MED_ALL,MED_NOPF,0,MED_NOPG,dimd,
89                                 (unsigned char*) pflval,MED_REMP)) < 0)
90     return -1;
91 #else
92   if ((ret =  _MEDdatasetNumEcrire(pid,MED_NOM_PFL,MED_INT32,MED_NO_INTERLACE,MED_DIM1,MED_ALL,MED_NOPF,0,MED_NOPG,dimd,
93                                 (unsigned char*) pflval,MED_REMP)) < 0)
94     return -1;
95 #endif
96
97   /*
98    * On ferme tout
99    */
100   if ((ret = _MEDdatagroupFermer(pid)) < 0)
101     return -1;
102   if ((ret = _MEDdatagroupFermer(root)) < 0)
103     return -1;
104
105   return 0; 
106 }
107
108 }