Salome HOME
Updated copyright comment
[modules/gui.git] / src / Session / Session_Session_i.hxx
1 // Copyright (C) 2007-2024  CEA, EDF, 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   : Session_Session_i.hxx
23 //  Author : Paul RASCLE, EDF
24 //  Module : SALOME
25
26 #ifndef _SESSION_SESSION_I_HXX_
27 #define _SESSION_SESSION_I_HXX_
28
29 #include "SALOME_Session.hxx"
30
31 #include <SALOMEconfig.h>
32 #include CORBA_SERVER_HEADER(SALOME_Component)
33 #include CORBA_SERVER_HEADER(SALOME_Session)
34
35 #include <memory>
36
37 class QMutex;
38 class QWaitCondition;
39 class SALOME_NamingService_Abstract;
40
41 class SESSION_EXPORT SALOME_Session_i :  public virtual POA_SALOME::Session, public virtual PortableServer::ServantBase
42 {
43 public:
44   SALOME_Session_i(int argc, char ** argv, CORBA::ORB_ptr orb, PortableServer::POA_ptr poa, QMutex* GUIMutex, QWaitCondition* GUILauncher);
45   SALOME_Session_i(int argc, char ** argv, CORBA::ORB_ptr orb, PortableServer::POA_ptr poa, QMutex* GUIMutex, QWaitCondition* GUILauncher, SALOME_NamingService_Abstract *NS);
46   ~SALOME_Session_i();
47
48   //! Launch Graphical User Interface
49   void GetInterface();
50
51   //! Return VISU component
52   Engines::EngineComponent_ptr GetComponent(const char* theLibraryName);
53
54   //! Stop the Session (must be idle): kill servant & server
55   void StopSession();
56
57   //! Get session state
58   SALOME::StatSession GetStatSession();
59
60   //! Shutdown session
61   void Shutdown();
62
63   //! Register the servant to Naming Service
64   void NSregister();
65   //! Unregister the servant from Naming Service
66   void NSunregister();
67
68   void ping(){};
69   CORBA::Long getPID();
70   char* getHostname();
71
72   //! Restors a visual state of the study at theSavePoint
73   bool restoreVisualState(CORBA::Long theSavePoint);
74
75   //! Get list of selected entities
76   SALOME::StringSeq* getSelection();
77
78   //! Emit a qt signal from the session GUI desktop window.
79   void emitMessage(const char* theMessage);
80   void emitMessageOneWay(const char* theMessage);
81
82 protected:
83
84   //! Naming service interface
85   std::unique_ptr<SALOME_NamingService_Abstract> _NS;
86
87   int _argc ;
88   char **_argv;
89   CORBA::Boolean _isGUI ;
90   QMutex* _GUIMutex ;
91   QWaitCondition* _GUILauncher;
92   CORBA::ORB_var _orb;
93   PortableServer::POA_var _poa;
94   bool _isShuttingDown;
95
96   void deleteContainersinNS();
97 };
98
99 #endif