Salome HOME
fd4b236ec09a9ca6a32246776176da27926be453
[modules/kernel.git] / src / HDFPersist / HDFarrayCreate.c
1 /* Copyright (C) 2007-2023  CEA, EDF, 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, or (at your option) any later version.
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 /*----------------------------------------------------------------------------
24 SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
25   File   : HDFarrayCreate.c
26   Module : SALOME
27 ----------------------------------------------------------------------------*/
28
29 #include "hdfi.h"
30
31 /*
32  * - Name : HDFarrayCreate
33  * - Description : creates a HDF array
34  * - Parameters :
35  *     - dataType    (IN) : type of the data in the array (HDF_INT32, HDF_INT64, HDF_FLOAT64, HDF_CHAR).
36  *     - ndim        (IN) : is the number of dimensions and the size of each dimension is specified in the array dims.
37  *     - dim         (IN) : size of each array dimension.
38  * - Result : 
39  *     - if success : returns array ID
40  *     - if failure : -1
41  */ 
42
43 hdf_idt HDFarrayCreate(hdf_type dataType, int ndim, hdf_size *dim)
44 {
45   hdf_idt type_hdf;
46   switch(dataType)
47       {
48       case HDF_FLOAT64 :
49 #if defined (PCLINUX) || defined (PCLINUX64)
50         type_hdf = H5T_IEEE_F64BE;
51 #else 
52         type_hdf = H5T_IEEE_F64LE;
53 #endif
54         break;
55
56       case HDF_INT32 :
57 #if defined (PCLINUX) || defined (PCLINUX64)
58         type_hdf = H5T_STD_I32BE;  
59 #else
60         type_hdf = H5T_NATIVE_INT;
61 #endif
62         break;
63  
64       case HDF_INT64 :
65         type_hdf = H5T_NATIVE_LONG;
66         break;
67       case HDF_CHAR :
68         type_hdf = H5T_NATIVE_CHAR;
69         break;
70       default:
71         return -1;
72         break;
73       }
74     
75     return H5Tarray_create2( type_hdf, ndim, dim );
76 }