Salome HOME
[EDF29852] : Mecanism of fault tolerant in SALOME_Container to resist against emitted...
[modules/kernel.git] / src / Basics / KernelBasis.i
1 // Copyright (C) 2021-2024  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 #include "Monitoring.hxx"
27 using namespace SALOME;
28 %}
29
30 %include std_string.i
31 %include std_set.i
32 %include std_except.i
33 %include std_vector.i
34
35 %template(dvec) std::vector<double>;
36 %template(strvec) std::vector<std::string>;
37
38 %exception {
39    try 
40    {
41       $action
42    } 
43    catch(std::exception& e) 
44    {
45       SWIG_exception(SWIG_SystemError, e.what() );
46    } 
47    catch(...) 
48    {
49      SWIG_exception(SWIG_UnknownError, "Unknown exception");
50    }
51 }
52
53 %rename (HeatMarcel) HeatMarcelSwig;
54
55 bool getSSLMode();
56 void setSSLMode(bool sslMode);
57
58 bool getGUIMode();
59 void setGUIMode(bool guiMode);
60
61 std::string getIOROfEmbeddedNS();
62 void setIOROfEmbeddedNS(const std::string& ior);
63
64 double GetTimeAdjustmentCst();
65
66 long LaunchMonitoring(const std::string& pyScriptToEvaluate);
67
68 void StopMonitoring(long pid);
69
70 bool VerbosityActivated();
71
72 void SetVerbosityActivated(bool flag);
73
74 bool IsDebugLevel();
75
76 bool IsInfoLevel();
77
78 bool IsWarningLevel();
79
80 bool IsErrorLevel();
81
82 void WriteInStdout(const std::string& msg);
83
84 void WriteInStderr(const std::string& msg);
85
86 %rename (SetVerbosityLevel) SetVerbosityLevelSwig;
87 %rename (VerbosityLevel) VerbosityLevelSwig;
88 %rename (SetPyExecutionMode) SetPyExecutionModeStrSwig;
89 %rename (GetPyExecutionMode) GetPyExecutionModeStrSwig;
90 %rename (GetAllPyExecutionModes) GetAllPyExecutionModesSwig;
91
92 %inline
93 {
94 PyObject *HeatMarcelSwig(double timeAjustment, unsigned int nbThreads = 0)
95 {
96   double timeInS = 0.0;
97   long double piVal = HeatMarcel(timeAjustment,timeInS,nbThreads);
98   PyObject *ret(PyTuple_New(2));
99   PyTuple_SetItem(ret,0,SWIG_From_double((double)piVal));
100   PyTuple_SetItem(ret,1,SWIG_From_double(timeInS));
101   return ret;
102 }
103
104 std::vector<double> ReadFloatsInFileSwig(const std::string& fileName)
105 {
106   std::vector<double> ret;
107   try
108   {
109     ret = SALOME::ReadFloatsInFile( fileName );
110   }
111   catch(std::exception& e) { }
112   return ret;
113 }
114
115 void SetVerbosityLevelSwig(const std::string& level)
116 {
117   SetVerbosityLevelStr(level);
118 }
119
120 std::string VerbosityLevelSwig()
121 {
122   return VerbosityLevelStr();
123 }
124
125 void SetPyExecutionModeStrSwig(const std::string& mode)
126 {
127   SetPyExecutionModeStr( mode );
128 }
129
130 std::string GetPyExecutionModeStrSwig()
131 {
132   return GetPyExecutionModeStr();
133 }
134
135 std::vector<std::string> GetAllPyExecutionModesSwig()
136 {
137   return GetAllPyExecutionModes();
138 }
139 }
140
141 %pythoncode %{
142 def ReadFloatsInFile( fileName ):
143   ret = ReadFloatsInFileSwig( fileName )
144   return ret
145 %}