Salome HOME
c3c22d73ea75d70479aa4615db9fad34e8dec976
[modules/gui.git] / src / PyInterp / PyInterp_Dispatcher.h
1 // Copyright (C) 2007-2016  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 //  File   : PyInterp_Dispatcher.h
24 //  Author : Sergey Anikin, OCC
25 //  Module : GUI
26 //
27 #ifndef PYINTERP_DISPATCHER_H
28 #define PYINTERP_DISPATCHER_H
29
30 #include "PyInterp.h"   // !!! WARNING !!! THIS INCLUDE MUST BE THE VERY FIRST !!!
31
32 #include "PyInterp_Request.h"   // full include instead of forward declaration
33                                 // everyone inc'ing the Dispatcher will get the requests for free.
34
35 #include <QMutex>
36 #include <QThread>
37 #include <QQueue>
38
39 class QObject;
40 class PyInterp_Watcher;
41
42 class PYINTERP_EXPORT PyInterp_Dispatcher : protected QThread
43 {
44   PyInterp_Dispatcher(); // private constructor
45
46 public:
47   static PyInterp_Dispatcher* Get();
48
49   virtual                     ~PyInterp_Dispatcher();
50
51   bool                        IsBusy() const;  
52   void                        Exec( PyInterp_Request* );
53
54 private:
55   virtual void                run();
56   void                        processRequest( PyInterp_Request* );
57   void                        objectDestroyed( const QObject* );
58
59 private:
60   typedef PyInterp_Request*   RequestPtr;
61
62   QQueue<RequestPtr>          myQueue;
63   QMutex                      myQueueMutex;
64   PyInterp_Watcher*           myWatcher;
65
66   static PyInterp_Dispatcher* myInstance;
67
68   friend class PyInterp_Watcher;
69 };
70
71 #endif // PYINTERP_DISPATCHER_H