Salome HOME
206003a1a4941d9a39789dc65500fb555ab706cd
[modules/med.git] / src / MEDWrapper / V2_1 / MEDattrNumLire.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
39 #include "med.hxx"
40 #include "med_outils.hxx"
41
42 /*
43  * - Nom de la fonction : _MEDattrNumLire
44  * - Description : lecture d'un attribut entier
45  * - Parametres :
46  *     - pere (IN)  : l'ID de l'objet HDF pere ou placer l'attribut
47  *     - type (IN)  : le type du champ {MED_REEL64,MED_INT}
48  *     - nom  (IN)  : le nom de l'attribut 
49  *     - val  (OUT) : la valeur de l'attribut
50  * - Resultat : 0 en cas de succes, -1 sinon
51  */ 
52
53 namespace med_2_1{
54
55 med_err 
56 _MEDattrNumLire(med_idt pere,med_type_champ type,char *nom,unsigned char *val)
57 {
58   med_idt attid;
59   med_err ret;
60   int type_hdf;
61
62   if ((attid = H5Aopen_name(pere,nom)) < 0)
63     return -1;
64
65   switch(type) 
66     {
67     case MED_REEL64 :
68 #if defined(PCLINUX) || defined(OSF1)
69       type_hdf = H5T_IEEE_F64BE;
70 #else 
71       type_hdf = H5T_IEEE_F64LE;
72 #endif
73       break;
74       
75     case MED_INT :
76 #if defined(IRIX64) || defined(OSF1)
77       type_hdf = H5T_NATIVE_LONG; 
78 #else
79       type_hdf = H5T_NATIVE_INT;
80 #endif
81       break;
82       
83     default :
84       return -1;
85     }
86
87   if ((ret = H5Aread(attid,type_hdf,val)) < 0)
88     return -1;
89
90   if ((ret = H5Aclose(attid)) < 0)
91     return -1;
92
93   return 0;
94 }
95
96 }