Salome HOME
Update to match the changes in SMDS
[modules/smesh.git] / src / DriverMED / DriverMED_W_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_W_SMESHDS_Document.cxx
25 //  Module : SMESH
26
27 using namespace std;
28 #include "DriverMED_W_SMESHDS_Document.h"
29 #include "DriverMED_W_SMESHDS_Mesh.h"
30 #include "utilities.h"
31
32 #include <stdio.h>
33
34 extern "C"
35 {
36         Document_Writer *Wmaker()
37         {
38                 return new DriverMED_W_SMESHDS_Document;
39         }
40 }
41
42 DriverMED_W_SMESHDS_Document::DriverMED_W_SMESHDS_Document()
43 {
44         ;
45 }
46
47 DriverMED_W_SMESHDS_Document::~DriverMED_W_SMESHDS_Document()
48 {
49         ;
50 }
51
52 //void DriverMED_W_SMESHDS_Document::SetFile(string aFile) {
53 //myFile = aFile;
54 //}
55
56 //void DriverMED_W_SMESHDS_Document::SetDocument(Handle(SMESHDS_Document)& aDocument) {
57 //myDocument = aDocument;
58 //}
59
60 void DriverMED_W_SMESHDS_Document::Write()
61 {
62
63         med_err ret = 0;
64         med_idt fid;
65         med_int nmaa, numero, nb_of_meshes;
66         med_mode_switch mode_coo;
67         med_connectivite typ_con;
68
69         SCRUTE(myFile);
70         SMESHDS_Mesh * myMesh;
71
72   /******** Nombre de maillages ********/
73         nb_of_meshes = myDocument->NbMeshes();  //voir avec Yves
74         MESSAGE("nb_of_meshes = " << nb_of_meshes << "\n");
75         SCRUTE(nb_of_meshes);
76         //nb_of_meshes = 1;
77         numero = 0;
78
79         string myClass = string("SMESHDS_Mesh");
80         string myExtension = string("MED");
81
82         //while (numero<nb_of_meshes) {
83         //numero++;
84         //myMesh = myDocument->GetMesh(numero);
85
86         myDocument->InitMeshesIterator();
87         if (nb_of_meshes != 0)
88                 while(myDocument->MoreMesh())
89                 {
90                         numero++;
91                         myMesh = myDocument->NextMesh();
92
93                         DriverMED_W_SMESHDS_Mesh *myWriter = new DriverMED_W_SMESHDS_Mesh;
94
95                         myWriter->SetMesh(myMesh);
96                         myWriter->SetFile(myFile);
97                         //myWriter->SetFileId(fid);
98                         myWriter->SetMeshId(numero);
99
100                         //myWriter->Write();
101                         myWriter->Add();
102                 }
103 }