Version: 9.16.0
Session_Session_i.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 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
37class QMutex;
38class QWaitCondition;
39class SALOME_NamingService_Abstract;
40
41class SESSION_EXPORT SALOME_Session_i : public virtual POA_SALOME::Session, public virtual PortableServer::ServantBase
42{
43public:
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);
47
49 void GetInterface();
50
52 Engines::EngineComponent_ptr GetComponent(const char* theLibraryName);
53
55 void StopSession();
56
58 SALOME::StatSession GetStatSession();
59
61 void Shutdown();
62
64 void NSregister();
66 void NSunregister();
67
68 void ping(){};
69 CORBA::Long getPID();
70 char* getHostname();
71
73 bool restoreVisualState(CORBA::Long theSavePoint);
74
76 SALOME::StringSeq* getSelection();
77
79 void emitMessage(const char* theMessage);
80 void emitMessageOneWay(const char* theMessage);
81
82protected:
83
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;
95
96 void deleteContainersinNS();
97};
98
99#endif
#define SESSION_EXPORT
Definition: SALOME_Session.hxx:37
Definition: Session_Session_i.hxx:42
std::unique_ptr< SALOME_NamingService_Abstract > _NS
Naming service interface.
Definition: Session_Session_i.hxx:85
PortableServer::POA_var _poa
Definition: Session_Session_i.hxx:93
bool _isShuttingDown
Definition: Session_Session_i.hxx:94
CORBA::ORB_var _orb
Definition: Session_Session_i.hxx:92
QWaitCondition * _GUILauncher
Definition: Session_Session_i.hxx:91
int _argc
Definition: Session_Session_i.hxx:87
QMutex * _GUIMutex
Definition: Session_Session_i.hxx:90
void ping()
Definition: Session_Session_i.hxx:68
char ** _argv
Definition: Session_Session_i.hxx:88
CORBA::Boolean _isGUI
Definition: Session_Session_i.hxx:89