Version: 9.15.0
Session_ServerLauncher.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2025 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 
23 // SALOME Session : implementation of Session_ServerLauncher.hxx
24 // File : Session_ServerLauncher.hxx
25 // Author : Paul RASCLE, EDF
26 
27 #ifndef _SESSION_SERVERLAUNCHER_HXX_
28 #define _SESSION_SERVERLAUNCHER_HXX_
29 
30 #include "SALOME_Session.hxx"
31 
32 #include <omniORB4/CORBA.h>
33 #include <list>
34 #include <vector>
35 #include <string>
36 #include <QThread>
37 
39  {
40  public:
41  int _servType;
42  int _firstArg;
43  int _lastArg;
44  inline ServArg(int servType=0, int firstArg=0, int lastArg=0);
45 };
46 
47 inline ServArg::ServArg(int servType, int firstArg, int lastArg):
48  _servType(servType),_firstArg(firstArg),_lastArg(lastArg)
49 {}
50 
51 template <class MY_NS>
53 
54 class QMutex;
55 class QWaitCondition;
56 
57 template<class MY_NS>
59 {
60 public:
62  Session_ServerLauncher(int argc,
63  char ** argv,
64  CORBA::ORB_ptr orb,
65  PortableServer::POA_ptr poa,
66  QMutex *GUIMutex,
67  QWaitCondition *ServerLaunch,
68  QMutex *SessionMutex,
69  QWaitCondition *SessionStarted);
70  virtual ~Session_ServerLauncher();
71  void run();
72  void ShutdownAll();
73  void KillAll();
74 
75 protected:
76  void CheckArgs();
77  void ActivateAll();
78 
79 private:
80  int _argc;
81  char** _argv;
82  CORBA::ORB_var _orb;
83  PortableServer::POA_var _root_poa;
84  QMutex* _GUIMutex;
85  QWaitCondition* _ServerLaunch;
86  QMutex* _SessionMutex;
87  QWaitCondition* _SessionStarted;
88  std::list<ServArg> _argServToLaunch;
89  std::vector<std::string> _argCopy;
90  std::list< Session_ServerThread<MY_NS>* > _serverThreads;
91 };
92 
93 #endif
94 
#define SESSION_EXPORT
Definition: SALOME_Session.hxx:37
Definition: Session_ServerLauncher.hxx:39
int _firstArg
Definition: Session_ServerLauncher.hxx:42
int _servType
Definition: Session_ServerLauncher.hxx:41
ServArg(int servType=0, int firstArg=0, int lastArg=0)
Definition: Session_ServerLauncher.hxx:47
int _lastArg
Definition: Session_ServerLauncher.hxx:43
Definition: Session_ServerLauncher.hxx:59
std::list< ServArg > _argServToLaunch
Definition: Session_ServerLauncher.hxx:88
QMutex * _SessionMutex
Definition: Session_ServerLauncher.hxx:86
std::vector< std::string > _argCopy
Definition: Session_ServerLauncher.hxx:89
PortableServer::POA_var _root_poa
Definition: Session_ServerLauncher.hxx:83
QWaitCondition * _SessionStarted
Definition: Session_ServerLauncher.hxx:87
int _argc
Definition: Session_ServerLauncher.hxx:80
char ** _argv
Definition: Session_ServerLauncher.hxx:81
std::list< Session_ServerThread< MY_NS > * > _serverThreads
Definition: Session_ServerLauncher.hxx:90
QWaitCondition * _ServerLaunch
Definition: Session_ServerLauncher.hxx:85
QMutex * _GUIMutex
Definition: Session_ServerLauncher.hxx:84
CORBA::ORB_var _orb
Definition: Session_ServerLauncher.hxx:82
Definition: Session_ServerThread.hxx:44