Salome HOME
Merge branch 'V9_12_BR'
[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 #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
37 %exception {
38    try 
39    {
40       $action
41    } 
42    catch(std::exception& e) 
43    {
44       SWIG_exception(SWIG_SystemError, e.what() );
45    } 
46    catch(...) 
47    {
48      SWIG_exception(SWIG_UnknownError, "Unknown exception");
49    }
50 }
51
52 %rename (HeatMarcel) HeatMarcelSwig;
53
54 bool getSSLMode();
55 void setSSLMode(bool sslMode);
56
57 bool getGUIMode();
58 void setGUIMode(bool guiMode);
59
60 std::string getIOROfEmbeddedNS();
61 void setIOROfEmbeddedNS(const std::string& ior);
62
63 double GetTimeAdjustmentCst();
64
65 long LaunchMonitoring(const std::string& pyScriptToEvaluate);
66
67 void StopMonitoring(long pid);
68
69 bool VerbosityActivated();
70
71 void SetVerbosityActivated(bool flag);
72
73 bool IsDebugLevel();
74
75 bool IsInfoLevel();
76
77 bool IsWarningLevel();
78
79 bool IsErrorLevel();
80
81 void WriteInStdout(const std::string& msg);
82
83 void WriteInStderr(const std::string& msg);
84
85 %rename (SetVerbosityLevel) SetVerbosityLevelSwig;
86 %rename (VerbosityLevel) VerbosityLevelSwig;
87
88 %inline
89 {
90 PyObject *HeatMarcelSwig(double timeAjustment, unsigned int nbThreads = 0)
91 {
92   double timeInS = 0.0;
93   long double piVal = HeatMarcel(timeAjustment,timeInS,nbThreads);
94   PyObject *ret(PyTuple_New(2));
95   PyTuple_SetItem(ret,0,SWIG_From_double((double)piVal));
96   PyTuple_SetItem(ret,1,SWIG_From_double(timeInS));
97   return ret;
98 }
99
100 std::vector<double> ReadFloatsInFileSwig(const std::string& fileName)
101 {
102   std::vector<double> ret;
103   try
104   {
105     ret = SALOME::ReadFloatsInFile( fileName );
106   }
107   catch(std::exception& e) { }
108   return ret;
109 }
110
111 void SetVerbosityLevelSwig(const std::string& level)
112 {
113   SetVerbosityLevelStr(level);
114 }
115
116 std::string VerbosityLevelSwig()
117 {
118   return VerbosityLevelStr();
119 }
120 }
121
122 %pythoncode %{
123 def ReadFloatsInFile( fileName ):
124   ret = ReadFloatsInFileSwig( fileName )
125   return ret
126 %}