1 /*----------------------------------------------------------------------------
2 SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
4 Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License.
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
25 File : HDFdatasetWrite.c
27 ----------------------------------------------------------------------------*/
32 * - Name : _MEDdatasetWrite
33 * - Description : writes a HDF dataset
35 * - id (IN) : dataset ID
36 * - val (IN) : datset values
41 hdf_err HDFdatasetWrite(hdf_idt id, void *val)
50 if ((datatype = H5Dget_type(id)) < 0)
54 if((H5Tget_class(datatype) == H5T_INTEGER) && (H5Tget_size(datatype) == 4)) {
55 isI32BE = 1; /* See HDFdatasetCreate */
56 size = (int)HDFdatasetGetSize(id) / 4;
59 if(H5Tconvert(H5T_NATIVE_INT, H5T_STD_I32BE, size, (void *)val, NULL, NULL) < 0)
64 if ((ret = H5Dwrite(id, datatype, H5S_ALL, H5S_ALL, H5P_DEFAULT, val)) < 0)
68 if (isI32BE && (H5Tconvert(H5T_STD_I32BE, H5T_NATIVE_INT, size, (void *)val, NULL, NULL) < 0))