Salome HOME
c378a5586e00f6c67c3c9cc255fffed7de03c565
[modules/yacs.git] / src / engine_swig / ExecutorSwig.cxx
1 // Copyright (C) 2006-2023  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include <Python.h>
21 #include "ExecutorSwig.hxx"
22 #include "Scheduler.hxx"
23
24 #include <iostream>
25
26 using namespace YACS::ENGINE;
27 using namespace std;
28
29 //#define _DEVDEBUG_
30 #include "YacsTrace.hxx"
31
32 void ExecutorSwig::RunPy(Scheduler *graph,int debug, bool isPyThread, bool fromscratch)
33 {
34   DEBTRACE("ExecutorSwig::RunPy(Scheduler *graph,int debug, bool isPyThread, bool fromscratch) "
35            << debug << " " << isPyThread << " " << fromscratch);
36   PyThreadState *_save;
37   if (isPyThread) _save = PyEval_SaveThread(); // allow Python threads when embedded in a Python thread
38   try
39     {
40       RunW(graph, debug, fromscratch);
41     }
42   catch (YACS::Exception& e)
43     {
44       DEBTRACE("YACS exception caught: ");
45       DEBTRACE(e.what());
46     }
47   catch (const std::ios_base::failure&)
48     {
49       DEBTRACE("io failure");
50     }
51   catch(...)
52     {
53       DEBTRACE("Caught unknown exception.");
54     }
55   if (isPyThread) PyEval_RestoreThread(_save); // restore thread state and lock at the end of Python thread
56 }
57
58 void ExecutorSwig::waitPause()
59 {
60   DEBTRACE("ExecutorSwig::waitPause()");
61   PyThreadState *_save;
62   _save = PyEval_SaveThread(); // allow Python threads when embedded in a Python thread
63   Executor::waitPause();
64   PyEval_RestoreThread(_save); // restore thread state and lock at the end of Python thread
65 }
66