Salome HOME
B4 an API modification to generalize launching of kernel containers.
[modules/yacs.git] / src / runtime / SalomeContainerTools.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 __SALOMECONTAINERTOOLS_HXX__
21 #define __SALOMECONTAINERTOOLS_HXX__
22
23 #include "YACSRuntimeSALOMEExport.hxx"
24 #include "SALOMEconfig.h"
25 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
26
27 #include <string>
28 #include <vector>
29 #include <map>
30
31 namespace YACS
32 {
33   namespace ENGINE
34   {
35     class Container;
36     class ComponentInstance;
37     class SalomeContainerHelper;
38
39     class YACSRUNTIMESALOME_EXPORT SalomeContainerTools
40     {
41     public:
42       SalomeContainerTools();
43       SalomeContainerTools(const SalomeContainerTools& other);
44       std::string getProperty(const std::string& name) const;
45       void setProperty(const std::string& name, const std::string& value);
46       const std::map<std::string,std::string>& getProperties() const { return _propertyMap; }
47       void clearProperties();
48       std::map<std::string,std::string> getResourceProperties(const std::string& name) const;
49       void addToComponentList(const std::string& name);
50       void addToResourceList(const std::string& name);
51     public:
52       std::string getContainerName() const;
53       void setContainerName(const std::string& name);
54       std::string getNotNullContainerName(const Container *contPtr, bool& isEmpty) const;
55       std::string getHostName() const;
56       Engines::ContainerParameters getParameters() const { return _params; }
57     public:
58       static void Start(const std::vector<std::string>& compoNames, SalomeContainerHelper *schelp, SalomeContainerTools& sct, int& shutdownLevel, const Container *cont, const ComponentInstance *inst);
59       static CORBA::Object_ptr LoadComponent(SalomeContainerHelper *launchModeType, Container *cont, ComponentInstance *inst);
60       static std::string GetPlacementId(SalomeContainerHelper *launchModeType, const Container *cont, const ComponentInstance *inst);
61       static std::string GetFullPlacementId(SalomeContainerHelper *launchModeType, const Container *cont, const ComponentInstance *inst);
62     protected:
63       std::map<std::string,std::string> _propertyMap;
64       Engines::ContainerParameters _params;
65     };
66   }
67 }
68
69 #endif