Salome HOME
updated copyright message
[modules/yacs.git] / src / runtime / SalomeContainerHelper.hxx
1 // Copyright (C) 2006-2023  CEA, EDF
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 #include <mutex>
33
34 namespace YACS
35 {
36   namespace ENGINE
37   {
38     class Task;
39     class ComponentInstance;
40
41     class SalomeContainerHelper : public RefCounter
42     {
43     public:
44       virtual std::string getType() const = 0;
45       virtual std::string getDftLaunchMode() const = 0;
46       virtual SalomeContainerHelper *deepCpyOnlyStaticInfo() const = 0;
47       virtual Engines::Container_var getContainer(const Task *askingNode) const = 0;
48       virtual bool isAlreadyStarted(const Task *askingNode) const = 0;
49       virtual void setContainer(const Task *askingNode, Engines::Container_var cont) = 0;
50       virtual void shutdown() = 0;
51     protected:
52       virtual ~SalomeContainerHelper();
53     };
54
55     class SalomeContainerMonoHelper : public SalomeContainerHelper
56     {
57     public:
58       SalomeContainerMonoHelper();
59       std::string getType() const;
60       std::string getDftLaunchMode() const;
61       SalomeContainerMonoHelper *deepCpyOnlyStaticInfo() const;
62       Engines::Container_var getContainer(const Task *askingNode) const;
63       bool isAlreadyStarted(const Task *askingNode) const;
64       void setContainer(const Task *askingNode, Engines::Container_var cont);
65       bool isKernelContNull() const;
66       void shutdown();
67       std::string getKernelContainerName() const;
68     private:
69       ~SalomeContainerMonoHelper();
70     public:
71       static const char TYPE_NAME[];
72       static const char DFT_LAUNCH_MODE[];
73     private:
74       Engines::Container_var _trueCont;
75     };
76
77     class SalomeContainerMultiHelper : public SalomeContainerHelper
78     {
79     public:
80       std::string getType() const;
81       std::string getDftLaunchMode() const;
82       SalomeContainerMultiHelper *deepCpyOnlyStaticInfo() const;
83       Engines::Container_var getContainer(const Task *askingNode) const;
84       bool isAlreadyStarted(const Task *askingNode) const;
85       void setContainer(const Task *askingNode, Engines::Container_var cont);
86       void shutdown();
87     private:
88       ~SalomeContainerMultiHelper();
89     public:
90       static const char TYPE_NAME[];
91       static const char DFT_LAUNCH_MODE[];
92     private:
93       std::map<const ComponentInstance *,Engines::Container_var> _containersForComponents;
94       std::map<const Task *,Engines::Container_var> _containersForTasks;
95       mutable std::mutex _data_mutex;
96     };
97   }
98 }
99
100 #endif