Salome HOME
Remove OCC_LIBS from LDFLAGS
[modules/smesh.git] / src / DriverMED / DriverMED_R_SMESHDS_Document.cxx
1 //  SMESH DriverMED : driver to read and write 'med' files
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : DriverMED_R_SMESHDS_Document.cxx
25 //  Module : SMESH
26
27 using namespace std;
28 #include "DriverMED_R_SMESHDS_Document.h"
29 #include "DriverMED_R_SMESHDS_Mesh.h"
30 #include "utilities.h"
31
32 extern "C" {
33   Document_Reader* maker() {
34     return new DriverMED_R_SMESHDS_Document;
35   }
36 }
37
38 DriverMED_R_SMESHDS_Document::DriverMED_R_SMESHDS_Document() {
39 ;
40 }
41
42 DriverMED_R_SMESHDS_Document::~DriverMED_R_SMESHDS_Document() {
43 ;
44 }
45
46 //void DriverMED_R_SMESHDS_Document::SetFile(string aFile) {
47 //  myFile = aFile;
48 //}
49
50 void DriverMED_R_SMESHDS_Document::Read() {
51
52   med_err ret = 0;
53   med_idt fid;
54   med_int nmaa;
55
56   Standard_Integer myMeshId;
57
58   //string myFile = string("/home/home_users/cai/projects/salome_prev04/SALOME_ROOT/data/fra1.med");
59
60 /****************************************************************************
61   *                      OUVERTURE DU FICHIER EN LECTURE                      *
62   ****************************************************************************/
63   char* file2Read = (char*)myFile.c_str();
64   fid = MEDouvrir(file2Read,MED_LECT);
65   if (fid < 0)
66     {
67       fprintf(stderr,">> ERREUR : ouverture du fichier %s \n",file2Read);
68       exit(EXIT_FAILURE);
69     }
70
71   /****************************************************************************
72   *                      COMBIEN DE MAILLAGES ?                               *
73   ****************************************************************************/
74   nmaa = MEDnMaa(fid);
75   if (nmaa < 0)
76     {
77       fprintf(stderr,">> ERREUR : lecture du nombre de maillages \n");
78       exit(EXIT_FAILURE);
79     }
80   printf("Nombre de maillages = %d\n",nmaa);
81
82   string myClass = string("SMESHDS_Mesh");
83   string myExtension = string("MED");
84
85
86   for (int meshIt=1;meshIt<=nmaa;meshIt++) {
87     myMeshId = myDocument->NewMesh();
88     printf("MeshId = %d\n",myMeshId);
89
90     Handle(SMDS_Mesh) myMesh = myDocument->GetMesh(myMeshId);
91   SCRUTE(myMesh);
92
93     // Handle (SMDS_Mesh) MMM =.........
94     //ex Handle(SMESHDS_Mesh) myMesh2 =Handle(SMESHDS_Mesh)::DownCast(MMM);
95
96     DriverMED_R_SMESHDS_Mesh* myReader = new DriverMED_R_SMESHDS_Mesh;
97
98     myReader->SetMesh(myMesh);
99     myReader->SetMeshId(myMeshId);
100
101     //myReader->SetFile(myFile);
102   SCRUTE(fid);
103     myReader->SetFileId(fid);
104
105     myReader->Add();
106
107   }
108
109   /****************************************************************************
110   *                      FERMETURE DU FICHIER                                 *
111   ****************************************************************************/
112   ret = MEDfermer(fid);
113   
114   if (ret != 0)
115     fprintf(stderr,">> ERREUR : erreur a la fermeture du fichier %s\n",file2Read);
116
117
118 }