Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[modules/kernel.git] / src / Session / SALOME_Session_i.cxx
1 using namespace std;
2 //=============================================================================
3 // File      : SALOME_Session_i.cxx
4 // Created   : mar jun 19 14:02:45 CEST 2001
5 // Author    : Paul RASCLE, EDF
6 // Project   : SALOME
7 // Copyright : EDF 2001
8 // $Header$
9 //=============================================================================
10
11 #include "utilities.h"
12
13 #include "SALOME_Session_i.hxx"
14 #include "SALOME_NamingService.hxx"
15 #include "SALOME_Session_QThread.hxx"
16
17 #include "QAD_Application.h"
18 #include "QAD_Desktop.h"
19 #include <qapplication.h>
20
21 // Open CASCADE Includes
22 #include <OSD_SharedLibrary.hxx>
23 #include <OSD_LoadMode.hxx>
24 #include <OSD_Function.hxx>
25
26 //=============================================================================
27 /*! SALOME_Session_i
28  *  constructor
29  */ 
30 //=============================================================================
31
32 SALOME_Session_i::SALOME_Session_i(int argc, char ** argv, CORBA::ORB_ptr orb, PortableServer::POA_ptr poa)
33 {
34   _argc = argc ;
35   _argv = argv ;
36   _IAPPThread = new SALOME_Session_QThread(_argc, _argv) ;
37   _isGUI = FALSE ;
38   _runningStudies= 0 ;
39   _orb = CORBA::ORB::_duplicate(orb) ;
40   _poa = PortableServer::POA::_duplicate(poa) ;
41   MESSAGE("constructor end");
42 }
43   
44 //***//VISU::VISU_Gen_ptr SALOME_Session_i::GetVisuGen(){
45 //***//  typedef VISU::VISU_Gen_ptr VisuGen(CORBA::ORB_var,PortableServer::POA_var,QMutex*);
46 //***//  MESSAGE("SALOME_Session_i::GetVisuGen");
47 //***//  OSD_SharedLibrary  visuSharedLibrary("libVisuEngine.so");
48 //***//  if(visuSharedLibrary.DlOpen(OSD_RTLD_LAZY))
49 //***//    if(OSD_Function osdFun = visuSharedLibrary.DlSymb("GetVisuGen"))
50 //***//      return ((VisuGen (*)) osdFun)(_orb,_poa,&_GUIMutex);
51 //***//  return VISU::VISU_Gen::_nil();
52 //***//} 
53
54 //=============================================================================
55 /*! ~SALOME_Session_i
56  *  destructor
57  */ 
58 //=============================================================================
59
60 SALOME_Session_i::~SALOME_Session_i()
61 {
62   MESSAGE("destructor end"); 
63 }
64
65 //=============================================================================
66 /*! NSregister
67  *  tries to find the Corba Naming Service and to register the session,
68  *  gives naming service interface to _IAPPThread
69  */ 
70 //=============================================================================
71
72 void SALOME_Session_i::NSregister()
73 {
74   SALOME::Session_ptr pSession = SALOME::Session::_narrow(_this());
75   try
76     {
77       _NS = new SALOME_NamingService(_orb);
78       _NS->Register(pSession, "/Kernel/Session");
79       _IAPPThread->setNamingService(_NS);
80     }
81   catch (ServiceUnreachable&)
82     {
83       INFOS("Caught exception: Naming Service Unreachable");
84       exit(1) ;
85     }
86   catch (...)
87     {
88       INFOS("Caught unknown exception from Naming Service");
89     }
90   MESSAGE("NSregister end"); 
91 }
92
93 //=============================================================================
94 /*! GetInterface
95  *  Launches the GUI if there is none.
96  *  The Corba method is oneway (corba client does'nt wait for GUI completion)
97  */ 
98 //=============================================================================
99
100 void SALOME_Session_i::GetInterface()
101 {
102   _GUIMutex.lock() ;       // get access to boolean _isGUI
103   _isGUI = _IAPPThread->running();
104   if(!_isGUI){
105     _isGUI = TRUE ; 
106     _IAPPThread->start() ;
107   }
108   _GUIMutex.unlock() ; // release access to boolean _isGUI 
109 }
110
111 //=============================================================================
112 /*! StopSession
113  *  Kills the session if there are no active studies nore GUI
114  */ 
115 //=============================================================================
116
117 void SALOME_Session_i::StopSession()
118 {
119   qApp->lock();
120   QAD_Application::getDesktop()->closeDesktop( true );
121   qApp->unlock();
122 /*
123   _GUIMutex.lock();         // get access to boolean _isGUI
124   if ((! _isGUI) && (! _runningStudies))
125     {
126       MESSAGE("Ask for Session Kill, OK");
127       exit(0);
128     }
129   else
130     {
131       _GUIMutex.unlock() ;  // release access to boolean _isGUI
132       MESSAGE("Ask for Session Kill, NOK");
133       if (_isGUI) throw SALOME::Session::GUIActive();   
134       if (_runningStudies) throw SALOME::Session::RunningStudies();
135     }
136 */
137 }
138  
139 //=============================================================================
140 /*! StatSession
141  *  Send a SALOME::StatSession structure (see idl) to the client
142  *  (number of running studies and presence of GUI)
143  */ 
144 //=============================================================================
145
146 SALOME::StatSession SALOME_Session_i::GetStatSession()
147 {
148   // update Session state
149   _GUIMutex.lock();    
150   _isGUI = _IAPPThread->running();
151   _runningStudies = 0;
152   if (_isGUI) {
153     qApp->lock();
154     if ( QAD_Application::getDesktop() && QAD_Application::getDesktop()->getActiveApp() )
155       _runningStudies = QAD_Application::getDesktop()->getActiveApp()->getStudies().count();
156     qApp->unlock();
157   }
158   _GUIMutex.unlock();
159   // getting stat info
160   SALOME::StatSession_var myStats = new SALOME::StatSession ;
161   if (_runningStudies)
162     myStats->state = SALOME::running ;
163   else
164     myStats->state = SALOME::asleep ;
165   myStats->runningStudies = _runningStudies ;
166   myStats->activeGUI = _isGUI ;
167   return myStats._retn() ;
168 }
169