]> SALOME platform Git repositories - modules/yacs.git/blob - src/runtime/SalomeContainerHelper.hxx
Salome HOME
Ready to update Executor to take into account of the new type of containers.
[modules/yacs.git] / src / runtime / SalomeContainerHelper.hxx
1 // Copyright (C) 2006-2014  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 <map>
29 #include <string>
30
31 namespace YACS
32 {
33   namespace ENGINE
34   {
35     class Task;
36     class ComponentInstance;
37
38     class SalomeContainerHelper
39     {
40     public:
41       virtual std::string getType() const = 0;
42       virtual SalomeContainerHelper *deepCpyOnlyStaticInfo() const = 0;
43       virtual Engines::Container_var getContainer(const Task *askingNode) const = 0;
44       virtual bool isAlreadyStarted(const Task *askingNode) const = 0;
45       virtual void setContainer(const Task *askingNode, Engines::Container_var cont) = 0;
46       virtual void shutdown() = 0;
47       virtual ~SalomeContainerHelper();
48     };
49
50     class SalomeContainerMonoHelper : public SalomeContainerHelper
51     {
52     public:
53       SalomeContainerMonoHelper();
54       std::string getType() const;
55       SalomeContainerMonoHelper *deepCpyOnlyStaticInfo() const;
56       Engines::Container_var getContainer(const Task *askingNode) const;
57       bool isAlreadyStarted(const Task *askingNode) const;
58       void setContainer(const Task *askingNode, Engines::Container_var cont);
59       void shutdown();
60       ~SalomeContainerMonoHelper();
61     public:
62       static const char TYPE_NAME[];
63       static const char DFT_LAUNCH_MODE[];
64     private:
65       Engines::Container_var _trueCont;
66     };
67
68     class SalomeContainerMultiHelper : public SalomeContainerHelper
69     {
70     public:
71       std::string getType() const;
72       SalomeContainerMultiHelper *deepCpyOnlyStaticInfo() const;
73       Engines::Container_var getContainer(const Task *askingNode) const;
74       bool isAlreadyStarted(const Task *askingNode) const;
75       void setContainer(const Task *askingNode, Engines::Container_var cont);
76       void shutdown();
77       ~SalomeContainerMultiHelper();
78     public:
79       static const char TYPE_NAME[];
80       static const char DFT_LAUNCH_MODE[];
81     private:
82       std::map<const ComponentInstance *,Engines::Container_var> _trueContainers;
83     };
84   }
85 }
86
87 #endif