1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : PyInterp_Dispatcher.cxx
24 // Author : Sergey ANIKIN, OCC
27 #include "PyInterp_Dispatcher.h" // !!! WARNING !!! THIS INCLUDE MUST BE THE VERY FIRST !!!
28 #include "PyInterp_Interp.h"
29 #include "PyInterp_Watcher.h"
30 #include "PyInterp_Request.h"
33 #include <QCoreApplication>
35 PyInterp_Dispatcher* PyInterp_Dispatcher::myInstance = 0;
37 void PyInterp_Request::process()
41 bool isSync = IsSync();
47 processEvent( listener() );
53 void PyInterp_Request::safeExecute()
55 //ProcessVoidEvent( new PyInterp_ExecuteEvent( this ) );
59 void PyInterp_Request::Destroy( PyInterp_Request* request )
61 // Lock and unlock the mutex to avoid errors on its deletion
62 request->myMutex.lock();
63 request->myMutex.unlock();
67 QEvent* PyInterp_Request::createEvent()
69 return new PyInterp_Event( PyInterp_Event::ES_NOTIFY, this );
72 void PyInterp_Request::processEvent( QObject* o )
77 QEvent* e = createEvent();
82 QCoreApplication::postEvent( o, e );
85 QCoreApplication::sendEvent( o, e );
90 void PyInterp_Request::setListener( QObject* o )
97 void PyInterp_LockRequest::safeExecute()
100 PyLockWrapper aLock = getInterp()->GetLockWrapper();
101 //ProcessVoidEvent( new PyInterp_ExecuteEvent( this ) );
106 PyInterp_Event::~PyInterp_Event()
108 PyInterp_Request::Destroy( myRequest );
112 PyInterp_Dispatcher* PyInterp_Dispatcher::Get()
115 myInstance = new PyInterp_Dispatcher();
119 PyInterp_Dispatcher::PyInterp_Dispatcher()
122 myWatcher = new PyInterp_Watcher();
125 PyInterp_Dispatcher::~PyInterp_Dispatcher()
127 // Clear the request queue
130 QListIterator<RequestPtr> it( myQueue );
131 while ( it.hasNext() )
132 PyInterp_Request::Destroy( it.next() );
135 myQueueMutex.unlock();
137 // Wait for run() to finish
144 bool PyInterp_Dispatcher::IsBusy() const
149 void PyInterp_Dispatcher::Exec( PyInterp_Request* theRequest )
154 //if ( theRequest->IsSync() && !IsBusy() ) // synchronous processing - nothing is done if dispatcher is busy!
155 if ( theRequest->IsSync() ) // synchronous processing - nothing is done if dispatcher is busy!
156 processRequest( theRequest );
157 else // asynchronous processing
160 myQueue.enqueue( theRequest );
161 if ( theRequest->listener() )
162 QObject::connect( theRequest->listener(), SIGNAL( destroyed( QObject* ) ), myWatcher, SLOT( onDestroyed( QObject* ) ) );
163 myQueueMutex.unlock();
170 void PyInterp_Dispatcher::run()
172 // MESSAGE("*** PyInterp_Dispatcher::run(): STARTED")
173 PyInterp_Request* aRequest;
175 // prepare for queue size check
178 while( myQueue.size() ) {
179 // MESSAGE("*** PyInterp_Dispatcher::run(): next request taken from the queue")
180 aRequest = myQueue.head();
182 // let other threads append their requests to the end of the queue
183 myQueueMutex.unlock();
185 // processRequest() may delete a request, so this pointer must not be used
186 // after request is processed!
187 processRequest( aRequest );
189 // prepare for removal of the first request in the queue
191 // IMPORTANT: the first item could have been removed by objectDestroyed() --> we have to check it
192 if ( myQueue.head() == aRequest ) // It's still here --> remove it
195 // MESSAGE("*** PyInterp_Dispatcher::run(): request processed")
198 myQueueMutex.unlock();
199 // MESSAGE("*** PyInterp_Dispatcher::run(): FINISHED")
202 void PyInterp_Dispatcher::processRequest( PyInterp_Request* theRequest )
204 theRequest->process();
207 void PyInterp_Dispatcher::objectDestroyed( const QObject* o )
209 // prepare for modification of the queue
212 QMutableListIterator<RequestPtr> it( myQueue );
213 while ( it.hasNext() )
215 RequestPtr r = it.next();
216 if ( o == r->listener() )
218 r->setListener( 0 ); // to prevent event posting
223 myQueueMutex.unlock();