]> SALOME platform Git repositories - modules/yacs.git/blob - src/runtime/SalomeContainerHelper.hxx
Salome HOME
First test qui HPsalome container is running.
[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 "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 SalomeContainerHelper *deepCpyOnlyStaticInfo() const = 0;
45       virtual Engines::Container_var getContainer(const Task *askingNode) const = 0;
46       virtual bool isAlreadyStarted(const Task *askingNode) const = 0;
47       virtual void setContainer(const Task *askingNode, Engines::Container_var cont) = 0;
48       virtual void shutdown() = 0;
49     protected:
50       virtual ~SalomeContainerHelper();
51     };
52
53     class SalomeContainerMonoHelper : public SalomeContainerHelper
54     {
55     public:
56       SalomeContainerMonoHelper();
57       std::string getType() const;
58       SalomeContainerMonoHelper *deepCpyOnlyStaticInfo() const;
59       Engines::Container_var getContainer(const Task *askingNode) const;
60       bool isAlreadyStarted(const Task *askingNode) const;
61       void setContainer(const Task *askingNode, Engines::Container_var cont);
62       void shutdown();
63     private:
64       ~SalomeContainerMonoHelper();
65     public:
66       static const char TYPE_NAME[];
67       static const char DFT_LAUNCH_MODE[];
68     private:
69       Engines::Container_var _trueCont;
70     };
71
72     class SalomeContainerMultiHelper : public SalomeContainerHelper
73     {
74     public:
75       std::string getType() const;
76       SalomeContainerMultiHelper *deepCpyOnlyStaticInfo() const;
77       Engines::Container_var getContainer(const Task *askingNode) const;
78       bool isAlreadyStarted(const Task *askingNode) const;
79       void setContainer(const Task *askingNode, Engines::Container_var cont);
80       void shutdown();
81     private:
82       ~SalomeContainerMultiHelper();
83     public:
84       static const char TYPE_NAME[];
85       static const char DFT_LAUNCH_MODE[];
86     private:
87       std::map<const ComponentInstance *,Engines::Container_var> _trueContainers;
88     };
89   }
90 }
91
92 #endif