Salome HOME
Merge from OCC_development_generic_2006
[modules/smesh.git] / src / SMESH_I / SMESH_Gen_i.hxx
1 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_Gen_i.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef _SMESH_GEN_I_HXX_
30 #define _SMESH_GEN_I_HXX_
31
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(SMESH_Gen)
34 #include CORBA_SERVER_HEADER(SMESH_Mesh)
35 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
36 #include CORBA_CLIENT_HEADER(GEOM_Gen)
37 #include CORBA_CLIENT_HEADER(SALOMEDS)
38 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
39
40 #include "SMESH_Mesh_i.hxx"
41 #include "SMESH_Hypothesis_i.hxx"
42 #include "SALOME_Component_i.hxx"
43 #include "SALOME_NamingService.hxx"
44
45 #include "SMESH_Gen.hxx"
46 #include "GEOM_Client.hxx"
47
48 #include <TCollection_AsciiString.hxx>
49 #include <Resource_DataMapOfAsciiStringAsciiString.hxx>
50 #include <TColStd_HSequenceOfAsciiString.hxx>
51
52 #include <map>
53 #include <sstream>
54
55 class SMESH_Mesh_i;
56 class SALOME_LifeCycleCORBA;
57
58 // ===========================================================
59 // Study context - stores study-connected objects references
60 // ==========================================================
61 class StudyContext
62 {
63 public:
64   // constructor
65   StudyContext() {}
66   // destructor
67   ~StudyContext() 
68   { 
69     mapIdToIOR.clear();
70     mapIdToId.clear();
71   }
72   // register object in the internal map and return its id
73   int addObject( string theIOR )
74   {
75     int nextId = getNextId();
76     mapIdToIOR[ nextId ]  = theIOR;
77     return nextId;
78   }
79   // find the object id in the internal map by the IOR
80   int findId( string theIOR )
81   {
82     map<int, string>::iterator imap;
83     for ( imap = mapIdToIOR.begin(); imap != mapIdToIOR.end(); ++imap ) {
84       if ( imap->second == theIOR )
85         return imap->first;
86     }
87     return 0;
88   }
89   // get object's IOR by id
90   string getIORbyId( const int theId )
91   {
92     if ( mapIdToIOR.find( theId ) != mapIdToIOR.end() )
93       return mapIdToIOR[ theId ];
94     return string( "" );
95   }
96   // get object's IOR by old id
97   string getIORbyOldId( const int theOldId )
98   {
99     if ( mapIdToId.find( theOldId ) != mapIdToId.end() )
100       return getIORbyId( mapIdToId[ theOldId ] );
101     return string( "" );
102   }
103   // maps old object id to the new one (used when restoring data)
104   void mapOldToNew( const int oldId, const int newId ) {
105     mapIdToId[ oldId ] = newId;
106   }
107     
108 private:
109   // get next free object identifier
110   int getNextId()
111   {
112     int id = 1;
113     while( mapIdToIOR.find( id ) != mapIdToIOR.end() )
114       id++;
115     return id;
116   }
117
118   map<int, string> mapIdToIOR;      // persistent-to-transient map
119   map<int, int>    mapIdToId;       // used to translate object from persistent to transient form
120 };
121
122 // ===========================================================
123 // SMESH module's engine
124 // ==========================================================
125 class SMESH_Gen_i:
126   public virtual POA_SMESH::SMESH_Gen,
127   public virtual Engines_Component_i 
128 {
129 public:
130   // Get last created instance of the class
131   static SMESH_Gen_i* GetSMESHGen() { return mySMESHGen;}
132   // Get ORB object
133   static CORBA::ORB_var GetORB() { return myOrb;}
134   // Get SMESH module's POA object
135   static PortableServer::POA_var GetPOA() { return myPoa;}
136   // Get Naming Service object
137   static SALOME_NamingService* GetNS();
138   // Get SALOME_LifeCycleCORBA object
139   static SALOME_LifeCycleCORBA* GetLCC();
140   // Retrieve and get GEOM engine reference
141   static GEOM::GEOM_Gen_ptr GetGeomEngine();
142   // Get object of the CORBA reference
143   static PortableServer::ServantBase_var GetServant( CORBA::Object_ptr theObject );
144   // Get CORBA object corresponding to the SALOMEDS::SObject
145   static CORBA::Object_var SObjectToObject( SALOMEDS::SObject_ptr theSObject );
146   // Get the SALOMEDS::SObject corresponding to a CORBA object
147   static SALOMEDS::SObject_ptr ObjectToSObject(SALOMEDS::Study_ptr theStudy,
148                                                CORBA::Object_ptr   theObject);
149   // Get GEOM Object correspoding to TopoDS_Shape
150   GEOM::GEOM_Object_ptr ShapeToGeomObject (const TopoDS_Shape& theShape );
151   // Get TopoDS_Shape correspoding to GEOM_Object
152   TopoDS_Shape GeomObjectToShape(GEOM::GEOM_Object_ptr theGeomObject);
153   
154   // Default constructor
155   SMESH_Gen_i();
156   // Standard constructor
157   SMESH_Gen_i( CORBA::ORB_ptr            orb,
158                PortableServer::POA_ptr   poa,
159                PortableServer::ObjectId* contId, 
160                const char*               instanceName, 
161                const char*               interfaceName );
162   // Destructor
163   virtual ~SMESH_Gen_i();
164   
165   // *****************************************
166   // Interface methods
167   // *****************************************
168
169   // Set current study
170   void SetCurrentStudy( SALOMEDS::Study_ptr theStudy );
171   // Get current study
172   SALOMEDS::Study_ptr GetCurrentStudy();
173
174   // Create hypothesis/algorothm of given type
175   SMESH::SMESH_Hypothesis_ptr CreateHypothesis (const char* theHypType,
176                                                 const char* theLibName)
177     throw ( SALOME::SALOME_Exception );
178   
179   // Return hypothesis of given type holding parameter values of the existing mesh
180   SMESH::SMESH_Hypothesis_ptr GetHypothesisParameterValues (const char*           theHypType,
181                                                             const char*           theLibName,
182                                                             SMESH::SMESH_Mesh_ptr theMesh,
183                                                             GEOM::GEOM_Object_ptr theGeom)
184     throw ( SALOME::SALOME_Exception );
185   
186   // Create empty mesh on a shape
187   SMESH::SMESH_Mesh_ptr CreateMesh( GEOM::GEOM_Object_ptr theShapeObject )
188     throw ( SALOME::SALOME_Exception );
189
190   //  Create mesh(es) and import data from UNV file
191   SMESH::SMESH_Mesh_ptr CreateMeshesFromUNV( const char* theFileName )
192     throw ( SALOME::SALOME_Exception );
193
194   //  Create mesh(es) and import data from MED file
195   SMESH::mesh_array* CreateMeshesFromMED( const char* theFileName,
196                                           SMESH::DriverMED_ReadStatus& theStatus )
197     throw ( SALOME::SALOME_Exception );
198
199   //  Create mesh(es) and import data from STL file
200   SMESH::SMESH_Mesh_ptr CreateMeshesFromSTL( const char* theFileName )
201     throw ( SALOME::SALOME_Exception );
202
203   // Compute mesh on a shape
204   CORBA::Boolean Compute( SMESH::SMESH_Mesh_ptr theMesh,
205                           GEOM::GEOM_Object_ptr  theShapeObject )
206     throw ( SALOME::SALOME_Exception );
207
208   // Returns true if mesh contains enough data to be computed
209   CORBA::Boolean IsReadyToCompute( SMESH::SMESH_Mesh_ptr theMesh,
210                                    GEOM::GEOM_Object_ptr theShapeObject )
211     throw ( SALOME::SALOME_Exception );
212
213   // Returns errors of hypotheses definintion
214   SMESH::algo_error_array* GetAlgoState( SMESH::SMESH_Mesh_ptr theMesh, 
215                                          GEOM::GEOM_Object_ptr theSubObject )
216       throw ( SALOME::SALOME_Exception );
217
218   // Get sub-shapes unique ID's list
219   SMESH::long_array* GetSubShapesId( GEOM::GEOM_Object_ptr      theMainShapeObject,
220                                      const SMESH::object_array& theListOfSubShape )
221     throw ( SALOME::SALOME_Exception );
222
223   // Return geometrical object the given element is built on
224   GEOM::GEOM_Object_ptr GetGeometryByMeshElement( SMESH::SMESH_Mesh_ptr  theMesh,
225                                                   CORBA::Long            theElementID,
226                                                   const char*            theGeomName)
227     throw ( SALOME::SALOME_Exception );
228
229   // ****************************************************
230   // Interface inherited methods (from SALOMEDS::Driver)
231   // ****************************************************
232
233   // Save SMESH data
234   SALOMEDS::TMPFile* Save( SALOMEDS::SComponent_ptr theComponent,
235                          const char*              theURL,
236                          bool                     isMultiFile );
237   // Load SMESH data
238   bool Load( SALOMEDS::SComponent_ptr theComponent,
239              const SALOMEDS::TMPFile& theStream,
240              const char*              theURL,
241              bool                     isMultiFile );
242   // Save SMESH data in ASCII format
243   SALOMEDS::TMPFile* SaveASCII( SALOMEDS::SComponent_ptr theComponent,
244                                 const char*              theURL,
245                                 bool                     isMultiFile );
246   // Load SMESH data in ASCII format
247   bool LoadASCII( SALOMEDS::SComponent_ptr theComponent,
248                   const SALOMEDS::TMPFile& theStream,
249                   const char*              theURL,
250                   bool                     isMultiFile );
251
252   // Create filter manager
253   SMESH::FilterManager_ptr CreateFilterManager();
254
255   // Return a pattern mesher
256   SMESH::SMESH_Pattern_ptr GetPattern();
257
258   // Clears study-connected data when it is closed
259   void Close( SALOMEDS::SComponent_ptr theComponent );
260   
261   // Get component data type
262   char* ComponentDataType();
263     
264   // Transform data from transient form to persistent
265   char* IORToLocalPersistentID( SALOMEDS::SObject_ptr theSObject,
266                                 const char*           IORString,
267                                 CORBA::Boolean        isMultiFile,
268                                 CORBA::Boolean        isASCII );
269   // Transform data from persistent form to transient
270   char* LocalPersistentIDToIOR( SALOMEDS::SObject_ptr theSObject,
271                                 const char*           aLocalPersistentID,
272                                 CORBA::Boolean        isMultiFile,
273                                 CORBA::Boolean        isASCII );
274
275   // Returns true if object can be published in the study
276   bool CanPublishInStudy( CORBA::Object_ptr theIOR );
277   // Publish object in the study
278   SALOMEDS::SObject_ptr PublishInStudy( SALOMEDS::Study_ptr   theStudy,
279                                         SALOMEDS::SObject_ptr theSObject,
280                                         CORBA::Object_ptr     theObject,
281                                         const char*           theName ) 
282     throw ( SALOME::SALOME_Exception );
283
284   // Copy-paste methods - returns true if object can be copied to the clipboard
285   CORBA::Boolean CanCopy( SALOMEDS::SObject_ptr theObject ) { return false; }
286   // Copy-paste methods - copy object to the clipboard
287   SALOMEDS::TMPFile* CopyFrom( SALOMEDS::SObject_ptr theObject, CORBA::Long& theObjectID ) { return false; }
288   // Copy-paste methods - returns true if object can be pasted from the clipboard
289   CORBA::Boolean CanPaste( const char* theComponentName, CORBA::Long theObjectID ) { return false; }
290   // Copy-paste methods - paste object from the clipboard
291   SALOMEDS::SObject_ptr PasteInto( const SALOMEDS::TMPFile& theStream,
292                                    CORBA::Long              theObjectID,
293                                    SALOMEDS::SObject_ptr    theObject ) {
294     SALOMEDS::SObject_var aResultSO;
295     return aResultSO._retn();
296   }
297
298   // ============
299   // Dump python
300   // ============
301
302   virtual Engines::TMPFile* DumpPython(CORBA::Object_ptr theStudy, 
303                                        CORBA::Boolean isPublished, 
304                                        CORBA::Boolean& isValidScript);
305
306   void AddToPythonScript (int theStudyID, const TCollection_AsciiString& theString);
307
308   void RemoveLastFromPythonScript (int theStudyID);
309
310   void SavePython (SALOMEDS::Study_ptr theStudy);
311
312   TCollection_AsciiString DumpPython_impl (int theStudyID, 
313                                            Resource_DataMapOfAsciiStringAsciiString& theObjectNames,
314                                            Resource_DataMapOfAsciiStringAsciiString& theNames,
315                                            bool isPublished, 
316                                            bool& aValidScript,
317                                            const TCollection_AsciiString& theSavedTrace);
318
319   TCollection_AsciiString GetNewPythonLines (int theStudyID);
320
321   void CleanPythonTrace (int theStudyID);
322
323
324   // *****************************************
325   // Internal methods
326   // *****************************************
327 public:
328   // Get shape reader
329   GEOM_Client* GetShapeReader();
330
331   // Tags definition 
332   static long GetHypothesisRootTag();
333   static long GetAlgorithmsRootTag();
334   static long GetRefOnShapeTag();
335   static long GetRefOnAppliedHypothesisTag();
336   static long GetRefOnAppliedAlgorithmsTag();
337   static long GetSubMeshOnVertexTag();
338   static long GetSubMeshOnEdgeTag();
339   static long GetSubMeshOnFaceTag();
340   static long GetSubMeshOnSolidTag();
341   static long GetSubMeshOnCompoundTag();
342   static long GetSubMeshOnWireTag();
343   static long GetSubMeshOnShellTag();
344   static long GetNodeGroupsTag();
345   static long GetEdgeGroupsTag();
346   static long GetFaceGroupsTag();
347   static long GetVolumeGroupsTag();
348
349   // publishing methods
350   SALOMEDS::SComponent_ptr PublishComponent(SALOMEDS::Study_ptr theStudy);
351   SALOMEDS::SObject_ptr PublishMesh (SALOMEDS::Study_ptr   theStudy,
352                                      SMESH::SMESH_Mesh_ptr theMesh,
353                                      const char*           theName = 0);
354   SALOMEDS::SObject_ptr PublishHypothesis (SALOMEDS::Study_ptr         theStudy,
355                                            SMESH::SMESH_Hypothesis_ptr theHyp,
356                                            const char*                 theName = 0);
357   SALOMEDS::SObject_ptr PublishSubMesh (SALOMEDS::Study_ptr      theStudy,
358                                         SMESH::SMESH_Mesh_ptr    theMesh,
359                                         SMESH::SMESH_subMesh_ptr theSubMesh,
360                                         GEOM::GEOM_Object_ptr    theShapeObject,
361                                         const char*              theName = 0);
362   SALOMEDS::SObject_ptr PublishGroup (SALOMEDS::Study_ptr    theStudy,
363                                       SMESH::SMESH_Mesh_ptr  theMesh,
364                                       SMESH::SMESH_GroupBase_ptr theGroup,
365                                       GEOM::GEOM_Object_ptr  theShapeObject,
366                                       const char*            theName = 0);
367   bool AddHypothesisToShape(SALOMEDS::Study_ptr         theStudy,
368                             SMESH::SMESH_Mesh_ptr       theMesh,
369                             GEOM::GEOM_Object_ptr       theShapeObject,
370                             SMESH::SMESH_Hypothesis_ptr theHyp);
371   bool RemoveHypothesisFromShape(SALOMEDS::Study_ptr         theStudy,
372                                  SMESH::SMESH_Mesh_ptr       theMesh,
373                                  GEOM::GEOM_Object_ptr       theShapeObject,
374                                  SMESH::SMESH_Hypothesis_ptr theHyp);
375   SALOMEDS::SObject_ptr GetMeshOrSubmeshByShape (SALOMEDS::Study_ptr   theStudy,
376                                                  SMESH::SMESH_Mesh_ptr theMesh,
377                                                  GEOM::GEOM_Object_ptr theShape);
378   static void SetName(SALOMEDS::SObject_ptr theSObject,
379                       const char*           theName,
380                       const char*           theDefaultName = 0);
381
382   //  Get study context
383   StudyContext* GetCurrentStudyContext();
384
385   // Register an object in a StudyContext; return object id
386   int RegisterObject(CORBA::Object_ptr theObject);
387
388   // Get current study ID
389   int GetCurrentStudyID()
390   { return myCurrentStudy->_is_nil() ? -1 : myCurrentStudy->StudyId(); }
391  
392 private:
393   // Create hypothesis of given type
394   SMESH::SMESH_Hypothesis_ptr createHypothesis( const char* theHypName,
395                                                 const char* theLibName)
396     throw ( SALOME::SALOME_Exception );
397   
398   // Create empty mesh on shape
399   SMESH::SMESH_Mesh_ptr createMesh()
400     throw ( SALOME::SALOME_Exception );
401
402   static void loadGeomData( SALOMEDS::SComponent_ptr theCompRoot );
403   
404 private:
405
406   static CORBA::ORB_var          myOrb;         // ORB reference
407   static PortableServer::POA_var myPoa;         // POA reference
408   static SALOME_NamingService*   myNS;          // Naming Service
409   static SALOME_LifeCycleCORBA*  myLCC;         // Life Cycle CORBA
410   static SMESH_Gen_i*            mySMESHGen;    // Point to last created instance of the class
411   ::SMESH_Gen               myGen;              // SMESH_Gen local implementation
412
413   // hypotheses managing
414   map<string, GenericHypothesisCreator_i*> myHypCreatorMap;
415
416   map<int, StudyContext*>   myStudyContextMap;  // Map of study context objects
417
418   GEOM_Client*              myShapeReader;      // Shape reader
419   SALOMEDS::Study_var       myCurrentStudy;     // Current study
420
421   // Dump Python: trace of API methods calls
422   std::map < int, Handle(TColStd_HSequenceOfAsciiString) > myPythonScripts;
423 };
424
425
426 namespace SMESH
427 {
428   template<class T>
429   T
430   DownCast(CORBA::Object_ptr theArg)
431   {
432     return dynamic_cast<T>(SMESH_Gen_i::GetServant(theArg).in());
433   }
434 }
435
436
437 #endif