Salome HOME
yfr : Merge with v1.2
[modules/smesh.git] / src / DriverDAT / DriverDAT_W_SMESHDS_Document.cxx
1 //  SMESH DriverDAT : driver to read and write 'dat' 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   : DriverDAT_W_SMESHDS_Document.cxx
25 //  Module : SMESH
26
27 using namespace std;
28 #include "DriverDAT_W_SMESHDS_Document.h"
29 #include "DriverDAT_W_SMESHDS_Mesh.h"
30
31 #include "utilities.h"
32
33 extern "C" 
34 {
35   Document_Writer* Wmaker() {
36     return new DriverDAT_W_SMESHDS_Document;
37   }
38 }
39
40 DriverDAT_W_SMESHDS_Document::DriverDAT_W_SMESHDS_Document() {
41 ;
42 }
43
44 DriverDAT_W_SMESHDS_Document::~DriverDAT_W_SMESHDS_Document() {
45 ;
46 }
47
48 //void DriverDAT_W_SMESHDS_Document::SetFile(string aFile) {
49 //myFile = aFile;
50 //}
51
52 //void DriverDAT_W_SMESHDS_Document::SetDocument(Handle(SMESHDS_Document)& aDocument) {
53 //myDocument = aDocument;
54 //}
55
56 void DriverDAT_W_SMESHDS_Document::Write() {
57
58   Handle(SMESHDS_Mesh) myMesh;
59
60   /****************************************************************************
61   *                      OUVERTURE DU FICHIER EN ECRITURE                      *
62   ****************************************************************************/
63   char* file2Write = (char*)myFile.c_str();
64   FILE* fid = fopen(file2Write,"w+");
65   if (fid < 0)
66     {
67       fprintf(stderr,">> ERREUR : ouverture du fichier %s \n",file2Write);
68       exit(EXIT_FAILURE);
69     }
70
71   /****************************************************************************
72   *                      FERMETURE DU FICHIER                                 *
73   ****************************************************************************/
74
75   fclose(fid);
76
77   /******** Nombre de maillages ********/
78   int nb_of_meshes = myDocument->NbMeshes(); //voir avec Yves
79   //nb_of_meshes = 1;
80   int numero = 0;
81
82   string myClass = string("SMESHDS_Mesh");
83   string myExtension = string("DAT");
84
85   //while (numero<nb_of_meshes) {
86   //numero++;
87   //myMesh = myDocument->GetMesh(numero);
88   myDocument->InitMeshesIterator();
89   for (;myDocument->MoreMesh();myDocument->NextMesh()) {
90     numero++;
91     myMesh = myDocument->CurrentMesh();
92
93     DriverDAT_W_SMESHDS_Mesh* myWriter = new DriverDAT_W_SMESHDS_Mesh;
94     //Mesh_Writer* myWriter = Driver::GetMeshWriter(myExtension, myClass);
95
96     myWriter->SetMesh(myMesh);
97     myWriter->SetFile(myFile);
98   SCRUTE(myMesh);
99     //myWriter->SetFileId(fid);
100     myWriter->SetMeshId(numero);
101     myWriter->Write();
102   }
103
104 }