Salome HOME
d1ccdbf1ed99dc6889fe71ef68e2a410db3a6591
[modules/geom.git] / src / IGESExport / IGESExport.cxx
1 //  Copyright (C) 2007-2008  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 //              <ptv@mutex.nnov.opencascade.com>
26 //
27 #include "utilities.h"
28
29 #include <IGESControl_Controller.hxx>
30 #include <IGESControl_Writer.hxx>
31 #include <Interface_Static.hxx>
32
33 #include <TCollection_AsciiString.hxx>
34 #include <TopoDS_Shape.hxx>
35
36 #ifdef WNT
37  #if defined IGESEXPORT_EXPORTS || defined IGESExport_EXPORTS
38   #if defined WIN32
39    #define IGESEXPORT_EXPORT __declspec( dllexport )
40   #else
41    #define IGESEXPORT_EXPORT
42   #endif
43  #else
44   #if defined WIN32
45    #define IGESEXPORT_EXPORT __declspec( dllimport )
46   #else
47    #define IGESEXPORT_EXPORT
48   #endif
49  #endif
50 #else
51  #define IGESEXPORT_EXPORT
52 #endif
53
54 //=============================================================================
55 /*!
56  *
57  */
58 //=============================================================================
59
60 extern "C"
61 {
62 IGESEXPORT_EXPORT
63   int Export( const TopoDS_Shape& theShape,
64               const TCollection_AsciiString& theFileName,
65               const TCollection_AsciiString& theFormatName )
66   {
67     MESSAGE("Export IGES into file " << theFileName.ToCString());
68     try
69     {
70       // define, whether to write only faces (5.1 IGES format)
71       // or shells and solids also (5.3 IGES format)
72       int aBrepMode = 0;
73       if (theFormatName.IsEqual("IGES_5_3"))
74         aBrepMode = 1;
75
76       // Set "C" numeric locale to save numbers correctly
77       std::string aCurLocale = setlocale(LC_NUMERIC, 0);
78       setlocale(LC_NUMERIC, "C");
79
80       // initialize writer
81       IGESControl_Controller::Init();
82       //IGESControl_Writer ICW (Interface_Static::CVal("write.iges.unit"),
83       //                        Interface_Static::IVal("write.iges.brep.mode"));
84       IGESControl_Writer ICW ("M", aBrepMode); // "write.iges.unit" ->> VSR 15.09.09: export explicitly in meters
85       Interface_Static::SetCVal("xstep.cascade.unit","M");
86
87       // perform shape writing
88       ICW.AddShape( theShape );
89       ICW.ComputeModel();
90       bool ok = ICW.Write( theFileName.ToCString() );
91       
92       // Return previous locale
93       setlocale(LC_NUMERIC, aCurLocale.data());
94       if ( ok )
95         return 1;
96     }
97     catch(Standard_Failure)
98     {
99       //THROW_SALOME_CORBA_EXCEPTION("Exception catched in IGESExport", SALOME::BAD_PARAM);
100     }
101     return 0;
102   }
103 }