Version: 8.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Session_Session_i.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 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);
50 
52  void GetInterface();
53 
55  Engines::EngineComponent_ptr GetComponent(const char* theLibraryName);
56 
58  void StopSession();
59 
61  SALOME::StatSession GetStatSession();
62 
64  void Shutdown();
65 
67  void NSregister();
69  void NSunregister();
70 
71  CORBA::Long GetActiveStudyId();
72 
73  void ping(){};
74  CORBA::Long getPID();
75  char* getHostname();
76 
78  bool restoreVisualState(CORBA::Long theSavePoint);
79 
81  SALOME::StringSeq* getSelection();
82 
84  void emitMessage(const char* theMessage);
85  void emitMessageOneWay(const char* theMessage);
86 
87 protected:
88 
90  SALOME_NamingService *_NS;
91 
92  int _argc ;
93  char **_argv;
94  CORBA::Boolean _isGUI ;
95  QMutex* _GUIMutex ;
96  QWaitCondition* _GUILauncher;
98  CORBA::ORB_var _orb;
99  PortableServer::POA_var _poa;
101 };
102 
103 #endif