1 // Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : SALOME_LifeCycleCORBA.hxx
24 // Author : Paul RASCLE, EDF - MARC TAJCHMAN, CEA
27 #ifndef _SALOME_LIFECYCLECORBA_HXX_
28 #define _SALOME_LIFECYCLECORBA_HXX_
36 #include <SALOMEconfig.h>
37 #include <Utils_SALOME_Exception.hxx>
38 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
39 #include CORBA_CLIENT_HEADER(SALOME_Component)
43 # if defined LIFECYCLECORBA_EXPORTS || defined SalomeLifeCycleCORBA_EXPORTS
44 # define LIFECYCLECORBA_EXPORT __declspec( dllexport )
46 # define LIFECYCLECORBA_EXPORT __declspec( dllimport )
49 # define LIFECYCLECORBA_EXPORT
53 class SALOME_NamingService_Abstract;
55 class LIFECYCLECORBA_EXPORT IncompatibleComponent : public SALOME_Exception
58 IncompatibleComponent(void);
59 IncompatibleComponent(const IncompatibleComponent &ex);
62 class LIFECYCLECORBA_EXPORT SALOME_LifeCycleCORBA
65 SALOME_LifeCycleCORBA(SALOME_NamingService_Abstract *ns = 0);
66 virtual ~SALOME_LifeCycleCORBA();
68 Engines::EngineComponent_ptr
69 FindComponent(const Engines::ContainerParameters& params,
70 const char *componentName);
72 Engines::EngineComponent_ptr
73 LoadComponent(const Engines::ContainerParameters& params,
74 const char *componentName);
76 Engines::EngineComponent_ptr
77 FindOrLoad_Component(const Engines::ContainerParameters& params,
78 const char *componentName);
80 Engines::EngineComponent_ptr
81 FindOrLoad_Component(const char *containerName,
82 const char *componentName);
85 Engines::EngineComponent_ptr
86 Load_ParallelComponent(const Engines::ContainerParameters& params,
87 const char *componentName);
89 bool isKnownComponentClass(const char *componentName);
91 int NbProc(const Engines::ContainerParameters& params);
93 static void preSet(Engines::ResourceParameters& outparams);
94 static void preSet(Engines::ContainerParameters& outparams);
96 Engines::ContainerManager_ptr getContainerManager();
97 Engines::ResourcesManager_ptr getResourcesManager();
98 SALOME_NamingService_Abstract * namingService();
100 void copyFile(const char* hostSrc, const char* fileSrc, const char* hostDest, const char* fileDest);
102 void shutdownServers(bool shutdownLauncher=true);
103 static void killOmniNames();
107 /*! Establish if a component called "componentName" in a container called
109 * exists among the list of resources in "listOfMachines".
110 * This method uses Naming Service to find the component.
112 Engines::EngineComponent_ptr
113 _FindComponent(const Engines::ContainerParameters& params,
114 const char *componentName,
115 const Engines::ResourceList& listOfResources);
117 Engines::EngineComponent_ptr
118 _LoadComponent(const Engines::ContainerParameters& params,
119 const char *componentName);
121 SALOME_NamingService_Abstract *_NS;
122 SALOME_NamingService_Abstract *_NSnew;
123 Engines::ContainerManager_var _ContManager;
124 Engines::ResourcesManager_var _ResManager;