Salome HOME
08ecb7c70ab615ac1b164048939bb01084b13053
[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       void shutdown();
65     private:
66       ~SalomeContainerMonoHelper();
67     public:
68       static const char TYPE_NAME[];
69       static const char DFT_LAUNCH_MODE[];
70     private:
71       Engines::Container_var _trueCont;
72     };
73
74     class SalomeContainerMultiHelper : public SalomeContainerHelper
75     {
76     public:
77       std::string getType() const;
78       std::string getDftLaunchMode() const;
79       SalomeContainerMultiHelper *deepCpyOnlyStaticInfo() const;
80       Engines::Container_var getContainer(const Task *askingNode) const;
81       bool isAlreadyStarted(const Task *askingNode) const;
82       void setContainer(const Task *askingNode, Engines::Container_var cont);
83       void shutdown();
84     private:
85       ~SalomeContainerMultiHelper();
86     public:
87       static const char TYPE_NAME[];
88       static const char DFT_LAUNCH_MODE[];
89     private:
90       std::map<const ComponentInstance *,Engines::Container_var> _trueContainers;
91     };
92   }
93 }
94
95 #endif