1 // Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #include "DriverSTL_R_SMDS_Mesh.h"
25 #include <Basics_Utils.hxx>
28 #include <NCollection_DataMap.hxx>
29 #include <Standard_NoMoreObject.hxx>
31 #include "SMDS_Mesh.hxx"
32 #include "SMDS_MeshElement.hxx"
33 #include "SMDS_MeshNode.hxx"
34 #include "SMESH_File.hxx"
40 //=======================================================================
43 //=======================================================================
44 inline static Standard_Integer HashCode
45 (const gp_Pnt& point, Standard_Integer Upper)
50 Standard_Integer I[6];
53 point.Coord( U.R[0], U.R[1], U.R[2] );
55 return ::HashCode(U.I[0]/23+U.I[1]/19+U.I[2]/17+U.I[3]/13+U.I[4]/11+U.I[5]/7,Upper);
57 //=======================================================================
60 //=======================================================================
61 inline static Standard_Boolean IsEqual
62 (const gp_Pnt& point1, const gp_Pnt& point2)
64 static Standard_Real tab1[3], tab2[3];
65 point1.Coord(tab1[0],tab1[1],tab1[2]);
66 point2.Coord(tab2[0],tab2[1],tab2[2]);
67 return (memcmp(tab1,tab2,sizeof(tab1)) == 0);
70 typedef NCollection_DataMap<gp_Pnt,SMDS_MeshNode*,Hasher> TDataMapOfPntNodePtr;
72 const int HEADER_SIZE = 84;
73 const int SIZEOF_STL_FACET = 50;
74 const int ASCII_LINES_PER_FACET = 7;
75 const int SIZE_OF_FLOAT = 4;
76 // const int STL_MIN_FILE_SIZE = 284;
79 //=======================================================================
80 //function : DriverSTL_R_SMDS_Mesh
82 //=======================================================================
84 DriverSTL_R_SMDS_Mesh::DriverSTL_R_SMDS_Mesh()
86 myIsCreateFaces = true;
87 myIsAscii = Standard_True;
90 //=======================================================================
91 //function : SetIsCreateFaces
93 //=======================================================================
95 void DriverSTL_R_SMDS_Mesh::SetIsCreateFaces( const bool theIsCreate )
96 { myIsCreateFaces = theIsCreate; }
98 //=======================================================================
101 //=======================================================================
103 Driver_Mesh::Status DriverSTL_R_SMDS_Mesh::Perform()
105 Kernel_Utils::Localizer loc;
107 Status aResult = DRS_OK;
109 if ( myFile.empty() ) {
110 fprintf(stderr, ">> ERREOR : invalid file name \n");
114 SMESH_File file( myFile, /*open=*/false );
115 if ( !file.open() ) {
116 fprintf(stderr, ">> ERROR : cannot open file %s \n", myFile.c_str());
117 if ( file.error().empty() )
118 fprintf(stderr, ">> ERROR : %s \n", file.error().c_str());
122 // we skip the header which is in Ascii for both modes
123 const char* data = file;
126 // we check 128 characters to detect if we have a non-ascii char
127 myIsAscii = Standard_True;
128 for (int i = 0; i < 128; ++i, ++data) {
129 if ( !isascii( *data ) && data < file.end() ) {
130 myIsAscii = Standard_False;
136 fprintf(stderr, ">> ERREOR : cannot create mesh \n");
141 aResult = readAscii( file );
143 aResult = readBinary( file );
150 static Standard_Real readFloat(SMESH_File& theFile)
154 Standard_ShortReal f;
157 const char* c = theFile;
159 u.i |= (c[1] & 0xFF) << 0x08;
160 u.i |= (c[2] & 0xFF) << 0x10;
161 u.i |= (c[3] & 0xFF) << 0x18;
162 theFile += SIZE_OF_FLOAT;
167 static SMDS_MeshNode* addNode(const gp_Pnt& P,
168 TDataMapOfPntNodePtr& uniqnodes,
171 SMDS_MeshNode* node = 0;
172 if ( uniqnodes.IsBound(P) ) {
173 node = uniqnodes.Find(P);
175 node = theMesh->AddNode(P.X(), P.Y(), P.Z() );
176 uniqnodes.Bind(P,node);
182 static SMDS_MeshNode* readNode(FILE* file,
183 TDataMapOfPntNodePtr& uniqnodes,
186 Standard_ShortReal coord[3];
188 fscanf(file,"%*s %f %f %f\n",&coord[0],&coord[1],&coord[2]);
190 gp_Pnt P(coord[0],coord[1],coord[2]);
191 return addNode( P, uniqnodes, theMesh );
194 static SMDS_MeshNode* readNode(SMESH_File& theFile,
195 TDataMapOfPntNodePtr& uniqnodes,
199 coord.SetX( readFloat(theFile));
200 coord.SetY( readFloat(theFile));
201 coord.SetZ( readFloat(theFile));
203 return addNode( coord, uniqnodes, theMesh );
206 //=======================================================================
207 //function : readAscii
209 //=======================================================================
211 Driver_Mesh::Status DriverSTL_R_SMDS_Mesh::readAscii(SMESH_File& theFile) const
213 Status aResult = DRS_OK;
216 long filesize = theFile.size();
220 FILE* file = fopen( myFile.c_str(),"r");
222 // count the number of lines
223 Standard_Integer nbLines = 0;
224 for (long ipos = 0; ipos < filesize; ++ipos) {
225 if (getc(file) == '\n')
229 // go back to the beginning of the file
232 Standard_Integer nbTri = (nbLines / ASCII_LINES_PER_FACET);
234 TDataMapOfPntNodePtr uniqnodes;
236 while (getc(file) != '\n');
239 for (Standard_Integer iTri = 0; iTri < nbTri; ++iTri) {
241 // skipping the facet normal
242 Standard_ShortReal normal[3];
243 fscanf(file,"%*s %*s %f %f %f\n",&normal[0],&normal[1],&normal[2]);
245 // skip the keywords "outer loop"
246 fscanf(file,"%*s %*s");
249 SMDS_MeshNode* node1 = readNode( file, uniqnodes, myMesh );
250 SMDS_MeshNode* node2 = readNode( file, uniqnodes, myMesh );
251 SMDS_MeshNode* node3 = readNode( file, uniqnodes, myMesh );
254 myMesh->AddFace(node1,node2,node3);
256 // skip the keywords "endloop"
259 // skip the keywords "endfacet"
267 //=======================================================================
268 //function : readBinary
270 //=======================================================================
272 Driver_Mesh::Status DriverSTL_R_SMDS_Mesh::readBinary(SMESH_File& file) const
274 Status aResult = DRS_OK;
276 // the size of the file (minus the header size)
277 // must be a multiple of SIZEOF_STL_FACET
279 long filesize = file.size();
281 if ( (filesize - HEADER_SIZE) % SIZEOF_STL_FACET !=0
282 // Commented to allow reading small files (ex: 1 face)
283 /*|| (filesize < STL_MIN_FILE_SIZE)*/) {
284 Standard_NoMoreObject::Raise("DriverSTL_R_SMDS_MESH::readBinary (wrong file size)");
287 // don't trust the number of triangles which is coded in the file
288 // sometimes it is wrong, and with this technique we don't need to swap endians for integer
289 Standard_Integer nbTri = ((filesize - HEADER_SIZE) / SIZEOF_STL_FACET);
294 TDataMapOfPntNodePtr uniqnodes;
296 for (Standard_Integer iTri = 0; iTri < nbTri; ++iTri) {
299 file += 3 * SIZE_OF_FLOAT;
302 SMDS_MeshNode* node1 = readNode( file, uniqnodes, myMesh );
303 SMDS_MeshNode* node2 = readNode( file, uniqnodes, myMesh );
304 SMDS_MeshNode* node3 = readNode( file, uniqnodes, myMesh );
307 myMesh->AddFace(node1,node2,node3);