Salome HOME
Copyright update 2021
[samples/component.git] / src / AddComponent / AddComponent_CheckOfUndefined.cxx
1 // Copyright (C) 2007-2021  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
23 //  SuperVisionTest AddComponent : example of component that adds two numbers
24 //  File   : AddComponent_CheckOfUndefined.cxx
25 //  Author : Jean Rahuel
26 //  Module : SuperVisionTest
27 //  $Header$
28 //
29 #include <iostream>
30 #include <strstream>
31 #include <string>
32 #include <stdio.h>
33
34 #ifndef WIN32
35 #include <unistd.h>
36 #else
37 #include <process.h>
38 #endif
39 #include "SALOME_Container_i.hxx"
40 #include "utilities.h"
41 #include "Utils_ORB_INIT.hxx"
42 #include "Utils_SINGLETON.hxx"
43 #include "SALOMETraceCollector.hxx"
44 #include "OpUtil.hxx"
45
46 #ifdef CHECKTIME
47 #include <Utils_Timer.hxx>
48 #endif
49
50 #ifdef HAVE_MPI2
51 #include <mpi.h>
52 #endif
53
54 //CCRT
55 #include <sstream>
56 #include <time.h>
57 #ifndef WIN32
58 #include <sys/time.h>
59 #include <sys/stat.h>
60 #endif
61 //end-CCRT
62
63 #include "Container_init_python.hxx"
64
65 using namespace std;
66
67 extern "C" void HandleServerSideSignals(CORBA::ORB_ptr theORB);
68
69 #if PY_VERSION_HEX < 0x03050000
70 static wchar_t*
71 Py_DecodeLocale(const char *arg, size_t *size)
72 {
73         return _Py_char2wchar(arg, size);
74 }
75 #endif
76
77 int main(int argc, char* argv[])
78 {
79 #ifdef HAVE_MPI2
80   MPI_Init(&argc,&argv);
81 #endif
82
83   // Initialise the ORB.
84   //SRN: BugID: IPAL9541, it's necessary to set a size of one message to be at least 100Mb
85   //CORBA::ORB_var orb = CORBA::ORB_init( argc , argv ) ;
86   ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
87   ASSERT(SINGLETON_<ORB_INIT>::IsAlreadyExisting());
88   CORBA::ORB_var orb = init(0 , 0 ) ;
89           
90   //SALOMETraceCollector *myThreadTrace = SALOMETraceCollector::instance(orb);
91   INFOS_COMPILATION;
92   BEGIN_OF(argv[0]);
93
94   ASSERT(argc > 1);
95   SCRUTE(argv[1]);
96   bool isSupervContainer = false;
97   if (strcmp(argv[1],"SuperVisionContainer") == 0) isSupervContainer = true;
98
99   if (!isSupervContainer)
100     {
101       //int _argc = 1;
102       //char* _argv[] = {""};
103       KERNEL_PYTHON::init_python(argc,argv);
104     }
105   else
106     {
107       wchar_t **changed_argv = new wchar_t*[argc];
108       for (int i = 0; i < argc; i++) {
109         changed_argv[i] = Py_DecodeLocale(argv[i], NULL);
110       }
111       Py_Initialize() ;
112       PySys_SetArgv( argc , changed_argv ) ;
113     }
114     
115   char *containerName = "";
116   if(argc > 1)
117     {
118       containerName = argv[1] ;
119     }
120
121   try
122     {  
123       CORBA::Object_var obj = orb->resolve_initial_references("RootPOA");
124       ASSERT(!CORBA::is_nil(obj));
125       PortableServer::POA_var root_poa = PortableServer::POA::_narrow(obj);
126
127       PortableServer::POAManager_var pman = root_poa->the_POAManager();
128
129       // add new container to the kill list
130 #ifndef WNT
131       ostrstream aCommand ;
132       aCommand << "addToKillList.py " << getpid() << " SALOME_Container" << ends ;
133       system(aCommand.str());
134 #endif
135       
136       /*Engines_Container_i * myContainer 
137         = */new Engines_Container_i(orb, root_poa, containerName , argc , argv );
138       
139       pman->activate();
140       
141 #ifdef CHECKTIME
142       Utils_Timer timer;
143       timer.Start();
144       timer.Stop();
145       MESSAGE("SALOME_Registry_Server.cxx - orb->run()");
146       timer.ShowAbsolute();
147 #endif
148       
149       HandleServerSideSignals(orb);
150       
151     }
152   catch(CORBA::SystemException&)
153     {
154       INFOS("Caught CORBA::SystemException.");
155     }
156   catch(PortableServer::POA::ServantAlreadyActive&)
157     {
158       INFOS("Caught CORBA::ServantAlreadyActiveException");
159     }
160   catch(CORBA::Exception&)
161     {
162       INFOS("Caught CORBA::Exception.");
163     }
164   catch(std::exception& exc)
165     {
166       INFOS("Caught std::exception - "<<exc.what()); 
167     }
168   catch(...)
169     {
170       INFOS("Caught unknown exception.");
171     }
172
173 #ifdef HAVE_MPI2
174   MPI_Finalize();
175 #endif
176
177   END_OF(argv[0]);
178   //  delete myThreadTrace;
179   return 0 ;
180 }
181