Salome HOME
[EDF27562] : Fix clustertest
[modules/kernel.git] / src / Basics / KernelBasis.i
1 // Copyright (C) 2021-2023  CEA, EDF
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 %module KernelBasis
21
22 %{
23 #include "KernelBasis.hxx"
24 #include "HeatMarcel.hxx"
25 #include "libSALOMELog.hxx"
26 using namespace SALOME;
27 %}
28
29 %include "std_string.i"
30
31 %rename (HeatMarcel) HeatMarcelSwig;
32
33 bool getSSLMode();
34 void setSSLMode(bool sslMode);
35
36 bool getGUIMode();
37 void setGUIMode(bool guiMode);
38
39 std::string getIOROfEmbeddedNS();
40 void setIOROfEmbeddedNS(const std::string& ior);
41
42 double GetTimeAdjustmentCst();
43
44 bool VerbosityActivated();
45
46 void SetVerbosityActivated(bool flag);
47
48 void WriteInStdout(const std::string& msg);
49
50 void WriteInStderr(const std::string& msg);
51
52
53 %inline
54 {
55 PyObject *HeatMarcelSwig(double timeAjustment, unsigned int nbThreads = 0)
56 {
57   double timeInS = 0.0;
58   long double piVal = HeatMarcel(timeAjustment,timeInS,nbThreads);
59   PyObject *ret(PyTuple_New(2));
60   PyTuple_SetItem(ret,0,SWIG_From_double((double)piVal));
61   PyTuple_SetItem(ret,1,SWIG_From_double(timeInS));
62   return ret;
63 }
64 }