Salome HOME
Copyright update 2022
[modules/yacs.git] / src / evalyfx / YACSEvalSession.hxx
1 // Copyright (C) 2012-2022  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 // Author : Anthony Geay (EDF R&D)
20
21 #ifndef __YACSEVALSESSION_HXX__
22 #define __YACSEVALSESSION_HXX__
23
24 #include "YACSEvalYFXExport.hxx"
25
26 #include <string>
27
28 struct _object;
29 typedef _object PyObject;
30
31 class YACSEvalSession
32 {
33 public:
34   class YACSEvalSessionInternal;
35 public:
36   YACSEVALYFX_EXPORT YACSEvalSession();
37   YACSEVALYFX_EXPORT ~YACSEvalSession();
38   YACSEVALYFX_EXPORT void launch();
39   YACSEVALYFX_EXPORT void launchUsingCurrentSession();
40   YACSEVALYFX_EXPORT bool isLaunched() const { return _isLaunched; }
41   YACSEVALYFX_EXPORT bool isAttached() const { return _isAttached; }
42   //
43   YACSEVALYFX_EXPORT bool isAlreadyPyThreadSaved() const;
44   YACSEVALYFX_EXPORT bool getForcedPyThreadSavedStatus() const { return _isForcedPyThreadSaved; }
45   YACSEVALYFX_EXPORT void setForcedPyThreadSavedStatus(bool status) { _isForcedPyThreadSaved=status; }
46   //
47   YACSEVALYFX_EXPORT void checkLaunched() const;
48   YACSEVALYFX_EXPORT int getPort() const;
49   YACSEVALYFX_EXPORT std::string getCorbaConfigFileName() const;
50 public:
51   YACSEvalSessionInternal *getInternal() { checkLaunched(); return _internal; }
52 private:
53   static std::string GetPathToAdd();
54   static std::string GetConfigAndPort(int& port);
55 public:
56   static const char KERNEL_ROOT_DIR[];
57   static const char CORBA_CONFIG_ENV_VAR_NAME[];
58   static const char NSPORT_VAR_NAME[];
59 private:
60   bool _isAttached;
61   bool _isLaunched;
62   bool _isForcedPyThreadSaved;
63   int _port;
64   std::string _corbaConfigFileName;
65   PyObject *_salomeInstanceModule;
66   PyObject *_salomeInstance;
67   YACSEvalSessionInternal *_internal;
68 };
69
70 #endif