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