Salome HOME
Update copyrights 2014.
[modules/gui.git] / src / Session / Session_ServerLauncher.hxx
1 // Copyright (C) 2007-2014  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
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
38 class SESSION_EXPORT ServArg
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 class Session_ServerThread;
52
53 class QMutex;
54 class QWaitCondition;
55
56 class SESSION_EXPORT Session_ServerLauncher: public QThread
57 {
58 public:
59   Session_ServerLauncher();
60   Session_ServerLauncher(int argc,
61                          char ** argv, 
62                          CORBA::ORB_ptr orb, 
63                          PortableServer::POA_ptr poa,
64                          QMutex *GUIMutex,
65                          QWaitCondition *ServerLaunch,
66                          QMutex *SessionMutex,
67                          QWaitCondition *SessionStarted);
68   virtual ~Session_ServerLauncher();
69   void run();
70   void ShutdownAll();
71   void KillAll();
72
73 protected:
74   void CheckArgs();
75   void ActivateAll();
76
77 private:
78   int                              _argc;
79   char**                           _argv;
80   CORBA::ORB_var                    _orb;
81   PortableServer::POA_var          _root_poa;
82   QMutex*                          _GUIMutex;
83   QWaitCondition*                  _ServerLaunch;
84   QMutex*                          _SessionMutex;
85   QWaitCondition*                  _SessionStarted;
86   std::list<ServArg>               _argServToLaunch;
87   std::vector<std::string>         _argCopy;
88   std::list<Session_ServerThread*> _serverThreads;
89 };
90
91 #endif
92