Salome HOME
Merge branch 'eap/23514'
[modules/kernel.git] / src / SALOMETraceCollector / SALOMETraceCollector.cxx
index b1286b9159ce0e64d7e34e80849e5aea333deed2..655230147937cfd490d521a2cbc486083459327d 100644 (file)
@@ -1,29 +1,30 @@
-//  Copyright (C) 2004  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. 
-// 
-//  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. 
-// 
-//  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
+// 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.
 //
+// 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.
 //
+// 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
 //
+
 //  File   : LocalTraceCollector.cxx
 //  Author : Paul RASCLE (EDF)
 //  Module : KERNEL
 //  $Header$
-
+//
 #include <SALOMEconfig.h>
 
 #include <iostream>
@@ -32,8 +33,6 @@
 #include <cstdlib>
 #include <omniORB4/CORBA.h>
 
-using namespace std;
-
 #include "SALOMETraceCollector.hxx"
 #include "TraceCollector_WaitForServerReadiness.hxx"
 #include <SALOMEconfig.h>
@@ -46,7 +45,7 @@ CORBA::ORB_ptr SALOMETraceCollector::_orb = 0;
 // ============================================================================
 /*!
  *  This class is for use with CORBA, inside SALOME.
- *  Type of trace (and corresponding class) is choosen in LocalTraceBufferPool.
+ *  Type of trace (and corresponding class) is chosen in LocalTraceBufferPool.
  *
  *  Guarantees a unique object instance of the class (singleton thread safe)
  *  a separate thread for loop to print traces is launched.
@@ -60,21 +59,21 @@ BaseTraceCollector* SALOMETraceCollector::instance()
       int ret;
       ret = pthread_mutex_lock(&_singletonMutex); // acquire lock to be alone
       if (_singleton == 0)                     // another thread may have got
-       {                                      // the lock after the first test
-         BaseTraceCollector* myInstance = new SALOMETraceCollector();
-         int argc=0;
-         char *_argv=0;
-         char ** argv = &_argv;
-         _orb = CORBA::ORB_init (argc, argv);
-
-         sem_init(&_sem,0,0); // to wait until run thread is initialized
-         pthread_t traceThread;
-         int bid = 0;
-         int re2 = pthread_create(&traceThread, NULL,
-                                  SALOMETraceCollector::run, (void *)bid);
-         sem_wait(&_sem);
-         _singleton = myInstance; // _singleton known only when init done
-       }
+        {                                      // the lock after the first test
+          BaseTraceCollector* myInstance = new SALOMETraceCollector();
+          int argc=0;
+          char *_argv=0;
+          char ** argv = &_argv;
+          _orb = CORBA::ORB_init (argc, argv);
+
+          sem_init(&_sem,0,0); // to wait until run thread is initialized
+          pthread_t traceThread;
+          int bid = 0;
+          pthread_create(&traceThread, NULL,
+                                   SALOMETraceCollector::run, &bid);
+          sem_wait(&_sem);
+          _singleton = myInstance; // _singleton known only when init done
+        }
       ret = pthread_mutex_unlock(&_singletonMutex); // release lock
     }
   return _singleton;
@@ -83,7 +82,7 @@ BaseTraceCollector* SALOMETraceCollector::instance()
 // ============================================================================
 /*!
  *  In a separate thread, loop to print traces.
- *  Mutex garantees intialisation on instance method is done and only one run
+ *  Mutex guarantees intialisation on instance method is done and only one run
  *  allowed (double check ...)
  *  Loop until there is no more buffer to print,
  *  and no ask for end from destructor.
@@ -108,14 +107,14 @@ void* SALOMETraceCollector::run(void *bid)
     m_pInterfaceLogger = SALOME_Logger::Logger::_narrow(obj);
   if (CORBA::is_nil(m_pInterfaceLogger))
     {
-      cerr << "Logger server not found ! Abort" << endl;
-      cerr << flush ; 
+      std::cerr << "Logger server not found ! Abort" << std::endl;
+      std::cerr << std::flush ; 
       exit(1);
     } 
   else
     {
       CORBA::String_var LogMsg =
-       CORBA::string_dup("\n---Init logger trace---\n");
+        CORBA::string_dup("\n---Init logger trace---\n");
       m_pInterfaceLogger->putMessage(LogMsg);
       DEVTRACE("Logger server found");
     }
@@ -126,44 +125,44 @@ void* SALOMETraceCollector::run(void *bid)
   while ((!_threadToClose) || myTraceBuffer->toCollect() )
     {
       if (_threadToClose)
-       {
-         DEVTRACE("SALOMETraceCollector _threadToClose");
-         //break;
-       }
+        {
+          DEVTRACE("SALOMETraceCollector _threadToClose");
+          //break;
+        }
 
-      int fullBuf = myTraceBuffer->retrieve(myTrace);
+      myTraceBuffer->retrieve(myTrace);
       if (!CORBA::is_nil(_orb))
-       {
-         if (myTrace.traceType == ABORT_MESS)
-           {
-             stringstream abortMessage("");
-#ifndef WNT
-             abortMessage << "INTERRUPTION from thread "
-                          << myTrace.threadId << " : " << myTrace.trace;
+        {
+          if (myTrace.traceType == ABORT_MESS)
+            {
+              std::stringstream abortMessage("");
+#ifndef WIN32
+              abortMessage << "INTERRUPTION from thread "
+                           << myTrace.threadId << " : " << myTrace.trace;
 #else
-             abortMessage << "INTERRUPTION from thread "
-                          << (void*)&myTrace.threadId 
-                          << " : " << myTrace.trace;
+              abortMessage << "INTERRUPTION from thread "
+                           << (void*)&myTrace.threadId 
+                           << " : " << myTrace.trace;
 #endif
-             CORBA::String_var LogMsg =
-               CORBA::string_dup(abortMessage.str().c_str());
-             m_pInterfaceLogger->putMessage(LogMsg);
-             exit(1);
-           }
-         else
-           {
-             stringstream aMessage("");
-#ifndef WNT
-             aMessage << "th. " << myTrace.threadId
+              CORBA::String_var LogMsg =
+                CORBA::string_dup(abortMessage.str().c_str());
+              m_pInterfaceLogger->putMessage(LogMsg);
+              exit(1);
+            }
+          else
+            {
+              std::stringstream aMessage("");
+#ifndef WIN32
+              aMessage << "th. " << myTrace.threadId
 #else
-               aMessage << "th. " << (void*)&myTrace.threadId
+                aMessage << "th. " << (void*)&myTrace.threadId
 #endif
-                      << " " << myTrace.trace;
-             CORBA::String_var LogMsg =
-               CORBA::string_dup(aMessage.str().c_str());
-             m_pInterfaceLogger->putMessage(LogMsg);
-           }
-       }
+                       << " " << myTrace.trace;
+              CORBA::String_var LogMsg =
+                CORBA::string_dup(aMessage.str().c_str());
+              m_pInterfaceLogger->putMessage(LogMsg);
+            }
+        }
     }
   pthread_exit(NULL);
   return NULL;
@@ -186,14 +185,14 @@ SALOMETraceCollector:: ~SALOMETraceCollector()
       _threadToClose = 1;
       myTraceBuffer->insert(NORMAL_MESS,"end of trace\n"); // to wake up thread
       if (_threadId)
-       {
-         int ret = pthread_join(*_threadId, NULL);
-         if (ret) cerr << "error close SALOMETraceCollector : "<< ret << endl;
-         else DEVTRACE("SALOMETraceCollector destruction OK");
+        {
+          int ret = pthread_join(*_threadId, NULL);
+          if (ret) std::cerr << "error close SALOMETraceCollector : "<< ret << std::endl;
+          else DEVTRACE("SALOMETraceCollector destruction OK");
           delete _threadId;
-         _threadId = 0;
-         _threadToClose = 0;
-       }
+          _threadId = 0;
+          _threadToClose = 0;
+        }
       _singleton = 0;
     }
   ret = pthread_mutex_unlock(&_singletonMutex); // release lock