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