Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / IGESImport / IGESImport.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 // File:        IGESImport.cxx
21 // Created:     Wed May 19 14:36:35 2004
22 // Author:      Pavel TELKOV
23 //              <ptv@mutex.nnov.opencascade.com>
24
25 #include "utilities.h"
26
27 #include <IFSelect_ReturnStatus.hxx>
28 #include <IGESControl_Reader.hxx>
29
30 #include <TCollection_AsciiString.hxx>
31 #include <TopoDS_Shape.hxx>
32
33 #ifdef WNT
34  #if defined IGESIMPORT_EXPORTS
35   #if defined WIN32
36    #define IGESIMPORT_EXPORT __declspec( dllexport )
37   #else
38    #define IGESIMPORT_EXPORT
39   #endif
40  #else
41   #if defined WIN32
42    #define IGESIMPORT_EXPORT __declspec( dllimport )
43   #else
44    #define IGESIMPORT_EXPORT
45   #endif
46  #endif
47 #else
48  #define IGESIMPORT_EXPORT
49 #endif
50
51 //=============================================================================
52 /*!
53  *
54  */
55 //=============================================================================
56
57 extern "C"
58 {
59 IGESIMPORT_EXPORT
60   TopoDS_Shape Import (const TCollection_AsciiString& theFileName,
61                        const TCollection_AsciiString& /*theFormatName*/,
62                        TCollection_AsciiString&       theError)
63   {
64     IGESControl_Reader aReader;
65     TopoDS_Shape aResShape;
66     try {
67       IFSelect_ReturnStatus status = aReader.ReadFile(theFileName.ToCString());
68
69       if (status == IFSelect_RetDone) {
70         MESSAGE("ImportIGES : all Geometry Transfer");
71         //OCC 5.1.2 porting
72         //     aReader.Clear();
73         //     aReader.TransferRoots(false);
74         aReader.ClearShapes();
75         aReader.TransferRoots();
76
77         MESSAGE("ImportIGES : count of shapes produced = " << aReader.NbShapes());
78         aResShape = aReader.OneShape();
79
80       } else {
81 //        switch (status) {
82 //        case IFSelect_RetVoid:
83 //          theError = "Nothing created or No data to process";
84 //          break;
85 //        case IFSelect_RetError:
86 //          theError = "Error in command or input data";
87 //          break;
88 //        case IFSelect_RetFail:
89 //          theError = "Execution was run, but has failed";
90 //          break;
91 //        case IFSelect_RetStop:
92 //          theError = "Execution has been stopped. Quite possible, an exception was raised";
93 //          break;
94 //        default:
95 //          break;
96 //        }
97         theError = "Wrong format of the imported file. Can't import file.";
98         aResShape.Nullify();
99       }
100     }
101     catch(Standard_Failure) {
102       Handle(Standard_Failure) aFail = Standard_Failure::Caught();
103       theError = aFail->GetMessageString();
104       aResShape.Nullify();
105     }
106     return aResShape;
107   }
108 }