Salome HOME
ADD a end user module (services.py) to help the manipulation of SALOME KERNEL service...
[modules/kernel.git] / src / SALOMELocalTrace / FileTraceCollector.cxx
index f648dbead0c9b057813b99d5be328fb740a64afb..d7cdaf69ffda4251ca53fc8576814811031ec4ea 100644 (file)
@@ -1,36 +1,35 @@
-//  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-2011  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.
 //
+// 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   : FileTraceCollector.cxx
 //  Author : Paul RASCLE (EDF)
 //  Module : KERNEL
 //  $Header$
-
+//
 #include <iostream>
 #include <sstream>
 #include <fstream>
 #include <cstdlib>
 
-using namespace std;
-
 //#define _DEVDEBUG_
 #include "FileTraceCollector.hxx"
 
@@ -56,21 +55,21 @@ BaseTraceCollector* FileTraceCollector::instance(const char *fileName)
       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
-         DEVTRACE("FileTraceCollector:: instance()");
-         BaseTraceCollector* myInstance = new FileTraceCollector();
-         _fileName = fileName;
-         DEVTRACE(" _fileName: " << _fileName);
-
-         sem_init(&_sem,0,0); // to wait until run thread is initialized
-         pthread_t traceThread;
-         int bid;
-         int re2 = pthread_create(&traceThread, NULL,
-                                  FileTraceCollector::run, (void *)bid);
-         sem_wait(&_sem);
-         _singleton = myInstance; // _singleton known only when init done
-         DEVTRACE("FileTraceCollector:: instance()-end");
-       }
+        {                                      // the lock after the first test
+          DEVTRACE("FileTraceCollector:: instance()");
+          BaseTraceCollector* myInstance = new FileTraceCollector();
+          _fileName = fileName;
+          DEVTRACE(" _fileName: " << _fileName);
+
+          sem_init(&_sem,0,0); // to wait until run thread is initialized
+          pthread_t traceThread;
+          int bid = 0;
+          pthread_create(&traceThread, NULL,
+                                   FileTraceCollector::run, &bid);
+          sem_wait(&_sem);
+          _singleton = myInstance; // _singleton known only when init done
+          DEVTRACE("FileTraceCollector:: instance()-end");
+        }
       ret = pthread_mutex_unlock(&_singletonMutex); // release lock
     }
   return _singleton;
@@ -100,13 +99,13 @@ void* FileTraceCollector::run(void *bid)
   // --- opens a file with append mode
   //     so, several processes can share the same file
 
-  ofstream traceFile;
+  std::ofstream traceFile;
   const char *theFileName = _fileName.c_str();
   DEVTRACE("try to open trace file "<< theFileName);
-  traceFile.open(theFileName, ios::out | ios::app);
+  traceFile.open(theFileName, std::ios::out | std::ios::app);
   if (!traceFile)
     {
-      cerr << "impossible to open trace file "<< theFileName << endl;
+      std::cerr << "impossible to open trace file "<< theFileName << std::endl;
       exit (1);
     }
 
@@ -116,44 +115,44 @@ void* FileTraceCollector::run(void *bid)
   while ((!_threadToClose) || myTraceBuffer->toCollect() )
     {
       if (_threadToClose)
-       {
-         DEVTRACE("FileTraceCollector _threadToClose");
-         //break;
-       }
+        {
+          DEVTRACE("FileTraceCollector _threadToClose");
+          //break;
+        }
 
-      int fullBuf = myTraceBuffer->retrieve(myTrace);
+      myTraceBuffer->retrieve(myTrace);
       if (myTrace.traceType == ABORT_MESS)
-       {
-#ifndef WNT
-         traceFile << "INTERRUPTION from thread " << myTrace.threadId
-                   << " : " <<  myTrace.trace;
+        {
+#ifndef WIN32
+          traceFile << "INTERRUPTION from thread " << myTrace.threadId
+                    << " : " <<  myTrace.trace;
 #else
-         traceFile << "INTERRUPTION from thread "
-                   << (void*)(&myTrace.threadId)
-                   << " : " <<  myTrace.trace;
+          traceFile << "INTERRUPTION from thread "
+                    << (void*)(&myTrace.threadId)
+                    << " : " <<  myTrace.trace;
 #endif
-         traceFile.close();
-         cout << flush ;
-#ifndef WNT
-         cerr << "INTERRUPTION from thread " << myTrace.threadId
-              << " : " <<  myTrace.trace;
+          traceFile.close();
+          std::cout << std::flush ;
+#ifndef WIN32
+          std::cerr << "INTERRUPTION from thread " << myTrace.threadId
+               << " : " <<  myTrace.trace;
 #else
-         cerr << "INTERRUPTION from thread " << (void*)(&myTrace.threadId)
-              << " : " <<  myTrace.trace;
+          std::cerr << "INTERRUPTION from thread " << (void*)(&myTrace.threadId)
+               << " : " <<  myTrace.trace;
 #endif
-         cerr << flush ; 
-         exit(1);     
-       }
+          std::cerr << std::flush ; 
+          exit(1);     
+        }
       else
-       {
-#ifndef WNT
-         traceFile << "th. " << myTrace.threadId
-                   << " " << myTrace.trace;
+        {
+#ifndef WIN32
+          traceFile << "th. " << myTrace.threadId
+                    << " " << myTrace.trace;
 #else
-         traceFile << "th. " << (void*)(&myTrace.threadId)
-                   << " " << myTrace.trace;
+          traceFile << "th. " << (void*)(&myTrace.threadId)
+                    << " " << myTrace.trace;
 #endif
-       }
+        }
     }
   DEVTRACE("traceFile.close()");
   traceFile.close();
@@ -178,13 +177,14 @@ FileTraceCollector:: ~FileTraceCollector()
       _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 FileTraceCollector : "<< ret << endl;
-         else DEVTRACE("FileTraceCollector destruction OK");
-         _threadId = 0;
-         _threadToClose = 0;
-       }
+        {
+          int ret = pthread_join(*_threadId, NULL);
+          if (ret) std::cerr << "error close FileTraceCollector : "<< ret << std::endl;
+          else DEVTRACE("FileTraceCollector destruction OK");
+          delete _threadId;
+          _threadId = 0;
+          _threadToClose = 0;
+        }
       _singleton = 0;
     }
   ret = pthread_mutex_unlock(&_singletonMutex); // release lock