]> SALOME platform Git repositories - modules/gui.git/blob - src/Session/Session_ServerLauncher.hxx
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/gui.git] / src / Session / Session_ServerLauncher.hxx
1 //  SALOME Session : implementation of Session_ServerLauncher.hxx
2 //
3 //  Copyright (C) 2003  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. 
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 //
24 //  File   : Session_ServerLauncher.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef _SESSION_SERVERLAUNCHER_HXX_
30 #define _SESSION_SERVERLAUNCHER_HXX_
31
32 #include <SALOME_Session.hxx>
33
34 #include "Session_ServerThread.hxx"
35
36 #include <CORBA.h> 
37 #include <list>
38 #include <vector>
39 #include <string>
40 #include <qthread.h>
41 #include <qwaitcondition.h>
42
43 using namespace std;
44
45 class SESSION_EXPORT ServArg
46   {
47   public:
48     int _servType;
49     int _firstArg;
50     int _lastArg;
51     inline ServArg(int servType=0, int firstArg=0, int lastArg=0);
52 };
53
54 inline ServArg::ServArg(int servType, int firstArg, int lastArg):
55   _servType(servType),_firstArg(firstArg),_lastArg(lastArg)
56 {}
57
58 class SESSION_EXPORT Session_ServerLauncher: public QThread
59 {
60 public:
61   Session_ServerLauncher();
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 KillAll();
73
74 protected:
75   void CheckArgs();
76   void ActivateAll();
77
78 private:
79   int _argc;
80   char ** _argv;
81   CORBA::ORB_var              _orb;
82   PortableServer::POA_var     _root_poa;
83   QMutex*                     _GUIMutex;
84   QWaitCondition*             _ServerLaunch;
85   QMutex*                     _SessionMutex;
86   QWaitCondition*             _SessionStarted;
87   list<ServArg>               _argServToLaunch;
88   vector<string>              _argCopy;
89   list<Session_ServerThread*> _serverThreads;
90 };
91
92 #endif
93