]> SALOME platform Git repositories - modules/kernel.git/blob - src/Container/SALOME_Container_i.hxx
Salome HOME
153b381f84d8820656b3f04d66559535e8a1d98d
[modules/kernel.git] / src / Container / SALOME_Container_i.hxx
1 //  SALOME Container : implementation of container and engine for Kernel
2 //
3 //  Copyright (C) 2003  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. 
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 //
23 //
24 //  File   : SALOME_Container_i.hxx
25 //  Author : Paul RASCLE, EDF - MARC TAJCHMAN, CEA
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef _SALOME_CONTAINER_I_HXX_
30 #define _SALOME_CONTAINER_I_HXX_
31
32 #include <SALOME_Container.hxx>
33
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SALOME_Component)
36
37 #include <iostream>
38 #include <signal.h>
39 #include <stdlib.h>
40 #ifndef WNT
41 #include <unistd.h>
42 #endif
43 #include <sys/types.h>
44 #include <omnithread.h>
45 #include <map>
46 #include <string>
47
48 class SALOME_NamingService;
49
50 class CONTAINER_EXPORT Engines_Container_i:
51   public virtual POA_Engines::Container,
52   public virtual PortableServer::ServantBase
53 {
54 public:
55   Engines_Container_i();
56   Engines_Container_i(CORBA::ORB_ptr orb, 
57                       PortableServer::POA_ptr poa,
58                       char * containerName ,
59                       int argc, char* argv[],
60                       bool activAndRegist = true,
61                       bool isServantAloneInProcess = true);
62   virtual ~Engines_Container_i();
63
64   // --- CORBA methods
65
66   virtual bool load_component_Library(const char* componentName);
67
68   virtual Engines::Component_ptr
69   create_component_instance( const char* componentName,
70                              CORBA::Long studyId); // 0 for multiStudy
71
72   Engines::Component_ptr
73   find_component_instance( const char* registeredName,
74                            CORBA::Long studyId); // 0 for multiStudy
75
76   Engines::Component_ptr
77   load_impl(const char* nameToRegister,
78             const char* componentName);
79
80
81   void remove_impl(Engines::Component_ptr component_i);
82   void finalize_removal();
83
84   virtual void ping();
85   char* name();
86   char* workingdir();
87   char* logfilename();
88   void logfilename(const char* name);
89
90   virtual void Shutdown();
91   char* getHostName();
92   CORBA::Long getPID();
93   //! Kill current container
94   bool Kill_impl();
95
96   Engines::fileRef_ptr createFileRef(const char* origFileName);
97   Engines::fileTransfer_ptr getFileTransfer();
98
99   virtual Engines::Salome_file_ptr createSalome_file(const char* origFileName);
100   // --- local C++ methods
101
102   Engines::Component_ptr
103   find_or_create_instance( std::string genericRegisterName,
104                            std::string componentLibraryName);
105
106   Engines::Component_ptr
107   createInstance(std::string genericRegisterName,
108                  void *handle,
109                  int studyId);
110
111   static bool isPythonContainer(const char* ContainerName);
112   static void decInstanceCnt(std::string genericRegisterName);
113   //??? char* machineName();
114
115   // --- needed for parallel components, Numerical Platon
116
117   int getArgc() { return _argc; }
118   char **getArgv() { return _argv; }
119
120 protected:
121
122   static std::map<std::string, int> _cntInstances_map;
123   static std::map<std::string, void *> _library_map; // library names, loaded
124   static std::map<std::string, void *> _toRemove_map;// library names to remove
125   static omni_mutex _numInstanceMutex ; // lib and instance protection
126
127   bool _isSupervContainer;
128
129   SALOME_NamingService *_NS ;
130   std::string _library_path;
131   std::string _containerName;
132   std::string _logfilename;
133   CORBA::ORB_var _orb;
134   PortableServer::POA_var _poa;
135   PortableServer::ObjectId * _id ;
136   int _numInstance ;
137   std::map<std::string,Engines::Component_var> _listInstances_map;
138   std::map<std::string,Engines::fileRef_var> _fileRef_map;
139   std::map<std::string,Engines::Salome_file_var> _Salome_file_map;
140   Engines::fileTransfer_var _fileTransfer;
141
142   int    _argc ;
143   char** _argv ;
144   long   _pid;
145   bool   _isServantAloneInProcess;
146 };
147
148 #endif
149