Salome HOME
201c2daf13ffc4dd3c7d3b94b9846a1f68dc7447
[modules/med.git] / src / MEDWrapper / V2_1 / MEDversionConforme.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 namespace med_2_1{
42
43 med_err
44 MEDversionConforme(const char *nom) {
45   med_int majeur, mineur;
46   med_idt fid, gid;
47   med_err ret;
48
49   /*
50    * On inhibe le gestionnaire d'erreur HDF
51    */
52   _MEDmodeErreurVerrouiller();
53
54   /*
55    * On ouvre le fichier MED en mode MED_LECT
56    */     
57   if ((fid = _MEDfichierOuvrir((char *)nom,MED_LECT)) < 0)
58     return -1;
59   
60   /*
61    * Lecture du numero de version 
62    */
63   if ((gid = _MEDdatagroupOuvrir(fid,MED_NOM_INFOS)) < 0) 
64     return -1;
65   
66   if ((ret = _MEDattrEntierLire(gid,MED_NOM_MAJEUR,&majeur)) < 0)
67     return -1;
68   
69   if ((ret = _MEDattrEntierLire(gid,MED_NOM_MINEUR,&mineur)) < 0)
70     return -1;                                                  
71   
72   /* 
73    * On ferme tout 
74    */
75   if ((ret = _MEDdatagroupFermer(gid)) < 0)
76     return -1;
77   
78   if ((ret = _MEDfichierFermer(fid)) < 0)
79     return -1;
80   
81   if ((majeur == MED_NUM_MAJEUR) && (mineur == MED_NUM_MINEUR))
82     return 0;
83   else
84     return -1;
85 }
86
87 }