Salome HOME
updated copyright message
[modules/kernel.git] / src / ResourcesManager / SALOME_ResourcesManager.hxx
index c0b6ef38530492a15d9dcd5a6e33e1921cbc99d4..1d2d5d0ff12fcfa070334d005ddd948c819c6155 100644 (file)
@@ -1,99 +1,93 @@
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
 #ifndef __SALOME_RESOURCESMANAGER_HXX__
 #define __SALOME_RESOURCESMANAGER_HXX__
 
 #include "Utils_SALOME_Exception.hxx"
 #include "utilities.h"
 #include <SALOMEconfig.h>
-#include "SALOME_ResourcesCatalog_Handler.hxx"
-#include "SALOME_LoadRateManager.hxx"
+#include "SALOME_NamingService_Abstract.hxx"
 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
 #include <string>
 #include <fstream>
 #include <vector>
-
-//WARNING the call of BuildTempFileToLaunchRemoteContainer and RmTmpFile must be done in a critical section to be sure to be clean.
-//Only one thread should use the SALOME_ResourcesManager class in a SALOME session.
-
-class SALOME_ResourcesManager
-{
-public:
-  //! standard constructor
-  SALOME_ResourcesManager();
-
-  //!just for test
-  SALOME_ResourcesManager(const char *xmlFilePath);
-  
-  //! standard destructor
-  ~SALOME_ResourcesManager();
-
-  //! method to get the list of name of ressources fitting for the specified module.
-  std::vector<std::string> GetFittingResources(const Engines::MachineParameters& params,const char *moduleName) throw(SALOME_Exception);
-
-  //! method to dynamically obtain the best machines
-  std::string FindBest(const Engines::MachineList& listOfMachines);
-
-  //! method that builds in a temporary file the script to be launched
-  std::string BuildTempFileToLaunchRemoteContainer(const std::string& machine,const char *containerName);
-
-  //! method that builds the command to be launched.
-  std::string BuildCommandToLaunchLocalContainer(const char *containerName);
-
-  //! method that remove the generated temporary file in case of a remote launch.
-  void RmTmpFile();
-
-  //! method that builds the script to be launched
-  std::string BuildCommand(const std::string& machine,const char *containerName);
-
-  //! add an entry in the ressources catalog  xml file. Return 1 if OK. Return 0 if the ressource with the same hostname already exists.
-  int AddResourceInCatalog(const Engines::MachineParameters& paramsOfNewResources, const std::map<std::string,std::string>& modulesOnNewResources,
-                          const char *environPathOfPrerequired,
-                          const char *alias, const char *userName, AccessModeType mode, AccessProtocolType prot) throw(SALOME_Exception);
-  
-  //! delete a ressource from the Catalog.
-  void DeleteResourceInCatalog(const char *hostname);
-
-  //! write the current data in memory in file.
-  void WriteInXmlFile();
-
-  //! method to parse the data type catalog
-  const MapOfParserResourcesType& ParseXmlFile();
-
-  //! to consult the content of the list
-  const MapOfParserResourcesType& GetList() const;
-
-private:
-
-  //! method to verify ressources catalog content - return true if verfication is OK
-  bool _verify_resources(MapOfParserResourcesType resourceslist);
-
-  //! method that fill hosts with only resources in xml files that are on the specified OS
-  void SelectOnlyResourcesWithOS(std::vector<std::string>& hosts,const char *OS) const throw(SALOME_Exception);
-
-  //! method that keep from hosts only those having component of name moduleName.
-  void KeepOnlyResourcesWithModule(std::vector<std::string>& hosts,const char *moduleName) const throw(SALOME_Exception);
-
-  //! methode that add to command all options relative to naming service.
-  void AddOmninamesParams(std::string& command) const;
-
-  //! method that add to command all options relative to naming service.
-  void AddOmninamesParams(std::ofstream& fileStream) const;
-
-  //! method that generate a file name in /tmp directory
-  std::string BuildTemporaryFileName() const;
-
-  // will contain the path to the ressources catalog
-  QString _path_resources;
-
-  //! attribute that contains current tmp files generated
-  std::string _TmpFileName;
-
-  //! attribute that contains the rsh or ssh command to access directly to machine. Only used by this->RmTmpFile in case of a remote launch.
-  std::string _CommandForRemAccess;
-  
-  //will contain the informations on the data type catalog(after parsing)
-  MapOfParserResourcesType _resourcesList;
-
-  SALOME_LoadRateManager _dynamicResourcesSelecter;
-};
+#include <memory>
+#include "ResourcesManager.hxx"
+
+#include "SALOME_ResourcesManager_Common.hxx"
+
+#ifdef WIN32
+#pragma warning(disable:4275) // Disable warning interface non dll
+#endif
+
+// --- WARNING ---
+// The call of BuildTempFileToLaunchRemoteContainer and RmTmpFile must be done
+// in a critical section to be sure to be clean.
+// Only one thread should use the SALOME_ResourcesManager class in a SALOME
+// session.
+
+class SALOMERESOURCESMANAGER_EXPORT SALOME_ResourcesManager:
+  public POA_Engines::ResourcesManager,
+  public PortableServer::RefCountServantBase
+  {
+
+  public:
+
+    SALOME_ResourcesManager(CORBA::ORB_ptr orb, PortableServer::POA_var poa, SALOME_NamingService_Abstract *ns, const char *xmlFilePath);
+    SALOME_ResourcesManager(CORBA::ORB_ptr orb, PortableServer::POA_var poa, SALOME_NamingService_Abstract *ns);
+
+    ~SALOME_ResourcesManager();
+
+    // CORBA Methods
+    Engines::ResourceList * GetFittingResources(const Engines::ResourceParameters& params);
+    char* FindFirst(const Engines::ResourceList& listOfResources);
+    char* Find(const char *policy, const Engines::ResourceList& listOfResources);
+    Engines::ResourceDefinition * GetResourceDefinition(const char * name);
+    void AddResource(const Engines::ResourceDefinition& new_resource,
+                     CORBA::Boolean write,
+                     const char * xml_file);
+
+    void RemoveResource(const char * resource_name,
+                        CORBA::Boolean write,
+                        const char * xml_file);
+    char* getMachineFile(const char * resource_name,
+                         CORBA::Long nb_procs,
+                         const char * parallelLib);
+    void ListAllAvailableResources(Engines::ResourceList_out machines, Engines::IntegerList_out nbProcsOfMachines);
+    
+    Engines::ResourceList *ListAllResourcesInCatalog();
+    // Cpp Methods
+    void Shutdown();
+    std::shared_ptr<ResourcesManager_cpp>& GetImpl() { return _rm; }
+
+
+    static const char *_ResourcesManagerNameInNS;
+  protected:
+
+    SALOME_NamingService_Abstract *_NS;
+    CORBA::ORB_var _orb;
+    PortableServer::POA_var _poa;
+    std::shared_ptr<ResourcesManager_cpp> _rm;
+  };
 
 #endif // RESSOURCESCATALOG_IMPL_H