Salome HOME
ff4490588febf835506f580126ca5f8558082a7f
[modules/med.git] / src / MEDWrapper / V2_1 / MEDnChamp.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 <string.h>
40 #include <stdlib.h>
41 #include "med_outils.hxx"
42
43 namespace med_2_1{
44
45 med_int 
46 MEDnChamp(med_idt fid, int indice)
47 {
48   int n1;
49   med_int n2;
50   med_idt datagroup;
51   med_err ret;
52   char nomdatagroup[MED_TAILLE_NOM+1];
53   int num;
54   char chemin[MED_TAILLE_CHA+MED_TAILLE_NOM+1];
55
56   if (indice < 0)
57     return -1;
58
59   /*
60    * On inhibe le gestionnaire d'erreur HDF 
61    */
62   _MEDmodeErreurVerrouiller();
63   
64   /* 
65    * Si le Data Group cha n'existe pas et indice == 0 => 0
66    * sinon erreur => erreur
67    */
68   strcpy(chemin,MED_CHA);
69
70   /*
71    * Si indice == 0 => nombre de champs
72    */
73   if (indice == 0)
74     {
75       n1 = 0;
76       _MEDnObjets(fid,chemin,&n1);
77       n2 = n1;
78     }
79
80   /*
81    * Si indice > 0 => nbre de composants
82    */
83   if (indice > 0)
84     {
85       /*
86        * On recupere le nom du champ 
87        */
88       num = indice-1;
89       if ((ret = _MEDobjetIdentifier(fid,chemin,num,nomdatagroup)) < 0)
90         return -1;
91       strcat(chemin,nomdatagroup);
92       /*
93        * On recupere le nombre de composants
94        */
95       if ((datagroup = _MEDdatagroupOuvrir(fid,chemin)) < 0) 
96         return -1;
97       if ((ret = _MEDattrEntierLire(datagroup,MED_NOM_NCO,&n2)) < 0)
98         return -1;
99       if ((ret = _MEDdatagroupFermer(datagroup)) < 0)
100         return -1;
101     }
102
103   return n2;
104 }
105
106 }