Version: 8.3.0
SalomeContainerTools.hxx
Go to the documentation of this file.
1 // Copyright (C) 2006-2016 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 
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 
41  {
42  public:
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, const Task *askingNode, bool& isEmpty) const;
56  std::string getHostName() const;
57  Engines::ContainerParameters getParameters() const { return _params; }
58  static void SetContainerNameOf(Engines::ContainerParameters& params, const std::string& name);
59  public:
60  static void Start(const std::vector<std::string>& compoNames, SalomeContainerHelper *schelp, SalomeContainerTools& sct, int& shutdownLevel, const Container *cont, const Task *askingNode);
61  static CORBA::Object_ptr LoadComponent(SalomeContainerHelper *launchModeType, Container *cont, Task *askingNode);
62  static CORBA::Object_ptr CreateComponentInstance(Container *cont, Engines::Container_ptr contPtr, const ComponentInstance *inst);
63  static std::string GetPlacementId(const SalomeContainerHelper *launchModeType, const Container *cont, const Task *askingNode);
64  static std::string GetFullPlacementId(const SalomeContainerHelper *launchModeType, const Container *cont, const Task *askingNode);
65  protected:
66  std::map<std::string,std::string> _propertyMap;
67  Engines::ContainerParameters _params;
68  };
69  }
70 }
71 
72 #endif