Salome HOME
add method NameChanged to update title name
[modules/kernel.git] / src / Logger / SALOME_Logger_Server_main.cxx
index c9551d567919d0f9586c9e22f758530bbb31c44f..6e14288a1655a97078da19c8903dac4c31ff7554 100644 (file)
@@ -1,18 +1,37 @@
-//  SALOME Logger : CORBA server managing trace output
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
-//  Copyright (C) 2003  CEA/DEN, EDF R&D
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+//  SALOME Logger : CORBA server managing trace output
 //  File   : SALOME_Logger_Server.cxx
 //  Author : Vasily Rusyaev
 //  Module : SALOME
-
+//
 #include <iostream>
 #include "SALOME_Logger_Server.hxx"
 #include <SALOMEconfig.h>
 #include <sys/types.h>
-#ifndef __WIN32__
+#include <stdlib.h>
+
+#ifndef WIN32
 # include <unistd.h>
 #else
 # include "utilities.h" // for compilation type "timespec"
@@ -44,47 +63,48 @@ int main(int argc, char **argv)
       CORBA::ORB_var orb = CORBA::ORB_init(argc, argv) ;
 
       for (i = 1; i <= NumberOfTries; i++)
-         {
-#ifndef WNT
-                 if (i != 1) nanosleep(&ts_req, &ts_rem);
+          {
+#ifndef WIN32
+                  if (i != 1) nanosleep(&ts_req, &ts_rem);
 #else
-                 if (i != 1) Sleep(TIMESleep / 1000000);
+                  if (i != 1) Sleep(TIMESleep / 1000000);
 #endif
-                 try 
-                 {
-                         obj = orb->resolve_initial_references("RootPOA") ;
-                         if(!CORBA::is_nil(obj))
-                                 poa = PortableServer::POA::_narrow(obj) ;
-                         pman = poa->the_POAManager();
-                         // NB. You can activate the POA before or after
-                         // activating objects in that POA.
-                         
-                         // This activates the object in the root POA (by default), and
-                         // returns a reference to it.
-                         //NB. You can't use SALOME_NamingService class because it uses MESSAGE macro
-                         //Otherwise, you will get segmentation fault.   
-                         //Get initial naming context
-                         if(!CORBA::is_nil(orb)) 
-                                 theObj = orb->resolve_initial_references("NameService");
-                         //Narrow to NamingContext
-                         if (!CORBA::is_nil(theObj))
-                                 inc = CosNaming::NamingContext::_narrow(theObj);
-                 } catch(CORBA::COMM_FAILURE&) {
-                         //cout<<"Logger Server: CORBA::COMM_FAILURE: Unable to contact the Naming Service"<<endl;
-                 } catch(...) {
-                         //cout<<"Logger Server: Unknown exception dealed with Naming Service" <<endl;
-                 }
-                 
-                 if (!CORBA::is_nil(inc)) {
-                         //      cout<<"Logger Server: Naming Service was found"<<endl; 
-                         break;
-                 }
+                  try 
+                  {
+                          obj = orb->resolve_initial_references("RootPOA") ;
+                          if(!CORBA::is_nil(obj))
+                                  poa = PortableServer::POA::_narrow(obj) ;
+                          pman = poa->the_POAManager();
+                          // NB. You can activate the POA before or after
+                          // activating objects in that POA.
+                          
+                          // This activates the object in the root POA (by default), and
+                          // returns a reference to it.
+                          //NB. You can't use SALOME_NamingService class because it uses MESSAGE macro
+                          //Otherwise, you will get segmentation fault.   
+                          //Get initial naming context
+                          if(!CORBA::is_nil(orb)) 
+                                  theObj = orb->resolve_initial_references("NameService");
+                          //Narrow to NamingContext
+                          if (!CORBA::is_nil(theObj))
+                                  inc = CosNaming::NamingContext::_narrow(theObj);
+                  } catch(CORBA::COMM_FAILURE&) {
+                          //cout<<"Logger Server: CORBA::COMM_FAILURE: Unable to contact the Naming Service"<<endl;
+                  } catch(...) {
+                          //cout<<"Logger Server: Unknown exception dealed with Naming Service" <<endl;
+                  }
+                  
+                  if (!CORBA::is_nil(inc)) {
+                          //      cout<<"Logger Server: Naming Service was found"<<endl; 
+                          break;
+                  }
       }
       if (argc == 1)
-                 myLogger = new Logger();
+                  myLogger = new Logger();
       else
-                 myLogger = new Logger(argv[1]);
+                  myLogger = new Logger(argv[1]);
 
+      myLogger->SetOrb(orb);
       myLoggerRef = myLogger->_this();
       CosNaming::Name name;
       name.length(1);
@@ -95,10 +115,10 @@ int main(int argc, char **argv)
       orb->run() ;
       orb->destroy() ;
     }  
-  catch(CORBA::COMM_FAILURE& ex)
-       {
+  catch(CORBA::COMM_FAILURE&)
+        {
       std::cerr << "Caught system exception COMM_FAILURE -- unable to contact the "
-          << "object." << std::endl;
+           << "object." << std::endl;
     }
   catch(CORBA::SystemException&) 
     {