Salome HOME
Mantis issue 0021191: GlueEdges and GlueFaces problem with tolerance 1. A fix by...
[modules/geom.git] / src / IGESExport / IGESExport.cxx
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
22 // File:        IGESExport.cxx
23 // Created:     Wed May 19 14:49:45 2004
24 // Author:      Pavel TELKOV
25
26 #include "utilities.h"
27
28 #include <Basics_Utils.hxx>
29
30 #include <IGESControl_Controller.hxx>
31 #include <IGESControl_Writer.hxx>
32 #include <Interface_Static.hxx>
33
34 #include <TopoDS_Shape.hxx>
35 #include <TopoDS_Iterator.hxx>
36
37 #include <TCollection_AsciiString.hxx>
38
39 #include <Standard_Failure.hxx>
40
41 #ifdef WNT
42  #if defined IGESEXPORT_EXPORTS || defined IGESExport_EXPORTS
43   #if defined WIN32
44    #define IGESEXPORT_EXPORT __declspec( dllexport )
45   #else
46    #define IGESEXPORT_EXPORT
47   #endif
48  #else
49   #if defined WIN32
50    #define IGESEXPORT_EXPORT __declspec( dllimport )
51   #else
52    #define IGESEXPORT_EXPORT
53   #endif
54  #endif
55 #else
56  #define IGESEXPORT_EXPORT
57 #endif
58
59 //=============================================================================
60 /*!
61  *  KindOfBRep
62  *  \return 0 if theShape contains only simple entities (wires, edges and vertices),
63  *          1 if theShape contains only complex entities (shells, solids and compsolids)
64  *          2 if theShape contains only indifferent entities (faces)
65  *         -1 if theShape contains both simple and complex entities (and in this case it
66  *            cannot be saved without any loss neither in BRepMode == 0 nor in BRepMode == 1)
67  */
68 //=============================================================================
69 int KindOfBRep (const TopoDS_Shape& theShape)
70 {
71   int aKind = 2;
72
73   switch (theShape.ShapeType())
74   {
75   case TopAbs_COMPOUND:
76     {
77       bool isSimple = false;
78       bool isComplex = false;
79       TopoDS_Iterator anIt (theShape, Standard_True, Standard_True);
80       for (; anIt.More(); anIt.Next()) {
81         TopoDS_Shape aS = anIt.Value();
82         int aKindSub = KindOfBRep(aS);
83         if (aKindSub == 0)
84           isSimple = true;
85         else if (aKindSub == 1)
86           isComplex = true;
87         else if (aKindSub == -1) {
88           return -1; // heterogeneous
89         }
90       }
91       if (isSimple && isComplex)
92         aKind = -1; // heterogeneous
93       else if (isSimple)
94         aKind = 0;
95       else if (isComplex)
96         aKind = 1;
97     }
98     break;
99   case TopAbs_COMPSOLID:
100   case TopAbs_SOLID:
101   case TopAbs_SHELL:
102     aKind = 1;
103     break;
104   case TopAbs_WIRE:
105   case TopAbs_EDGE:
106   case TopAbs_VERTEX:
107     aKind = 0;
108     break;
109   default:
110     aKind = 2;
111   }
112
113   return aKind;
114 }
115
116 //=============================================================================
117 /*!
118  *
119  */
120 //=============================================================================
121
122 extern "C"
123 {
124 IGESEXPORT_EXPORT
125   int Export( const TopoDS_Shape& theShape,
126               const TCollection_AsciiString& theFileName,
127               const TCollection_AsciiString& theFormatName )
128   {
129     bool ok = false;
130
131     // define, whether to write only faces (5.1 IGES format)
132     // or shells and solids also (5.3 IGES format)
133     int aBrepMode = 0;
134     if (theFormatName.IsEqual("IGES_5_3"))
135       aBrepMode = 1;
136
137     MESSAGE("Export IGES into file " << theFileName.ToCString());
138
139     // Mantis issue 0021350: check being exported shape, as some standalone
140     // entities (edges, wires and vertices) cannot be saved in BRepMode
141     if (aBrepMode == 1) {
142       int aKind = KindOfBRep(theShape);
143       if (aKind == -1)
144         Standard_Failure::Raise("EXPORT_IGES_HETEROGENEOUS_COMPOUND");
145       else if (aKind == 2)
146         aBrepMode = 1;
147       else
148         aBrepMode = aKind;
149     }
150
151     // commented for 0021350: Please don't catch exceptions silently and send an
152     // inappropriate error message instead, it is disturbing for the user and for us
153     //try
154     {
155       // Set "C" numeric locale to save numbers correctly
156       Kernel_Utils::Localizer loc;
157
158       // initialize writer
159       IGESControl_Controller::Init();
160       //IGESControl_Writer ICW (Interface_Static::CVal("write.iges.unit"),
161       //                        Interface_Static::IVal("write.iges.brep.mode"));
162       IGESControl_Writer ICW ("M", aBrepMode); // "write.iges.unit" ->> VSR 15.09.09: export explicitly in meters
163       Interface_Static::SetCVal("xstep.cascade.unit","M");
164
165       // 09.03.2010 skl for bug 0020726
166       // change default value "Average" to "Max"
167       Interface_Static::SetCVal("write.precision.mode","Max");
168
169       // perform shape writing
170       if (ICW.AddShape( theShape )) {
171         ICW.ComputeModel();
172         ok = ICW.Write( theFileName.ToCString() );
173       }
174     }
175     //catch(Standard_Failure)
176     //{
177     //}
178     return ok;
179   }
180 }