]> SALOME platform Git repositories - modules/yacs.git/blob - src/runtime/SalomeContainerTools.hxx
Salome HOME
Ready to update Executor to take into account of the new type of 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 Task;
36     class Container;
37     class ComponentInstance;
38     class SalomeContainerHelper;
39
40     class YACSRUNTIMESALOME_EXPORT SalomeContainerTools
41     {
42     public:
43       SalomeContainerTools();
44       SalomeContainerTools(const SalomeContainerTools& other);
45       std::string getProperty(const std::string& name) const;
46       void setProperty(const std::string& name, const std::string& value);
47       const std::map<std::string,std::string>& getProperties() const { return _propertyMap; }
48       void clearProperties();
49       std::map<std::string,std::string> getResourceProperties(const std::string& name) const;
50       void addToComponentList(const std::string& name);
51       void addToResourceList(const std::string& name);
52     public:
53       std::string getContainerName() const;
54       void setContainerName(const std::string& name);
55       std::string getNotNullContainerName(const Container *contPtr, bool& isEmpty) const;
56       std::string getHostName() const;
57       Engines::ContainerParameters getParameters() const { return _params; }
58     public:
59       static void Start(const std::vector<std::string>& compoNames, SalomeContainerHelper *schelp, SalomeContainerTools& sct, int& shutdownLevel, const Container *cont, const Task *askingNode);
60       static CORBA::Object_ptr LoadComponent(SalomeContainerHelper *launchModeType, Container *cont, Task *askingNode);
61       static std::string GetPlacementId(const SalomeContainerHelper *launchModeType, const Container *cont, const Task *askingNode);
62       static std::string GetFullPlacementId(const SalomeContainerHelper *launchModeType, const Container *cont, const Task *askingNode);
63     protected:
64       std::map<std::string,std::string> _propertyMap;
65       Engines::ContainerParameters _params;
66     };
67   }
68 }
69
70 #endif