Salome HOME
merge from branch BR_V5_DEV
[modules/kernel.git] / src / HDFPersist / HDFdatasetWrite.c
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 /*----------------------------------------------------------------------------
23 SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
24   File   : HDFdatasetWrite.c
25   Module : SALOME
26 ----------------------------------------------------------------------------*/
27
28 #include "hdfi.h"
29 #include <stdlib.h>
30
31 /*
32  * - Name : _MEDdatasetWrite
33  * - Description : writes a HDF dataset
34  * - Parameters :
35  *     - id  (IN)     : dataset ID
36  *     - val  (IN)    : datset values
37  * - Result : 
38  *     - if success : 0
39  *     - if failure : -1
40  */ 
41 hdf_err HDFdatasetWrite(hdf_idt id, void *val)
42 {
43   hdf_idt datatype;
44   hdf_err ret;
45 #if defined (PCLINUX) || defined (PCLINUX64)
46   int isI32BE = 0;
47   int size = 0;
48 #endif
49
50   if ((datatype = H5Dget_type(id)) < 0)
51     return -1;
52
53 #if defined (PCLINUX) || defined (PCLINUX64)
54   if((H5Tget_class(datatype) == H5T_INTEGER) && (H5Tget_size(datatype) == 4)) {
55     isI32BE = 1; /* See HDFdatasetCreate */
56
57     /*SRN : bug IPAL9619:  replaced the method of getting the size of INT32 dataset */ 
58     int i, ndim = HDFdatasetGetnDim(id);
59     if(ndim < 0) return -1;
60     
61     hdf_size *dim = (hdf_size *) malloc(sizeof(hdf_size)*ndim);
62     if ((ret = HDFdatasetGetDim(id, dim)) < 0)  return -1;
63         
64     for(i=0; i<ndim; i++) size+=dim[i];    
65     free(dim);
66     /*SRN : end of the fix */
67     
68     if(size == 0) 
69       return -1;
70     if(H5Tconvert(H5T_NATIVE_INT, H5T_STD_I32BE, size, (void *)val, NULL, (hid_t)0) < 0) 
71       return -1;
72   }
73 #endif
74
75   if ((ret = H5Dwrite(id, datatype, H5S_ALL, H5S_ALL, H5P_DEFAULT, val)) < 0) 
76     return -1;
77
78 #if defined (PCLINUX) || defined (PCLINUX64)
79   if (isI32BE && (H5Tconvert(H5T_STD_I32BE, H5T_NATIVE_INT, size, (void *)val, NULL, (hid_t)0) < 0)) 
80     return -1;
81 #endif
82
83   return 0;
84 }