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