Salome HOME
Copyrights update 2015.
[modules/kernel.git] / src / LifeCycleCORBA / SALOME_LifeCycleCORBA.hxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SALOME_LifeCycleCORBA.hxx
23 //  Author : Paul RASCLE, EDF - MARC TAJCHMAN, CEA
24 //  Module : SALOME
25
26 #ifndef _SALOME_LIFECYCLECORBA_HXX_
27 #define _SALOME_LIFECYCLECORBA_HXX_
28
29 #include <stdlib.h>
30 #ifndef WIN32
31 #include <unistd.h>
32 #endif
33 #include <string>
34
35 #include <SALOMEconfig.h>
36 #include <Utils_SALOME_Exception.hxx>
37 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
38 #include CORBA_CLIENT_HEADER(SALOME_Component)
39 #include <iostream>
40
41 #ifdef WIN32
42 # if defined LIFECYCLECORBA_EXPORTS || defined SalomeLifeCycleCORBA_EXPORTS
43 #  define LIFECYCLECORBA_EXPORT __declspec( dllexport )
44 # else
45 #  define LIFECYCLECORBA_EXPORT __declspec( dllimport )
46 # endif
47 #else
48 # define LIFECYCLECORBA_EXPORT
49 #endif
50
51
52 class SALOME_NamingService;
53
54 class LIFECYCLECORBA_EXPORT IncompatibleComponent : public SALOME_Exception
55 {
56 public :
57   IncompatibleComponent(void);
58   IncompatibleComponent(const IncompatibleComponent &ex);
59 };
60
61 class LIFECYCLECORBA_EXPORT SALOME_LifeCycleCORBA
62 {
63 public:
64   SALOME_LifeCycleCORBA(SALOME_NamingService *ns = 0);
65   virtual ~SALOME_LifeCycleCORBA();
66
67   Engines::EngineComponent_ptr 
68   FindComponent(const Engines::ContainerParameters& params,
69                 const char *componentName,
70                 int studyId=0);
71
72   Engines::EngineComponent_ptr
73   LoadComponent(const Engines::ContainerParameters& params,
74                 const char *componentName,
75                 int studyId=0);
76
77   Engines::EngineComponent_ptr 
78   FindOrLoad_Component(const Engines::ContainerParameters& params,
79                        const char *componentName,
80                        int studyId =0);
81
82   Engines::EngineComponent_ptr
83   FindOrLoad_Component(const char *containerName,
84                        const char *componentName);
85   
86   // Parallel extension
87   Engines::EngineComponent_ptr 
88     Load_ParallelComponent(const Engines::ContainerParameters& params,
89                            const char *componentName,
90                            int studyId);
91
92   bool isKnownComponentClass(const char *componentName);
93
94   int NbProc(const Engines::ContainerParameters& params);
95
96   static void preSet(Engines::ResourceParameters& outparams);
97   static void preSet(Engines::ContainerParameters& outparams);
98
99   Engines::ContainerManager_ptr getContainerManager();
100   Engines::ResourcesManager_ptr getResourcesManager();
101   SALOME_NamingService * namingService();
102   CORBA::ORB_ptr orb();
103   void copyFile(const char* hostSrc, const char* fileSrc, const char* hostDest, const char* fileDest);
104
105   void shutdownServers();
106   static void killOmniNames();
107
108 protected:
109
110   /*! Establish if a component called "componentName" in a container called
111    *  "containerName"
112    *  exists among the list of resources in "listOfMachines".
113    *  This method uses Naming Service to find the component.
114    */
115   Engines::EngineComponent_ptr 
116   _FindComponent(const Engines::ContainerParameters& params,
117                  const char *componentName,
118                  int studyId,
119                  const Engines::ResourceList& listOfResources);
120
121   Engines::EngineComponent_ptr
122   _LoadComponent(const Engines::ContainerParameters& params,
123                  const char *componentName,
124                  int studyId);
125
126   SALOME_NamingService *_NS;
127   SALOME_NamingService *_NSnew;
128   Engines::ContainerManager_var _ContManager;
129   Engines::ResourcesManager_var _ResManager;
130   
131 } ;
132
133 #endif