Salome HOME
Some forgotten return statments
[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         {
37                 return new DriverDAT_W_SMESHDS_Document;
38         }
39 }
40
41 DriverDAT_W_SMESHDS_Document::DriverDAT_W_SMESHDS_Document()
42 {
43         ;
44 }
45
46 DriverDAT_W_SMESHDS_Document::~DriverDAT_W_SMESHDS_Document()
47 {
48         ;
49 }
50
51 //void DriverDAT_W_SMESHDS_Document::SetFile(string aFile) {
52 //myFile = aFile;
53 //}
54
55 //void DriverDAT_W_SMESHDS_Document::SetDocument(Handle(SMESHDS_Document)& aDocument) {
56 //myDocument = aDocument;
57 //}
58
59 void DriverDAT_W_SMESHDS_Document::Write()
60 {
61
62         SMESHDS_Mesh * myMesh;
63
64   /****************************************************************************
65   *                      OUVERTURE DU FICHIER EN ECRITURE                      *
66   ****************************************************************************/
67         char *file2Write = (char *)myFile.c_str();
68         FILE *fid = fopen(file2Write, "w+");
69         if (fid < 0)
70         {
71                 fprintf(stderr, ">> ERREUR : ouverture du fichier %s \n", file2Write);
72                 exit(EXIT_FAILURE);
73         }
74
75   /****************************************************************************
76   *                      FERMETURE DU FICHIER                                 *
77   ****************************************************************************/
78
79         fclose(fid);
80
81   /******** Nombre de maillages ********/
82         int nb_of_meshes = myDocument->NbMeshes();      //voir avec Yves
83         //nb_of_meshes = 1;
84         int numero = 0;
85
86         string myClass = string("SMESHDS_Mesh");
87         string myExtension = string("DAT");
88
89         //while (numero<nb_of_meshes) {
90         //numero++;
91         //myMesh = myDocument->GetMesh(numero);
92         myDocument->InitMeshesIterator();
93         while(myDocument->MoreMesh())
94         {
95                 numero++;
96                 myMesh = myDocument->NextMesh();
97
98                 DriverDAT_W_SMESHDS_Mesh *myWriter = new DriverDAT_W_SMESHDS_Mesh;
99                 //Mesh_Writer* myWriter = Driver::GetMeshWriter(myExtension, myClass);
100
101                 myWriter->SetMesh(myMesh);
102                 myWriter->SetFile(myFile);
103                 SCRUTE(myMesh);
104                 //myWriter->SetFileId(fid);
105                 myWriter->SetMeshId(numero);
106                 myWriter->Write();
107         }
108
109 }