Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / STEPExport / STEPExport.cxx
1 // Copyright (C) 2007-2012  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
23 // File:        STEPExport.cxx
24 // Created:     Wed May 19 14:53:52 2004
25 // Author:      Pavel TELKOV
26 //              <ptv@mutex.nnov.opencascade.com>
27 //
28 #include "utilities.h"
29
30 #include <Basics_Utils.hxx>
31
32 #include <IFSelect_ReturnStatus.hxx>
33
34 #include <STEPControl_Writer.hxx>
35 #include <Interface_Static.hxx>
36
37 #include <TCollection_AsciiString.hxx>
38 #include <TopoDS_Shape.hxx>
39
40 #ifdef WNT
41  #if defined STEPEXPORT_EXPORTS || defined STEPExport_EXPORTS
42   #if defined WIN32
43    #define STEPEXPORT_EXPORT __declspec( dllexport )
44   #else
45    #define STEPEXPORT_EXPORT
46   #endif
47  #else
48   #if defined WIN32
49    #define STEPEXPORT_EXPORT __declspec( dllimport )
50   #else
51    #define STEPEXPORT_EXPORT
52   #endif
53  #endif
54 #else
55  #define STEPEXPORT_EXPORT
56 #endif
57
58 //=============================================================================
59 /*!
60  *
61  */
62 //=============================================================================
63
64 extern "C"
65 {
66 STEPEXPORT_EXPORT
67   int Export(const TopoDS_Shape& theShape, const TCollection_AsciiString& theFileName)
68   {
69     MESSAGE("Export STEP into file " << theFileName.ToCString());
70
71   try 
72     {
73       // Set "C" numeric locale to save numbers correctly
74       Kernel_Utils::Localizer loc;
75
76       IFSelect_ReturnStatus status ;
77       //VRV: OCC 4.0 migration
78       STEPControl_Writer aWriter;
79       //VSR: 16/09/09: Convert to METERS
80       Interface_Static::SetCVal("xstep.cascade.unit","M");
81       Interface_Static::SetIVal("write.step.nonmanifold", 1);
82 //JFA: PAL6162      status = aWriter.Transfer( theShape, STEPControl_ManifoldSolidBrep );
83       status = aWriter.Transfer( theShape, STEPControl_AsIs );
84       //VRV: OCC 4.0 migration
85       if ( status == IFSelect_RetDone ) 
86           status = aWriter.Write( theFileName.ToCString() );
87
88       // Return previous locale
89       if ( status == IFSelect_RetDone ) 
90         return 1;
91     }
92   catch(Standard_Failure) 
93     {
94       //THROW_SALOME_CORBA_EXCEPTION("Exception catched in STEPExport", SALOME::BAD_PARAM);
95     }
96   return 0;
97   }
98 }