]> SALOME platform Git repositories - modules/yacs.git/blob - src/runtime/SalomeContainerHelper.hxx
Salome HOME
some factorizations before introducing new type of yacs container.
[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 ComponentInstance;
36
37     class SalomeContainerHelper
38     {
39     public:
40       virtual std::string getType() const = 0;
41       virtual SalomeContainerHelper *deepCpyOnlyStaticInfo() const = 0;
42       virtual Engines::Container_var getContainer(const ComponentInstance *inst) const = 0;
43       virtual bool isAlreadyStarted(const ComponentInstance *inst) const = 0;
44       virtual void setContainer(const ComponentInstance *inst, Engines::Container_var cont) = 0;
45       virtual void shutdown() = 0;
46       virtual ~SalomeContainerHelper();
47     };
48
49     class SalomeContainerMonoHelper : public SalomeContainerHelper
50     {
51     public:
52       SalomeContainerMonoHelper();
53       std::string getType() const;
54       SalomeContainerMonoHelper *deepCpyOnlyStaticInfo() const;
55       Engines::Container_var getContainer(const ComponentInstance *inst) const;
56       bool isAlreadyStarted(const ComponentInstance *inst) const;
57       void setContainer(const ComponentInstance *inst, Engines::Container_var cont);
58       void shutdown();
59       ~SalomeContainerMonoHelper();
60     public:
61       static const char TYPE_NAME[];
62       static const char DFT_LAUNCH_MODE[];
63     private:
64       Engines::Container_var _trueCont;
65     };
66
67     class SalomeContainerMultiHelper : public SalomeContainerHelper
68     {
69     public:
70       std::string getType() const;
71       SalomeContainerMultiHelper *deepCpyOnlyStaticInfo() const;
72       Engines::Container_var getContainer(const ComponentInstance *inst) const;
73       bool isAlreadyStarted(const ComponentInstance *inst) const;
74       void setContainer(const ComponentInstance *inst, Engines::Container_var cont);
75       void shutdown();
76       ~SalomeContainerMultiHelper();
77     public:
78       static const char TYPE_NAME[];
79       static const char DFT_LAUNCH_MODE[];
80     private:
81       std::map<const ComponentInstance *,Engines::Container_var> _trueContainers;
82     };
83   }
84 }
85
86 #endif