Salome HOME
ENV: Windows porting
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
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 "Session_ServerThread.hxx"
33
34 #include <CORBA.h> 
35 #include <list>
36 #include <vector>
37 #include <string>
38 #include <qthread.h>
39 #include <qwaitcondition.h>
40
41
42 #ifdef WNT
43 #include <SALOME_WNT.hxx>
44 #else
45 #define SALOME_WNT_EXPORT
46 #endif
47
48 using namespace std;
49
50 class ServArg
51   {
52   public:
53     int _servType;
54     int _firstArg;
55     int _lastArg;
56     inline ServArg(int servType=0, int firstArg=0, int lastArg=0);
57 };
58
59 inline ServArg::ServArg(int servType, int firstArg, int lastArg):
60   _servType(servType),_firstArg(firstArg),_lastArg(lastArg)
61 {}
62
63 class SALOME_WNT_EXPORT Session_ServerLauncher: public QThread
64 {
65 public:
66   Session_ServerLauncher();
67   Session_ServerLauncher(int argc,
68                          char ** argv, 
69                          CORBA::ORB_ptr orb, 
70                          PortableServer::POA_ptr poa,
71                          QMutex *GUIMutex,
72                          QWaitCondition *ServerLaunch,
73                          QWaitCondition *SessionStarted);
74   virtual ~Session_ServerLauncher();
75   void run();
76   void KillAll();
77
78 protected:
79   void CheckArgs();
80   void ActivateAll();
81
82 private:
83   int _argc;
84   char ** _argv;
85   CORBA::ORB_var _orb;
86   PortableServer::POA_var _root_poa;
87   QMutex* _GUIMutex;
88   QWaitCondition *_ServerLaunch;
89   QWaitCondition *_SessionStarted;
90   list<ServArg> _argServToLaunch;
91   vector<string> _argCopy;
92   list<Session_ServerThread*> _serverThreads;
93 };
94
95 #endif
96