1 // Copyright (C) 2012-2016 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (EDF R&D)
21 #ifndef __YACSEVALSESSION_HXX__
22 #define __YACSEVALSESSION_HXX__
24 #include "YACSEvalYFXExport.hxx"
29 typedef _object PyObject;
34 class YACSEvalSessionInternal;
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; }
43 YACSEVALYFX_EXPORT bool isAlreadyPyThreadSaved() const;
44 YACSEVALYFX_EXPORT bool getForcedPyThreadSavedStatus() const { return _isForcedPyThreadSaved; }
45 YACSEVALYFX_EXPORT void setForcedPyThreadSavedStatus(bool status) { _isForcedPyThreadSaved=status; }
47 YACSEVALYFX_EXPORT void checkLaunched() const;
48 YACSEVALYFX_EXPORT int getPort() const;
49 YACSEVALYFX_EXPORT std::string getCorbaConfigFileName() const;
51 YACSEvalSessionInternal *getInternal() { checkLaunched(); return _internal; }
53 static std::string GetPathToAdd();
54 static std::string GetConfigAndPort(int& port);
56 static const char KERNEL_ROOT_DIR[];
57 static const char CORBA_CONFIG_ENV_VAR_NAME[];
58 static const char NSPORT_VAR_NAME[];
62 bool _isForcedPyThreadSaved;
64 std::string _corbaConfigFileName;
65 PyObject *_salomeInstanceModule;
66 PyObject *_salomeInstance;
67 YACSEvalSessionInternal *_internal;