Salome HOME
Copyrights update
[modules/med.git] / src / MEDWrapper / V2_1 / MEDdatasetStringEcrire.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 /*
42  * - Nom de la fonction : _MEDdatasetStringEcrire
43  * - Description : ecriture d'un dataset tableau de caracteres
44  * - Parametres :
45  *     - pere (IN)     : l'ID de l'objet HDF pere ou placer l'attribut
46  *     - nom  (IN)     : le nom de l'attribut 
47  *     - dimd (IN)     : profil du tableau
48  *     - val  (IN)     : valeurs du tableau
49  *     - mode (IN)     : mode d'ecriture MED
50  * - Resultat : 0 en cas de succes, -1 sinon
51  */ 
52
53 namespace med_2_1{
54
55 med_err 
56 _MEDdatasetStringEcrire(med_idt pere,char *nom,med_size *dimd,
57                         char *val, med_mode_acces mode)
58 {
59   med_idt dataset;
60   med_idt datatype = 0;
61   med_idt dataspace = 0;
62   med_err ret;
63
64   if ((dataset = H5Dopen(pere,nom)) < 0)
65     {
66       if ((dataspace = H5Screate_simple(1,dimd,NULL)) < 0)
67         return -1;
68       if((datatype = H5Tcopy(H5T_C_S1)) < 0)
69         return -1;
70       if((ret = H5Tset_size(datatype,1)) < 0)
71         return -1;
72       if ((dataset = H5Dcreate(pere,nom,datatype,dataspace,
73                              H5P_DEFAULT)) < 0)
74         return -1;    
75     }
76   else
77     if (mode != MED_REMP)
78       {
79         H5Dclose(dataset);
80         return -1;
81       }
82     else
83       {
84       if ((dataspace = H5Screate_simple(1,dimd,NULL)) < 0)
85         return -1;
86       if((datatype = H5Tcopy(H5T_C_S1)) < 0)
87         return -1;
88       if((ret = H5Tset_size(datatype,1)) < 0)
89         return -1;
90       }
91   if ((ret = H5Dwrite(dataset,datatype,H5S_ALL,H5S_ALL,
92                       H5P_DEFAULT, val)) < 0)
93     return -1;
94   if (dataspace)
95     if((ret = H5Sclose(dataspace)) < 0)
96       return -1;
97   if (datatype)
98     if ((ret = H5Tclose(datatype)) < 0)
99       return -1;
100   if ((ret = H5Dclose(dataset)) < 0)
101     return -1;
102
103   return 0;
104 }
105
106 }