Version: 9.16.0
SALOME_ParallelContainer_i.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, 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_ParallelContainer_i.hxx
23// Author : Andr� RIBES, EDF
24
25#ifndef _SALOME_PARALLEL_CONTAINER_I_HXX_
26#define _SALOME_PARALLEL_CONTAINER_I_HXX_
27
28#include <SALOMEconfig.h>
29
30#include "SALOME_PACOExtensionPaCO_Engines_PACO_Container_server.hxx"
32
33#include <iostream>
34#include <signal.h>
35#include <stdlib.h>
36#ifndef WIN32
37#include <unistd.h>
38#endif
39#include <sys/types.h>
40#include <omnithread.h>
41#include <map>
42#include <string>
43
45
46#ifdef WIN32
47# if defined CONTAINER_EXPORTS || defined SalomeParallelContainer_EXPORTS
48# define CONTAINER_EXPORT __declspec( dllexport )
49# else
50# define CONTAINER_EXPORT __declspec( dllimport )
51# endif
52#else
53# define CONTAINER_EXPORT
54#endif
55
57 virtual public Engines::PACO_Container_serv,
58 virtual public ParallelGlobalProcessVar_i,
59 virtual public PortableServer::RefCountServantBase
60{
61public:
62 Engines_Parallel_Container_i(CORBA::ORB_ptr orb,
63 char * ior,
64 int rank,
65 PortableServer::POA_ptr poa,
66 std::string containerName ,
67 bool isServantAloneInProcess = true);
68
70
71 // --- CORBA methods
72
73 virtual bool load_component_Library(const char* componentName, CORBA::String_out reason);
74
75 virtual Engines::EngineComponent_ptr
76 create_component_instance( const char* componentName);
77
78 virtual Engines::EngineComponent_ptr
79 create_component_instance_env( const char* componentName,
80 const Engines::FieldsDict& env,
81 CORBA::String_out reason);
82
83 virtual char*
84 create_python_service_instance(const char* CompName,
85 CORBA::String_out reason);
86
87 Engines::EngineComponent_ptr
88 find_component_instance( const char* registeredName);
89
90 Engines::EngineComponent_ptr
91 load_impl(const char* nameToRegister,
92 const char* componentName);
93
94 void
95 create_paco_component_node_instance(const char* componentName,
96 const char* proxy_containerName);
97
98 void updateInstanceNumber();
99
100 void remove_impl(Engines::EngineComponent_ptr component_i);
101 void finalize_removal();
102
103 virtual void ping();
104 char* name();
105 char* workingdir();
106 char* logfilename();
107 void logfilename(const char* name);
108
109 virtual void Shutdown();
110 char* getHostName();
111 CORBA::Long getPID();
112
114 bool Kill_impl() ;
115
116 // --- local C++ methods
117 Engines::EngineComponent_ptr
118 find_or_create_instance(std::string genericRegisterName);
119
120 Engines::EngineComponent_ptr
121 createCPPInstance(std::string genericRegisterName,
122 void *handle);
123
124 Engines::EngineComponent_ptr
125 createPythonInstance(std::string genericRegisterName);
126
127 static bool isPythonContainer(const char* ContainerName);
128 static void decInstanceCnt(std::string genericRegisterName);
129
130 // --- needed for parallel components, Numerical Platon
131 void set_id(PortableServer::ObjectId * id) { _id = id;}
132
133 Engines::fileRef_ptr createFileRef(const char* origFileName);
134 Engines::fileTransfer_ptr getFileTransfer();
135
136 virtual Engines::Salome_file_ptr createSalome_file(const char* origFileName);
137 void copyFile(Engines::Container_ptr container, const char* remoteFile, const char* localFile);
138 Engines::PyNode_ptr createPyNode(const char* nodeName, const char* code);
139 Engines::PyNode_ptr getDefaultPyNode(const char *nodeName);
140 Engines::PyScriptNode_ptr createPyScriptNode(const char* nodeName, const char* code);
141 Engines::PyScriptNode_ptr getDefaultPyScriptNode(const char *nodeName);
142protected:
143
145 std::string _hostname;
146 std::string _library_path;
147 std::string _containerName;
148 std::string _logfilename;
149 CORBA::ORB_var _orb;
150 PortableServer::POA_var _poa;
151 PortableServer::ObjectId * _id;
153 CORBA::Long _pid;
155 Engines::fileTransfer_var _fileTransfer;
156
157 typedef std::map<std::string,Engines::EngineComponent_var> _listInstances_map_t;
158 typedef std::map<std::string,Engines::fileRef_var> _fileRef_map_t;
159 typedef std::map<std::string,Engines::Salome_file_var> _Salome_file_map_t;
163
164 // Cette map contient les references vers les diff�rentes
165 // instances d'objets parall�les.
166 std::map<std::string, PortableServer::ObjectId *> _par_obj_inst_map;
167
168 typedef PortableServer::ObjectId * (*FACTORY_FUNCTION) (CORBA::ORB_ptr, char *, int,
169 PortableServer::POA_ptr,
170 PortableServer::ObjectId *,
171 const char *,
172 const char *);
173};
174
175#endif
bool isPythonContainer(const char *ContainerName)
This is no longer valid (C++ container are also python containers)
Definition: SALOME_ContainerManager.cxx:891
#define CONTAINER_EXPORT
Definition: SALOME_ParallelContainer_i.hxx:53
C++ implementation of Engines::Container interface for parallel container implemented with PaCO++.
Definition: SALOME_ParallelContainer_i.hxx:60
std::map< std::string, Engines::Salome_file_var > _Salome_file_map_t
Definition: SALOME_ParallelContainer_i.hxx:159
CORBA::ORB_var _orb
Definition: SALOME_ParallelContainer_i.hxx:149
SALOME_NamingService * _NS
Definition: SALOME_ParallelContainer_i.hxx:144
_Salome_file_map_t _Salome_file_map
Definition: SALOME_ParallelContainer_i.hxx:162
CORBA::Long _pid
Definition: SALOME_ParallelContainer_i.hxx:153
std::map< std::string, Engines::fileRef_var > _fileRef_map_t
Definition: SALOME_ParallelContainer_i.hxx:158
std::string _hostname
Definition: SALOME_ParallelContainer_i.hxx:145
_fileRef_map_t _fileRef_map
Definition: SALOME_ParallelContainer_i.hxx:161
std::map< std::string, Engines::EngineComponent_var > _listInstances_map_t
Definition: SALOME_ParallelContainer_i.hxx:157
std::string _logfilename
Definition: SALOME_ParallelContainer_i.hxx:148
void set_id(PortableServer::ObjectId *id)
Definition: SALOME_ParallelContainer_i.hxx:131
int _numInstance
Definition: SALOME_ParallelContainer_i.hxx:152
Engines::fileTransfer_var _fileTransfer
Definition: SALOME_ParallelContainer_i.hxx:155
std::string _containerName
Definition: SALOME_ParallelContainer_i.hxx:147
bool _isServantAloneInProcess
Definition: SALOME_ParallelContainer_i.hxx:154
PortableServer::ObjectId * _id
Definition: SALOME_ParallelContainer_i.hxx:151
PortableServer::POA_var _poa
Definition: SALOME_ParallelContainer_i.hxx:150
std::string _library_path
Definition: SALOME_ParallelContainer_i.hxx:146
_listInstances_map_t _listInstances_map
Definition: SALOME_ParallelContainer_i.hxx:160
std::map< std::string, PortableServer::ObjectId * > _par_obj_inst_map
Definition: SALOME_ParallelContainer_i.hxx:166
Definition: SALOME_ParallelGlobalProcessVar_i.hxx:46
A class to manage the SALOME naming service.
Definition: SALOME_NamingService.hxx:48
sequence< KeyValuePair > FieldsDict
Definition: SALOME_Component.idl:65
poa
Definition: SALOME_ContainerPy.py:377
containerName
Definition: SALOME_ContainerPy.py:383
container
Definition: TestComponentPy.py:63
string name
Definition: pythfilter.py:56
def getHostName()
Definition: salome_utils.py:137
orb
Definition: salome.py:122