1 // Copyright (C) 2014-2015 OPEN CASCADE
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #include "ACISPlugin_IOperations_i.hh"
22 #include "ACISPlugin_IOperations.hxx"
23 #include <ACISPLUGIN_version.h>
26 #include <utilities.h>
28 //=============================================================================
32 //=============================================================================
33 ACISPlugin_IOperations_i::ACISPlugin_IOperations_i( PortableServer::POA_ptr thePOA,
34 GEOM::GEOM_Gen_ptr theEngine,
35 ::ACISPlugin_IOperations* theImpl )
36 :GEOM_IOperations_i( thePOA, theEngine, theImpl )
38 MESSAGE( "ACISPlugin_Operations_i::ACISPlugin_Operations_i" );
41 //=============================================================================
45 //=============================================================================
46 ACISPlugin_IOperations_i::~ACISPlugin_IOperations_i()
48 MESSAGE( "ACISPlugin_Operations_i::~ACISPlugin_Operations_i" );
51 //=============================================================================
54 * Export a shape to ACIS format
55 * \param theOriginal The shape to export
56 * \param theFileName The name of the exported file
58 //=============================================================================
59 void ACISPlugin_IOperations_i::ExportACIS( GEOM::GEOM_Object_ptr theOriginal,
60 const char* theFileName )
62 // duplicate the original shape
63 GEOM::GEOM_Object_var aGEOMObject = GEOM::GEOM_Object::_duplicate( theOriginal );
66 GetOperations()->SetNotDone();
68 //Get the reference shape
69 Handle(GEOM_Object) anOriginal = GetObjectImpl( theOriginal );
70 if (anOriginal.IsNull()) return;
72 //Export the shape to the file
73 GetOperations()->ExportACIS( anOriginal, theFileName );
76 //=============================================================================
79 * Import a shape from ACIS format
80 * \param theFileName The name of the file to import
81 * \return List of GEOM_Objects, containing the created shape and propagation groups.
83 //=============================================================================
84 GEOM::ListOfGO* ACISPlugin_IOperations_i::ImportACIS( const char* theFileName )
86 GEOM::ListOfGO_var aSeq = new GEOM::ListOfGO;
89 GetOperations()->SetNotDone();
91 //Import the shape from the file
92 Handle(TColStd_HSequenceOfTransient) aHSeq = GetOperations()->ImportACIS( theFileName );
94 if( !GetOperations()->IsDone() || aHSeq.IsNull() )
97 // Copy created objects.
98 Standard_Integer aLength = aHSeq->Length();
99 aSeq->length( aLength );
100 for( Standard_Integer i = 1; i <= aLength; i++ )
101 aSeq[i-1] = GetObject( Handle(GEOM_Object)::DownCast( aHSeq->Value(i) ) );
106 ACISPlugin_IOperations* ACISPlugin_IOperations_i::GetOperations()
108 return (ACISPlugin_IOperations*)GetImpl();