Salome HOME
Dft SSL : salome command is now in blocking as before
[modules/kernel.git] / src / Logger / SALOME_Logger_Server_main.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 //  SALOME Logger : CORBA server managing trace output
24 //  File   : SALOME_Logger_Server.cxx
25 //  Author : Vasily Rusyaev
26 //  Module : SALOME
27 //
28 #include <iostream>
29 #include "SALOME_Logger_Server.hxx"
30 #include "OpUtil.hxx"
31 #include "ArgvKeeper.hxx"
32 #include <SALOMEconfig.h>
33 #include <sys/types.h>
34 #include <stdlib.h>
35
36 #ifndef WIN32
37 # include <unistd.h>
38 #else
39 # include "utilities.h" // for compilation type "timespec"
40 #endif
41
42 int main(int argc, char **argv)
43 {
44   if (argc > 2)
45     {
46       std::cout << "usage: SALOME_Logger_Server [output_file]" << std::endl;
47       exit(1);
48     }
49   try
50     {
51       //Initialize the ORB
52       const long TIMESleep = 250000000;
53       const int NumberOfTries = 40;
54       int i;
55       timespec ts_req = {0, TIMESleep};
56       timespec ts_rem = {0, 0};
57       CosNaming::NamingContext_var inc;
58       SALOME_Logger::Logger_var myLoggerRef;
59       CORBA::Object_var theObj;
60       Logger* myLogger;
61       CORBA::Object_var obj;
62       PortableServer::POA_var poa;
63       PortableServer::POAManager_var pman;   
64
65       SetArgcArgv(argc, argv);
66       CORBA::ORB_var orb = KERNEL::GetRefToORB() ;
67
68       for (i = 1; i <= NumberOfTries; i++)
69           {
70 #ifndef WIN32
71                   if (i != 1) nanosleep(&ts_req, &ts_rem);
72 #else
73                   if (i != 1) Sleep(TIMESleep / 1000000);
74 #endif
75                   try 
76                   {
77                           obj = orb->resolve_initial_references("RootPOA") ;
78                           if(!CORBA::is_nil(obj))
79                                   poa = PortableServer::POA::_narrow(obj) ;
80                           pman = poa->the_POAManager();
81                           // NB. You can activate the POA before or after
82                           // activating objects in that POA.
83                           
84                           // This activates the object in the root POA (by default), and
85                           // returns a reference to it.
86                           //NB. You can't use SALOME_NamingService class because it uses MESSAGE macro
87                           //Otherwise, you will get segmentation fault.   
88                           //Get initial naming context
89                           if(!CORBA::is_nil(orb)) 
90                                   theObj = orb->resolve_initial_references("NameService");
91                           //Narrow to NamingContext
92                           if (!CORBA::is_nil(theObj))
93                                   inc = CosNaming::NamingContext::_narrow(theObj);
94                   } catch(CORBA::COMM_FAILURE&) {
95                           //cout<<"Logger Server: CORBA::COMM_FAILURE: Unable to contact the Naming Service"<<endl;
96                   } catch(...) {
97                           //cout<<"Logger Server: Unknown exception dealed with Naming Service" <<endl;
98                   }
99                   
100                   if (!CORBA::is_nil(inc)) {
101                           //      cout<<"Logger Server: Naming Service was found"<<endl; 
102                           break;
103                   }
104       }
105       if (argc == 1)
106                   myLogger = new Logger();
107       else
108                   myLogger = new Logger(argv[1]);
109
110       myLogger->SetOrb(orb);
111       myLoggerRef = myLogger->_this();
112       CosNaming::Name name;
113       name.length(1);
114       name[0].id = CORBA::string_dup("Logger");
115       inc->bind(name,myLoggerRef);
116       myLogger->_remove_ref();
117       pman->activate();   
118       orb->run() ;
119       orb->destroy() ;
120     }  
121   catch(CORBA::COMM_FAILURE&)
122         {
123       std::cerr << "Caught system exception COMM_FAILURE -- unable to contact the "
124            << "object." << std::endl;
125     }
126   catch(CORBA::SystemException&) 
127     {
128       std::cerr << "Caught CORBA::SystemException." << std::endl;
129     }
130   catch(CORBA::Exception&) 
131     {
132       std::cerr << "Caught CORBA::Exception." << std::endl;
133     }
134   catch(omniORB::fatalException& fe) 
135     {
136       std::cerr << "Caught omniORB::fatalException:" << std::endl;
137       std::cerr << "  file: " << fe.file() << std::endl;
138       std::cerr << "  line: " << fe.line() << std::endl;
139       std::cerr << "  mesg: " << fe.errmsg() << std::endl;
140     }
141   catch(...) 
142     {
143       std::cerr << "Caught unknown exception." << std::endl;
144     }
145   return 0;
146 }