Salome HOME
Copyright update 2022
[modules/smesh.git] / src / SMESH_I / SMESH_Gen_i.hxx
1 // Copyright (C) 2007-2022  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 //  File   : SMESH_Gen_i.hxx
23 //  Author : Paul RASCLE, EDF
24 //  Module : SMESH
25
26 #ifndef _SMESH_GEN_I_HXX_
27 #define _SMESH_GEN_I_HXX_
28
29 #include "SMESH.hxx"
30
31 #include <SALOMEconfig.h>
32 #include CORBA_SERVER_HEADER(SMESH_Gen)
33 #include CORBA_SERVER_HEADER(SMESH_Mesh)
34 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
35 #include CORBA_CLIENT_HEADER(GEOM_Gen)
36 #include CORBA_CLIENT_HEADER(SALOMEDS)
37 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
38 #include CORBA_CLIENT_HEADER(SALOME_ModuleCatalog)
39
40 #include "SMESH_Gen.hxx"
41 #include "SMESH_Mesh_i.hxx"
42 #include "SMESH_Hypothesis_i.hxx"
43
44 #include <SALOME_Component_i.hxx>
45 #include <SALOME_NamingService.hxx>
46 #include <Utils_CorbaException.hxx>
47
48 #include <GEOM_Client.hxx>
49 #include <smIdType.hxx>
50
51 #include <TCollection_AsciiString.hxx>
52 #include <Resource_DataMapOfAsciiStringAsciiString.hxx>
53 #include <TColStd_HSequenceOfAsciiString.hxx>
54 #include <NCollection_DataMap.hxx>
55
56 #include <map>
57 #include <sstream>
58
59 class SMESH_Mesh_i;
60 class SALOME_LifeCycleCORBA;
61
62 // ===========================================================
63 // Study context - store study-connected objects references
64 // ==========================================================
65 class SMESH_I_EXPORT StudyContext
66 {
67   typedef NCollection_DataMap< int, std::string > TInt2StringMap;
68   typedef NCollection_DataMap< int, int >         TInt2IntMap;
69 public:
70   // constructor
71   StudyContext() {}
72   // register object in the internal map and return its id
73   int         addObject( const std::string& theIOR );
74   // find the object id in the internal map by the IOR
75   int         findId( const std::string& theIOR );
76   // get object's IOR by id
77   std::string getIORbyId( const int theId );
78   // get object's IOR by old id
79   std::string getIORbyOldId( const int theOldId );
80   // maps old object id to the new one (used when restoring data)
81   void        mapOldToNew( const int oldId, const int newId );
82   // get old id by a new one
83   int         getOldId( const int newId );
84   // clear data
85   void        Clear();
86
87 private:
88   // get next free object identifier
89   int         getNextId() { return mapIdToIOR.Extent() + 1; }
90
91   TInt2StringMap mapIdToIOR; // persistent-to-transient map
92   TInt2IntMap    mapIdToId;  // to translate object from persistent to transient form
93 };
94
95 // ===========================================================
96 // SMESH module's engine
97 // ==========================================================
98 class SMESH_I_EXPORT SMESH_Gen_i : public POA_SMESH::SMESH_Gen, public Engines_Component_i
99 {
100 public:
101   // Get last created instance of the class
102   static SMESH_Gen_i* GetSMESHGen() { return mySMESHGen;}
103   // Get ORB object
104   static CORBA::ORB_var GetORB() { return myOrb;}
105   // Get SMESH module's POA object
106   static PortableServer::POA_var GetPOA() { return myPoa;}
107   // Set Naming Service object
108   static void SetNS(SALOME_NamingService_Abstract *ns);
109   // Get Naming Service object
110   static SALOME_NamingService_Abstract* GetNS();
111   // Get SALOME_LifeCycleCORBA object
112   static SALOME_LifeCycleCORBA* GetLCC();
113   // Retrieve and get GEOM engine reference
114   static GEOM::GEOM_Gen_var GetGeomEngine( GEOM::GEOM_Object_ptr );
115   // Retrieve Study depending on Session / Standalone mode
116   virtual GEOM::GEOM_Gen_var GetGeomEngine( bool isShaper ) = 0;
117   SALOMEDS::Study_var getStudyServant() const { return this->getStudyServantVirtual(); }
118   virtual SALOMEDS::Study_var getStudyServantVirtual() const = 0 ;
119   virtual SALOME_ModuleCatalog::ModuleCatalog_var getModuleCatalog() const = 0;
120   SALOMEDS::SObject_ptr publish(CORBA::Object_ptr     theIOR,
121                                 SALOMEDS::SObject_ptr theFatherObject,
122                                 const int             theTag = 0,
123                                 const char*           thePixMap = 0,
124                                 const bool            theSelectable = true);
125   // Get object of the CORBA reference
126   static PortableServer::ServantBase_var GetServant( CORBA::Object_ptr theObject );
127   // Get CORBA object corresponding to the SALOMEDS::SObject
128   static CORBA::Object_var SObjectToObject( SALOMEDS::SObject_ptr theSObject );
129   // Get the SALOMEDS::SObject corresponding to a CORBA object
130   SALOMEDS::SObject_ptr ObjectToSObject( CORBA::Object_ptr theObject );
131   // Get GEOM Object corresponding to TopoDS_Shape
132   static GEOM::GEOM_Object_ptr ShapeToGeomObject( const TopoDS_Shape& theShape );
133   // Get TopoDS_Shape corresponding to GEOM_Object
134   static TopoDS_Shape GeomObjectToShape( GEOM::GEOM_Object_ptr theGeomObject );
135   // Get GEOM Object by its study entry
136   static GEOM::GEOM_Object_ptr GetGeomObjectByEntry( const std::string& entry );
137
138   // Default constructor
139   SMESH_Gen_i();
140   // Standard constructor
141   SMESH_Gen_i( CORBA::ORB_ptr            orb,
142                PortableServer::POA_ptr   poa,
143                PortableServer::ObjectId* contId,
144                const char*               instanceName,
145                const char*               interfaceName,
146                bool                      checkNS = true);
147   // Destructor
148   virtual ~SMESH_Gen_i();
149
150   // *****************************************
151   // Interface methods
152   // *****************************************
153   // Set a new Mesh object name
154   void SetName(const char* theIOR,
155                const char* theName);
156
157   //GEOM::GEOM_Gen_ptr SetGeomEngine( const char* containerLoc );
158   void SetGeomEngine( GEOM::GEOM_Gen_ptr geomcompo );
159
160   // Set embedded mode
161   void SetEmbeddedMode( CORBA::Boolean theMode );
162   // Check embedded mode
163   CORBA::Boolean IsEmbeddedMode();
164
165   // Set enable publishing in the study
166   void SetEnablePublish( CORBA::Boolean theIsEnablePublish );
167
168   // Check enable publishing
169   CORBA::Boolean IsEnablePublish();
170
171   // Update study
172   void UpdateStudy();
173
174   // Do provide info on objects
175   bool hasObjectInfo();
176
177   // Return an information for a given object
178   char* getObjectInfo(const char* entry);
179
180   // Create hypothesis/algorithm of given type
181   SMESH::SMESH_Hypothesis_ptr CreateHypothesis (const char* theHypType,
182                                                 const char* theLibName);
183
184   SMESH::SMESH_Hypothesis_ptr CreateHypothesisByAverageLength( const char*    theHypType,
185                                                                const char*    theLibName,
186                                                                CORBA::Double  theAverageLength,
187                                                                CORBA::Boolean theQuadDominated);
188
189   // Return hypothesis of given type holding parameter values of the existing mesh
190   SMESH::SMESH_Hypothesis_ptr
191     GetHypothesisParameterValues (const char*                 theHypType,
192                                   const char*                 theLibName,
193                                   SMESH::SMESH_Mesh_ptr       theMesh,
194                                   GEOM::GEOM_Object_ptr       theGeom,
195                                   const SMESH::HypInitParams& theWay);
196
197   /*
198    * Returns True if a hypothesis is assigned to a sole sub-mesh in a current Study
199    */
200   CORBA::Boolean GetSoleSubMeshUsingHyp( SMESH::SMESH_Hypothesis_ptr theHyp,
201                                          SMESH::SMESH_Mesh_out       theMesh,
202                                          GEOM::GEOM_Object_out       theShape);
203
204   // Preferences
205   // ------------
206   /*!
207    * Sets number of segments per diagonal of boundary box of geometry by which
208    * default segment length of appropriate 1D hypotheses is defined
209    */
210   void SetBoundaryBoxSegmentation( CORBA::Long theNbSegments );
211   /*!
212    * \brief Sets default number of segments per edge
213    */
214   void SetDefaultNbSegments(CORBA::Long theNbSegments);
215
216   /*!
217     Set an option value
218   */
219   virtual void  SetOption(const char*, const char*);
220   /*!
221     Return an option value
222   */
223   virtual char* GetOption(const char*);
224
225   /*!
226    * To load full mesh data from study at hyp modification or not
227    */
228   bool ToForgetMeshDataOnHypModif() const { return myToForgetMeshDataOnHypModif; }
229
230
231   // Create empty mesh on a shape
232   SMESH::SMESH_Mesh_ptr CreateMesh( GEOM::GEOM_Object_ptr theShapeObject );
233
234   // Create empty mesh
235   SMESH::SMESH_Mesh_ptr CreateEmptyMesh();
236
237   //  Create a mesh and import data from an UNV file
238   SMESH::SMESH_Mesh_ptr CreateMeshesFromUNV( const char* theFileName );
239
240   //  Create mesh(es) and import data from MED file
241   SMESH::mesh_array* CreateMeshesFromMED( const char* theFileName,
242                                           SMESH::DriverMED_ReadStatus& theStatus );
243
244   //  Create a mesh and import data from a STL file
245   SMESH::SMESH_Mesh_ptr CreateMeshesFromSTL( const char* theFileName );
246
247   //  Create mesh(es) and import data from CGNS file
248   SMESH::mesh_array* CreateMeshesFromCGNS( const char* theFileName,
249                                            SMESH::DriverMED_ReadStatus& theStatus );
250
251   //  Create a mesh and import data from a GMF file
252   SMESH::SMESH_Mesh_ptr CreateMeshesFromGMF( const char*             theFileName,
253                                              CORBA::Boolean          theMakeRequiredGroups,
254                                              SMESH::ComputeError_out theError);
255
256   // Copy a part of mesh
257   SMESH::SMESH_Mesh_ptr CopyMesh(SMESH::SMESH_IDSource_ptr meshPart,
258                                  const char*               meshName,
259                                  CORBA::Boolean            toCopyGroups,
260                                  CORBA::Boolean            toKeepIDs);
261
262   // Create a mesh by copying definitions of another mesh to a given geometry
263   CORBA::Boolean CopyMeshWithGeom( SMESH::SMESH_Mesh_ptr       sourceMesh,
264                                    GEOM::GEOM_Object_ptr       newGeometry,
265                                    const char*                 meshName,
266                                    CORBA::Boolean              toCopyGroups,
267                                    CORBA::Boolean              toReuseHypotheses,
268                                    CORBA::Boolean              toCopyElements,
269                                    SMESH::SMESH_Mesh_out       newMesh,
270                                    SMESH::ListOfGroups_out     newGroups,
271                                    SMESH::submesh_array_out    newSubmeshes,
272                                    SMESH::ListOfHypothesis_out newHypotheses,
273                                    SMESH::string_array_out     invalidEntries);
274
275     // Compute mesh on a shape
276   CORBA::Boolean Compute( SMESH::SMESH_Mesh_ptr theMesh,
277                           GEOM::GEOM_Object_ptr theShapeObject );
278
279   // Cancel Compute mesh on a shape
280   void CancelCompute( SMESH::SMESH_Mesh_ptr theMesh,
281                       GEOM::GEOM_Object_ptr theShapeObject );
282
283   /*!
284    * \brief Return errors of mesh computation
285    */
286   SMESH::compute_error_array* GetComputeErrors(SMESH::SMESH_Mesh_ptr theMesh,
287                                                GEOM::GEOM_Object_ptr  theShapeObject );
288
289   /*!
290    * Evaluate mesh on a shape and
291    *  returns statistic of mesh elements
292    * Result array of number enityties
293    */
294   SMESH::smIdType_array* Evaluate(SMESH::SMESH_Mesh_ptr theMesh,
295                               GEOM::GEOM_Object_ptr theShapeObject);
296
297   // Returns true if mesh contains enough data to be computed
298   CORBA::Boolean IsReadyToCompute( SMESH::SMESH_Mesh_ptr theMesh,
299                                    GEOM::GEOM_Object_ptr theShapeObject );
300
301   /*!
302    * Calculate Mesh as preview till indicated dimension on shape
303    * First, verify list of hypothesis associated with the subShape.
304    * Return mesh preview structure
305    */
306   SMESH::MeshPreviewStruct* Precompute( SMESH::SMESH_Mesh_ptr theMesh,
307                                         GEOM::GEOM_Object_ptr theSubObject,
308                                         SMESH::Dimension      theDimension,
309                                         SMESH::long_array&    theShapesId );
310
311   // Returns errors of hypotheses definition
312   SMESH::algo_error_array* GetAlgoState( SMESH::SMESH_Mesh_ptr theMesh,
313                                          GEOM::GEOM_Object_ptr theSubObject );
314
315   // Return mesh elements preventing computation of a subshape
316   SMESH::MeshPreviewStruct* GetBadInputElements( SMESH::SMESH_Mesh_ptr theMesh,
317                                                  CORBA::Short          theSubShapeID );
318
319   // Create groups of elements preventing computation of a sub-shape
320   SMESH::ListOfGroups* MakeGroupsOfBadInputElements( SMESH::SMESH_Mesh_ptr theMesh,
321                                                      CORBA::Short          theSubShapeID,
322                                                      const char*           theGroupName);
323
324   // Get sub-shapes unique ID's list
325   SMESH::long_array* GetSubShapesId( GEOM::GEOM_Object_ptr      theMainShapeObject,
326                                      const SMESH::object_array& theListOfSubShape );
327
328   // Return geometrical object the given element is built on. Publish it in study.
329   GEOM::GEOM_Object_ptr GetGeometryByMeshElement( SMESH::SMESH_Mesh_ptr  theMesh,
330                                                   SMESH::smIdType        theElementID,
331                                                   const char*            theGeomName);
332
333   // Return geometrical object the given element is built on. Don't publish it in study.
334   GEOM::GEOM_Object_ptr FindGeometryByMeshElement( SMESH::SMESH_Mesh_ptr  theMesh,
335                                                    SMESH::smIdType        theElementID);
336
337   // Concatenate the given meshes into one mesh
338   SMESH::SMESH_Mesh_ptr ConcatenateCommon(const SMESH::ListOfIDSources& meshesArray,
339                                           CORBA::Boolean                uniteIdenticalGroups,
340                                           CORBA::Boolean                mergeNodesAndElements,
341                                           CORBA::Double                 mergeTolerance,
342                                           CORBA::Boolean                commonGroups,
343                                           SMESH::SMESH_Mesh_ptr         meshToAppendTo);
344
345   // Concatenate the given meshes into one mesh
346   SMESH::SMESH_Mesh_ptr Concatenate(const SMESH::ListOfIDSources& meshesArray,
347                                     CORBA::Boolean                uniteIdenticalGroups,
348                                     CORBA::Boolean                mergeNodesAndElements,
349                                     CORBA::Double                 mergeTolerance,
350                                     SMESH::SMESH_Mesh_ptr         meshToAppendTo);
351
352   // Concatenate the given meshes into one mesh
353   // Create the groups of all elements from initial meshes
354   SMESH::SMESH_Mesh_ptr ConcatenateWithGroups(const SMESH::ListOfIDSources& meshesArray,
355                                               CORBA::Boolean                uniteIdenticalGroups,
356                                               CORBA::Boolean                mergeNodesAndElements,
357                                               CORBA::Double                 mergeTolerance,
358                                               SMESH::SMESH_Mesh_ptr         meshToAppendTo);
359
360   // Get version of MED format being used.
361   char* GetMEDFileVersion();
362
363   // Get MED version of the file by its name
364   char* GetMEDVersion(const char* theFileName);
365
366   // Check compatibility of file with MED format being used, read only.
367   CORBA::Boolean CheckCompatibility(const char* theFileName);
368
369   // Check compatibility of file with MED format being used, for append on write.
370   CORBA::Boolean CheckWriteCompatibility(const char* theFileName);
371
372   // Get names of meshes defined in file with the specified name
373   SMESH::string_array* GetMeshNames(const char* theFileName);
374
375   // ****************************************************
376   // Interface inherited methods (from SALOMEDS::Driver)
377   // ****************************************************
378
379   // Save SMESH data
380   SALOMEDS::TMPFile* Save( SALOMEDS::SComponent_ptr theComponent,
381                          const char*              theURL,
382                          bool                     isMultiFile );
383   // Load SMESH data
384   bool Load( SALOMEDS::SComponent_ptr theComponent,
385              const SALOMEDS::TMPFile& theStream,
386              const char*              theURL,
387              bool                     isMultiFile );
388   // Save SMESH data in ASCII format
389   SALOMEDS::TMPFile* SaveASCII( SALOMEDS::SComponent_ptr theComponent,
390                                 const char*              theURL,
391                                 bool                     isMultiFile );
392   // Load SMESH data in ASCII format
393   bool LoadASCII( SALOMEDS::SComponent_ptr theComponent,
394                   const SALOMEDS::TMPFile& theStream,
395                   const char*              theURL,
396                   bool                     isMultiFile );
397
398   // Create filter manager
399   SMESH::FilterManager_ptr CreateFilterManager();
400
401   // Return a pattern mesher
402   SMESH::SMESH_Pattern_ptr GetPattern();
403
404   // Create measurement instance
405   SMESH::Measurements_ptr  CreateMeasurements();
406
407   // Clears study-connected data when it is closed
408   void Close( SALOMEDS::SComponent_ptr theComponent );
409
410   // Get component data type
411   char* ComponentDataType();
412
413   // Transform data from transient form to persistent
414   char* IORToLocalPersistentID( SALOMEDS::SObject_ptr theSObject,
415                                 const char*           IORString,
416                                 CORBA::Boolean        isMultiFile,
417                                 CORBA::Boolean        isASCII );
418   // Transform data from persistent form to transient
419   char* LocalPersistentIDToIOR( SALOMEDS::SObject_ptr theSObject,
420                                 const char*           aLocalPersistentID,
421                                 CORBA::Boolean        isMultiFile,
422                                 CORBA::Boolean        isASCII );
423
424   // Returns true if object can be published in the study
425   bool CanPublishInStudy( CORBA::Object_ptr theIOR );
426   // Publish object in the study
427   SALOMEDS::SObject_ptr PublishInStudy( SALOMEDS::SObject_ptr theSObject,
428                                         CORBA::Object_ptr     theObject,
429                                         const char*           theName );
430
431   // Copy-paste methods - returns true if object can be copied to the clipboard
432   CORBA::Boolean CanCopy( SALOMEDS::SObject_ptr /*theObject*/ ) { return false; }
433   // Copy-paste methods - copy object to the clipboard
434   SALOMEDS::TMPFile* CopyFrom( SALOMEDS::SObject_ptr /*theObject*/, CORBA::Long& /*theObjectID*/ ) { return NULL; }
435   // Copy-paste methods - returns true if object can be pasted from the clipboard
436   CORBA::Boolean CanPaste( const char* /*theComponentName*/, CORBA::Long /*theObjectID*/ ) { return false; }
437   // Copy-paste methods - paste object from the clipboard
438   SALOMEDS::SObject_ptr PasteInto( const SALOMEDS::TMPFile& /*theStream*/,
439                                    CORBA::Long              /*theObjectID*/,
440                                    SALOMEDS::SObject_ptr    /*theObject*/ ) {
441     SALOMEDS::SObject_var aResultSO;
442     return aResultSO._retn();
443   }
444
445   // ============
446   // Version information
447   // ============
448
449   virtual char* getVersion();
450
451   // ============
452   // Dump python
453   // ============
454
455   virtual Engines::TMPFile* DumpPython(CORBA::Boolean isPublished,
456                                        CORBA::Boolean isMultiFile,
457                                        CORBA::Boolean& isValidScript);
458
459   void AddToPythonScript (const TCollection_AsciiString& theString);
460
461   void RemoveLastFromPythonScript();
462
463   void SavePython();
464
465   TCollection_AsciiString DumpPython_impl (Resource_DataMapOfAsciiStringAsciiString& theObjectNames,
466                                            Resource_DataMapOfAsciiStringAsciiString& theNames,
467                                            bool isPublished,
468                                            bool isMultiFile,
469                                            bool isHistoricalDump,
470                                            bool& aValidScript,
471                                            TCollection_AsciiString& theSavedTrace);
472
473   TCollection_AsciiString GetNewPythonLines();
474
475   void CleanPythonTrace();
476
477   int CountInPyDump(const TCollection_AsciiString& text);
478
479   SMESH::MG_ADAPT_ptr CreateMG_ADAPT();
480   SMESHHOMARD::HOMARD_Gen_ptr CreateHOMARD_ADAPT();
481   SMESH::MG_ADAPT_ptr CreateAdaptationHypothesis();
482   //SMESH::MG_ADAPT_OBJECT_ptr Adaptation( const char* adaptationType);
483   SALOME::GenericObj_ptr Adaptation( const char* adaptationType);
484
485   // *****************************************
486   // Internal methods
487   // *****************************************
488 public:
489   // Get shape reader
490   GEOM_Client* GetShapeReader();
491
492   // Tags definition
493   static long GetHypothesisRootTag();
494   static long GetAlgorithmsRootTag();
495   static long GetRefOnShapeTag();
496   static long GetRefOnAppliedHypothesisTag();
497   static long GetRefOnAppliedAlgorithmsTag();
498   static long GetSubMeshOnVertexTag();
499   static long GetSubMeshOnEdgeTag();
500   static long GetSubMeshOnFaceTag();
501   static long GetSubMeshOnSolidTag();
502   static long GetSubMeshOnCompoundTag();
503   static long GetSubMeshOnWireTag();
504   static long GetSubMeshOnShellTag();
505   static long GetNodeGroupsTag();
506   static long GetEdgeGroupsTag();
507   static long GetFaceGroupsTag();
508   static long GetVolumeGroupsTag();
509   static long Get0DElementsGroupsTag();
510   static long GetBallElementsGroupsTag();
511
512   // publishing methods
513   SALOMEDS::SComponent_ptr PublishComponent();
514   SALOMEDS::SObject_ptr PublishMesh (SMESH::SMESH_Mesh_ptr theMesh,
515                                      const char*           theName = 0);
516   SALOMEDS::SObject_ptr PublishHypothesis (SMESH::SMESH_Hypothesis_ptr theHyp,
517                                            const char*                 theName = 0);
518   SALOMEDS::SObject_ptr PublishSubMesh (SMESH::SMESH_Mesh_ptr    theMesh,
519                                         SMESH::SMESH_subMesh_ptr theSubMesh,
520                                         GEOM::GEOM_Object_ptr    theShapeObject,
521                                         const char*              theName = 0);
522   SALOMEDS::SObject_ptr PublishGroup (SMESH::SMESH_Mesh_ptr  theMesh,
523                                       SMESH::SMESH_GroupBase_ptr theGroup,
524                                       GEOM::GEOM_Object_ptr  theShapeObject,
525                                       const char*            theName = 0);
526   void UpdateIcons(SMESH::SMESH_Mesh_ptr theMesh);
527   void HighLightInvalid(CORBA::Object_ptr theObject, bool isInvalid);
528   bool IsInvalid(SALOMEDS::SObject_ptr theObject);
529   bool AddHypothesisToShape(SMESH::SMESH_Mesh_ptr       theMesh,
530                             GEOM::GEOM_Object_ptr       theShapeObject,
531                             SMESH::SMESH_Hypothesis_ptr theHyp);
532   bool RemoveHypothesisFromShape(SMESH::SMESH_Mesh_ptr       theMesh,
533                                  GEOM::GEOM_Object_ptr       theShapeObject,
534                                  SMESH::SMESH_Hypothesis_ptr theHyp);
535   SALOMEDS::SObject_ptr GetMeshOrSubmeshByShape (SMESH::SMESH_Mesh_ptr theMesh,
536                                                  GEOM::GEOM_Object_ptr theShape);
537   void SetName(SALOMEDS::SObject_ptr theSObject,
538               const char*           theName,
539               const char*           theDefaultName = 0);
540
541   void SetPixMap(SALOMEDS::SObject_ptr theSObject, const char *thePixMap);
542   void addReference (SALOMEDS::SObject_ptr theSObject, CORBA::Object_ptr theToObject, int theTag = 0);
543
544   //  Get study context
545   StudyContext* GetStudyContext();
546
547   // Register an object in a StudyContext; return object id
548   int RegisterObject(CORBA::Object_ptr theObject);
549
550   // Return id of registered object
551   CORBA::Long GetObjectId(CORBA::Object_ptr theObject);
552
553   // Return an object that previously had an oldID
554   template<class TInterface>
555     typename TInterface::_var_type GetObjectByOldId( const int oldID )
556   {
557     if ( myStudyContext ) {
558       std::string ior = myStudyContext->getIORbyOldId( oldID );
559       if ( !ior.empty() )
560         return TInterface::_narrow(GetORB()->string_to_object( ior.c_str() ));
561     }
562     return TInterface::_nil();
563   }
564
565   /*!
566    * \brief Find SObject for an algo
567    */
568   SALOMEDS::SObject_ptr GetAlgoSO(const ::SMESH_Algo* algo);
569
570   void UpdateParameters(CORBA::Object_ptr theObject, const char* theParameters);
571   char* GetParameters(CORBA::Object_ptr theObject);
572   //char* ParseParameters(const char* theParameters);
573   const std::vector< int >&         GetLastParamIndices() const { return myLastParamIndex; }
574   const std::vector< std::string >& GetLastParameters() const { return myLastParameters; }
575   const std::string &               GetLastObjEntry() const { return myLastObj; }
576   std::vector< std::string >        GetAllParameters(const std::string& theObjectEntry) const;
577
578   // Move objects to the specified position
579   void Move( const SMESH::sobject_list& what,
580              SALOMEDS::SObject_ptr where,
581              CORBA::Long row );
582
583   CORBA::Boolean IsApplicable ( const char*           theAlgoType,
584                                 const char*           theLibName,
585                                 GEOM::GEOM_Object_ptr theShapeObject,
586                                 CORBA::Boolean        toCheckAll);
587
588   SMESH::long_array* GetInsideSphere( SMESH::SMESH_IDSource_ptr meshPart,
589                                       SMESH::ElementType        theElemType,
590                                       CORBA::Double             theX,
591                                       CORBA::Double             theY,
592                                       CORBA::Double             theZ,
593                                       CORBA::Double             theR);
594
595   SMESH::long_array* GetInsideBox( SMESH::SMESH_IDSource_ptr meshPart,
596                                    SMESH::ElementType        theElemType,
597                                    CORBA::Double             theX1,
598                                    CORBA::Double             theY1,
599                                    CORBA::Double             theZ1,
600                                    CORBA::Double             theX2,
601                                    CORBA::Double             theY2,
602                                    CORBA::Double             theZ2);
603
604   SMESH::long_array* GetInsideCylinder( SMESH::SMESH_IDSource_ptr meshPart,
605                                         SMESH::ElementType        theElemType,
606                                         CORBA::Double             theX,
607                                         CORBA::Double             theY,
608                                         CORBA::Double             theZ,
609                                         CORBA::Double             theDX,
610                                         CORBA::Double             theDY,
611                                         CORBA::Double             theDZ,
612                                         CORBA::Double             theH,
613                                         CORBA::Double             theR );
614
615   SMESH::long_array* GetInside( SMESH::SMESH_IDSource_ptr meshPart,
616                                 SMESH::ElementType        theElemType,
617                                 GEOM::GEOM_Object_ptr     theGeom,
618                                 CORBA::Double             theTolerance );
619
620 private:
621   // Get hypothesis creator
622   GenericHypothesisCreator_i* getHypothesisCreator( const char*  theHypName,
623                                                     const char*  theLibName,
624                                                     std::string& thePlatformLibName);
625   // Create hypothesis of given type
626   SMESH::SMESH_Hypothesis_ptr createHypothesis( const char* theHypName,
627                                                 const char* theLibName);
628   // Create empty mesh on shape
629   SMESH::SMESH_Mesh_ptr createMesh();
630
631   // Check mesh icon
632   bool isGeomModifIcon( SMESH::SMESH_Mesh_ptr mesh );
633
634   // Create a sub-mesh on a geometry that is not a sub-shape of the main shape
635   // for the case where a valid sub-shape not found by CopyMeshWithGeom()
636   SMESH::SMESH_subMesh_ptr createInvalidSubMesh( SMESH::SMESH_Mesh_ptr mesh,
637                                                  GEOM::GEOM_Object_ptr strangerGeom,
638                                                  const char*           name );
639
640   void highLightInvalid( SALOMEDS::SObject_ptr theSObject, bool isInvalid );
641
642   std::vector<long> _GetInside(SMESH::SMESH_IDSource_ptr meshPart,
643                                SMESH::ElementType        ElemType,
644                                const TopoDS_Shape&       Shape,
645                                double*                   Tolerance = NULL);
646
647 protected:
648   static GEOM::GEOM_Gen_var      myGeomGen;
649   static SALOME_NamingService_Abstract*   myNS;          // Naming Service
650 private:
651   static CORBA::ORB_var          myOrb;         // ORB reference
652   static PortableServer::POA_var myPoa;         // POA reference
653   static SALOME_LifeCycleCORBA*  myLCC;         // Life Cycle CORBA
654   static SMESH_Gen_i*            mySMESHGen;    // Point to last created instance of the class
655   ::SMESH_Gen                    myGen;         // SMESH_Gen local implementation
656
657   // hypotheses managing
658   std::map<std::string, GenericHypothesisCreator_i*> myHypCreatorMap;
659
660   StudyContext*                  myStudyContext;  // study context
661
662   GEOM_Client*                   myShapeReader;      // Shape reader
663   CORBA::Boolean                 myIsEmbeddedMode;   // Current mode
664   CORBA::Boolean                 myIsEnablePublish;  // Enable publishing
665
666   // Default color of groups
667   std::string myDefaultGroupColor;
668
669   // To load full mesh data from study at hyp modification or not
670   bool myToForgetMeshDataOnHypModif;
671
672   // Dump Python: trace of API methods calls
673   Handle(TColStd_HSequenceOfAsciiString) myPythonScript;
674   bool                                   myIsHistoricalPythonDump;
675   std::vector< int >                     myLastParamIndex;
676   std::vector< std::string >             myLastParameters;
677   std::string                            myLastObj;
678 };
679
680
681 namespace SMESH
682 {
683   template<class T>
684   T
685   DownCast(CORBA::Object_ptr theArg)
686   {
687     return dynamic_cast<T>(SMESH_Gen_i::GetServant(theArg).in());
688   }
689
690   /*!
691    * \brief Function used in SMESH_CATCH to convert a caught exception to
692    * SALOME::SALOME_Exception
693    */
694   inline void throwCorbaException(const char* excText)
695   {
696     THROW_SALOME_CORBA_EXCEPTION( excText, SALOME::INTERNAL_ERROR );
697   }
698 }
699
700
701 #endif