Salome HOME
Merge branch 'Port_SALOME_8.5.0'
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_IGESImport.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <GeomAlgoAPI_IGESImport.h>
22
23 #include <TopoDS_Shape.hxx>
24
25 // OOCT includes
26 #include <IGESControl_Reader.hxx>
27 #include <IGESData_IGESModel.hxx>
28
29 //=============================================================================
30 /*!
31  *
32  */
33 //=============================================================================
34 std::shared_ptr<GeomAPI_Shape> IGESImport(const std::string& theFileName,
35                                           const std::string&,
36                                           std::string& theError)
37 {
38   #ifdef _DEBUG
39   std::cout << "Import IGES from file " << theFileName << std::endl;
40   #endif
41   TopoDS_Shape aShape;
42   IGESControl_Reader aReader;
43   try {
44     IFSelect_ReturnStatus status = aReader.ReadFile( theFileName.c_str() );
45
46     if (status == IFSelect_RetDone) {
47       #ifdef _DEBUG
48       std::cout << "ImportIGES : all Geometry Transfer" << std::endl;
49       #endif
50       aReader.ClearShapes();
51       aReader.TransferRoots();
52
53       #ifdef _DEBUG
54       std::cout << "ImportIGES : count of shapes produced = " << aReader.NbShapes() << std::endl;
55       #endif
56       aShape = aReader.OneShape();
57     }
58     else {
59       switch (status) {
60         case IFSelect_RetVoid:
61           theError = "Nothing created or No data to process";
62           break;
63         case IFSelect_RetError:
64           theError = "Error in command or input data";
65           break;
66         case IFSelect_RetFail:
67           theError = "Execution was run, but has failed";
68           break;
69         case IFSelect_RetStop:
70           theError = "Execution has been stopped. Quite possible, an exception was raised";
71           break;
72         default:
73           theError = "Wrong format of the imported file. Can't import file.";
74           break;
75       }
76       aShape.Nullify();
77     }
78   }
79   catch( Standard_Failure const& anException) {
80     theError = anException.GetMessageString();
81     aShape.Nullify();
82   }
83
84   std::shared_ptr<GeomAPI_Shape> aGeomShape(new GeomAPI_Shape);
85   aGeomShape->setImpl(new TopoDS_Shape(aShape));
86   return aGeomShape;
87 }