Salome HOME
On the road of cluster management in evalyfx.
[modules/yacs.git] / src / evalyfx / YACSEvalSession.hxx
1 // Copyright (C) 2012-2016  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   YACSEVALYFX_EXPORT YACSEvalSession();
35   YACSEVALYFX_EXPORT ~YACSEvalSession();
36   YACSEVALYFX_EXPORT void launch();
37   YACSEVALYFX_EXPORT bool isLaunched() const { return _isLaunched; }
38   YACSEVALYFX_EXPORT void checkLaunched() const;
39   YACSEVALYFX_EXPORT int getPort() const;
40   YACSEVALYFX_EXPORT std::string getCorbaConfigFileName() const;
41 private:
42   static std::string GetPathToAdd();
43 public:
44   static const char KERNEL_ROOT_DIR[];
45   static const char CORBA_CONFIG_ENV_VAR_NAME[];
46 private:
47   bool _isLaunched;
48   int _port;
49   std::string _corbaConfigFileName;
50   PyObject *_salomeInstanceModule;
51   PyObject *_salomeInstance;
52 };
53
54 #endif