Salome HOME
Correction of bug detected by the boss
[modules/yacs.git] / src / runtime / SalomeContainerHelper.hxx
1 // Copyright (C) 2006-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
20 #ifndef __SALOMECONTAINERHELPER_HXX__
21 #define __SALOMECONTAINERHELPER_HXX__
22
23 #include "YACSRuntimeSALOMEExport.hxx"
24
25 #include "SALOMEconfig.h"
26 #include CORBA_CLIENT_HEADER(SALOME_Component)
27
28 #include "RefCounter.hxx"
29
30 #include <map>
31 #include <string>
32
33 namespace YACS
34 {
35   namespace ENGINE
36   {
37     class Task;
38     class ComponentInstance;
39
40     class SalomeContainerHelper : public RefCounter
41     {
42     public:
43       virtual std::string getType() const = 0;
44       virtual std::string getDftLaunchMode() const = 0;
45       virtual SalomeContainerHelper *deepCpyOnlyStaticInfo() const = 0;
46       virtual Engines::Container_var getContainer(const Task *askingNode) const = 0;
47       virtual bool isAlreadyStarted(const Task *askingNode) const = 0;
48       virtual void setContainer(const Task *askingNode, Engines::Container_var cont) = 0;
49       virtual void shutdown() = 0;
50     protected:
51       virtual ~SalomeContainerHelper();
52     };
53
54     class SalomeContainerMonoHelper : public SalomeContainerHelper
55     {
56     public:
57       SalomeContainerMonoHelper();
58       std::string getType() const;
59       std::string getDftLaunchMode() const;
60       SalomeContainerMonoHelper *deepCpyOnlyStaticInfo() const;
61       Engines::Container_var getContainer(const Task *askingNode) const;
62       bool isAlreadyStarted(const Task *askingNode) const;
63       void setContainer(const Task *askingNode, Engines::Container_var cont);
64       bool isKernelContNull() const;
65       void shutdown();
66       std::string getKernelContainerName() const;
67     private:
68       ~SalomeContainerMonoHelper();
69     public:
70       static const char TYPE_NAME[];
71       static const char DFT_LAUNCH_MODE[];
72     private:
73       Engines::Container_var _trueCont;
74     };
75
76     class SalomeContainerMultiHelper : public SalomeContainerHelper
77     {
78     public:
79       std::string getType() const;
80       std::string getDftLaunchMode() const;
81       SalomeContainerMultiHelper *deepCpyOnlyStaticInfo() const;
82       Engines::Container_var getContainer(const Task *askingNode) const;
83       bool isAlreadyStarted(const Task *askingNode) const;
84       void setContainer(const Task *askingNode, Engines::Container_var cont);
85       void shutdown();
86     private:
87       ~SalomeContainerMultiHelper();
88     public:
89       static const char TYPE_NAME[];
90       static const char DFT_LAUNCH_MODE[];
91     private:
92       std::map<const ComponentInstance *,Engines::Container_var> _trueContainers;
93     };
94   }
95 }
96
97 #endif