Salome HOME
0022523: [CEA 1096] Add a colomn "biquadratic" in "Mesh Information"
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_ImportSource2D_i.cxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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
23 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
24 //  File   : StdMeshers_ImportSource2D_i.cxx
25 //  Module : SMESH
26 //
27 #include "StdMeshers_ImportSource2D_i.hxx"
28
29 #include "SMESH_Gen.hxx"
30 #include "SMESH_Gen_i.hxx"
31 #include "SMESH_Group_i.hxx"
32 #include "SMESH_PythonDump.hxx"
33 #include "StdMeshers_ObjRefUlils.hxx"
34
35 #include "Utils_CorbaException.hxx"
36 #include "utilities.h"
37
38 #include <TCollection_AsciiString.hxx>
39
40 #include CORBA_SERVER_HEADER(SMESH_Group)
41
42 using namespace std;
43
44 //=============================================================================
45 /*!
46  *  StdMeshers_ImportSource2D_i::StdMeshers_ImportSource2D_i
47  *
48  *  Constructor
49  */
50 //=============================================================================
51
52 StdMeshers_ImportSource2D_i::StdMeshers_ImportSource2D_i( PortableServer::POA_ptr thePOA,
53                                                           int                     theStudyId,
54                                                           ::SMESH_Gen*            theGenImpl )
55   : SALOME::GenericObj_i( thePOA ), 
56     SMESH_Hypothesis_i( thePOA )
57 {
58   MESSAGE( "StdMeshers_ImportSource2D_i::StdMeshers_ImportSource2D_i" );
59   myBaseImpl = new ::StdMeshers_ImportSource2D( theGenImpl->GetANewId(),
60                                                 theStudyId,
61                                                 theGenImpl );
62   _groupEntries = new SMESH::string_array();
63 }
64
65 //=============================================================================
66 /*!
67  *  StdMeshers_ImportSource2D_i::~StdMeshers_ImportSource2D_i
68  *
69  *  Destructor
70  */
71 //=============================================================================
72
73 StdMeshers_ImportSource2D_i::~StdMeshers_ImportSource2D_i()
74 {
75   MESSAGE( "StdMeshers_ImportSource2D_i::~StdMeshers_ImportSource2D_i" );
76 }
77
78 //=============================================================================
79 /*!
80  *  SetSourceFaces
81  */
82 //=============================================================================
83
84 void StdMeshers_ImportSource2D_i::SetSourceFaces(const SMESH::ListOfGroups& groups)
85 {
86   MESSAGE( "StdMeshers_ImportSource2D_i::SetSourceFaces" );
87   ASSERT( myBaseImpl );
88   try
89   {
90     std::vector<SMESH_Group*> smesh_groups;
91     std::vector<string> entries;
92     SALOMEDS::Study_var study = SMESH_Gen_i::GetSMESHGen()->GetCurrentStudy();
93     for ( int i = 0; i < groups.length(); ++i )
94       if ( SMESH_GroupBase_i* gp_i = SMESH::DownCast<SMESH_GroupBase_i*>( groups[i] ))
95       {
96         if ( gp_i->GetType() != SMESH::FACE )
97           THROW_SALOME_CORBA_EXCEPTION("Wrong group type", SALOME::BAD_PARAM);
98         smesh_groups.push_back( gp_i->GetSmeshGroup() );
99
100         SALOMEDS::SObject_var so = SMESH_Gen_i::ObjectToSObject(study, groups[i]);
101         if ( !so->_is_nil())
102         {
103           CORBA::String_var entry = so->GetID();
104           entries.push_back( entry.in() );
105           so->UnRegister();
106         }
107       }
108     this->GetImpl()->SetGroups( smesh_groups );
109
110     _groupEntries = new SMESH::string_array;
111     _groupEntries->length( entries.size ());
112     for ( int i = 0; i < entries.size(); ++i )
113       _groupEntries[i] = entries[i].c_str();
114   }
115   catch ( SALOME_Exception& S_ex )
116   {
117     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
118   }
119
120   // Update Python script
121   SMESH::TPythonDump() << _this() << ".SetSourceFaces( " << groups << " )";
122 }
123
124 //=============================================================================
125 /*!
126  * Return entries of groups
127  */
128 //=============================================================================
129
130 SMESH::string_array*  StdMeshers_ImportSource2D_i::GetSourceFaces()
131 {
132   MESSAGE( "StdMeshers_ImportSource2D_i::GetImportSource" );
133   SMESH::string_array_var res = new SMESH::string_array( _groupEntries );
134   return res._retn();
135 }
136
137 //================================================================================
138 /*!
139  * \brief Set to copy mesh and groups
140  */
141 //================================================================================
142
143 void StdMeshers_ImportSource2D_i::SetCopySourceMesh(CORBA::Boolean toCopyMesh,
144                                                     CORBA::Boolean toCopyGroups)
145 {
146   GetImpl()->SetCopySourceMesh(toCopyMesh,toCopyGroups);
147   SMESH::TPythonDump() << _this() << ".SetCopySourceMesh( "
148                        << toCopyMesh << ", " << toCopyGroups << " )";
149 }
150
151 //================================================================================
152 /*!
153  * \brief Return "to copy mesh and groups"
154  */
155 //================================================================================
156
157 void StdMeshers_ImportSource2D_i::GetCopySourceMesh(CORBA::Boolean& toCopyMesh,
158                                                     CORBA::Boolean& toCopyGroups)
159 {
160   GetImpl()->GetCopySourceMesh(toCopyMesh,toCopyGroups);
161 }
162
163 //================================================================================
164 /*!
165  * \brief Write parameters in a string
166   * \retval char* - resulting string
167  */
168 //================================================================================
169
170 char* StdMeshers_ImportSource2D_i::SaveTo()
171 {
172   std::ostringstream os;
173   os << " " << _groupEntries->length();
174
175   SALOMEDS::Study_var study = SMESH_Gen_i::GetSMESHGen()->GetCurrentStudy();
176   for ( int i = 0; i < _groupEntries->length(); ++i )
177   {
178     // entry
179     os << " " << _groupEntries[i];
180
181     // id
182     SALOMEDS::SObject_var groupSO = study->FindObjectID( _groupEntries[i] );
183     CORBA::Object_var    groupObj;
184     if ( !groupSO->_is_nil() ) {
185       groupObj = groupSO->GetObject();
186       groupSO->UnRegister();
187     }
188     StdMeshers_ObjRefUlils::SaveToStream( groupObj, os );
189   }
190
191   myBaseImpl->SaveTo( os );
192
193   return CORBA::string_dup( os.str().c_str() );
194 }
195
196 //================================================================================
197 /*!
198  * \brief Retrieve parameters from the string
199   * \param theStream - the input string
200  */
201 //================================================================================
202
203 void StdMeshers_ImportSource2D_i::LoadFrom( const char* theStream )
204 {
205   std::istringstream is( theStream );
206
207   int nbGroups;
208   is >> nbGroups;
209
210   _groupEntries = new SMESH::string_array;
211   _groupEntries->length( nbGroups );
212   std::string id, entry;
213   for ( int i = 0; i < _groupEntries->length(); ++i )
214   {
215     if ( is >> entry )
216       _groupEntries[i] = entry.c_str();
217     else
218     {
219       _groupEntries->length( i );
220       is.clear(ios::badbit | is.rdstate());
221       break;
222     }
223     if ( is >> id )
224       _groupIDs.push_back( id );
225     else
226     {
227       is.clear(ios::badbit | is.rdstate());
228       break;
229     }
230   }
231
232   myBaseImpl->LoadFrom( is );
233 }
234
235 //================================================================================
236 /*!
237  * \brief Retrieve groups by their ids loaded by LoadFrom()
238  * This is possible only when all meshes are fully loaded
239  */
240 //================================================================================
241
242 void StdMeshers_ImportSource2D_i::UpdateAsMeshesRestored()
243 {
244   std::vector<SMESH_Group*> smesh_groups;
245   for ( unsigned i = 0; i < _groupIDs.size(); ++i )
246   {
247     std::istringstream is( _groupIDs[i].c_str() );
248     SMESH::SMESH_GroupBase_var group =
249       StdMeshers_ObjRefUlils::LoadObjectFromStream<SMESH::SMESH_GroupBase>( is );
250     if ( SMESH_GroupBase_i* gp_i = SMESH::DownCast<SMESH_GroupBase_i*>( group ))
251       smesh_groups.push_back( gp_i->GetSmeshGroup() );
252   }
253   GetImpl()->RestoreGroups(smesh_groups);
254 }
255
256 //=============================================================================
257 /*!
258  *  StdMeshers_ImportSource2D_i::GetImpl
259  *
260  *  Get implementation
261  */
262 //=============================================================================
263
264 ::StdMeshers_ImportSource2D* StdMeshers_ImportSource2D_i::GetImpl()
265 {
266   MESSAGE( "StdMeshers_ImportSource2D_i::GetImpl" );
267   return ( ::StdMeshers_ImportSource2D* )myBaseImpl;
268 }
269
270 //================================================================================
271 /*!
272  * \brief Verify whether hypothesis supports given entity type 
273   * \param type - dimension (see SMESH::Dimension enumeration)
274   * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
275  * 
276  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
277  */
278 //================================================================================  
279 CORBA::Boolean StdMeshers_ImportSource2D_i::IsDimSupported( SMESH::Dimension type )
280 {
281   return type == SMESH::DIM_2D;
282 }
283