Salome HOME
Preparation of intermediate revision
[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 <Basics_Utils.hxx>
30
31 #include <IGESControl_Controller.hxx>
32 #include <IGESControl_Writer.hxx>
33 #include <Interface_Static.hxx>
34
35 #include <TCollection_AsciiString.hxx>
36 #include <TopoDS_Shape.hxx>
37
38 #ifdef WNT
39  #if defined IGESEXPORT_EXPORTS || defined IGESExport_EXPORTS
40   #if defined WIN32
41    #define IGESEXPORT_EXPORT __declspec( dllexport )
42   #else
43    #define IGESEXPORT_EXPORT
44   #endif
45  #else
46   #if defined WIN32
47    #define IGESEXPORT_EXPORT __declspec( dllimport )
48   #else
49    #define IGESEXPORT_EXPORT
50   #endif
51  #endif
52 #else
53  #define IGESEXPORT_EXPORT
54 #endif
55
56 //=============================================================================
57 /*!
58  *
59  */
60 //=============================================================================
61
62 extern "C"
63 {
64 IGESEXPORT_EXPORT
65   int Export( const TopoDS_Shape& theShape,
66               const TCollection_AsciiString& theFileName,
67               const TCollection_AsciiString& theFormatName )
68   {
69     MESSAGE("Export IGES into file " << theFileName.ToCString());
70     try
71     {
72       // define, whether to write only faces (5.1 IGES format)
73       // or shells and solids also (5.3 IGES format)
74       int aBrepMode = 0;
75       if (theFormatName.IsEqual("IGES_5_3"))
76         aBrepMode = 1;
77
78       // Set "C" numeric locale to save numbers correctly
79       Kernel_Utils::Localizer loc;
80
81       // initialize writer
82       IGESControl_Controller::Init();
83       //IGESControl_Writer ICW (Interface_Static::CVal("write.iges.unit"),
84       //                        Interface_Static::IVal("write.iges.brep.mode"));
85       IGESControl_Writer ICW ("M", aBrepMode); // "write.iges.unit" ->> VSR 15.09.09: export explicitly in meters
86       Interface_Static::SetCVal("xstep.cascade.unit","M");
87
88       // perform shape writing
89       ICW.AddShape( theShape );
90       ICW.ComputeModel();
91       bool ok = ICW.Write( theFileName.ToCString() );
92       
93       // Return previous locale
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 }