]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
IPAL 18631 Remove Extra Messages from the Terminal in case of Release Mode V4_1_0_maintainance_20080620 V4_1_0_maintainance_20080623
authordmv <dmv@opencascade.com>
Thu, 19 Jun 2008 10:24:13 +0000 (10:24 +0000)
committerdmv <dmv@opencascade.com>
Thu, 19 Jun 2008 10:24:13 +0000 (10:24 +0000)
src/CONVERTOR/VISUConvertor.cxx
src/PIPELINE/VISUPipeLine.cxx
src/PIPELINE/VISU_OpenGLPointSpriteMapper.cxx
src/VISU_I/VISU_ColoredPrs3dCache_i.cc
src/VISU_I/VISU_CorbaMedConvertor.cxx
src/VISU_I/VISU_Table_i.cc
src/VVTK/VVTK_ImageWriter.cxx
src/VVTK/VVTK_ImageWriterMgr.cxx
src/VVTK/VVTK_Recorder.cxx

index df0b03f637519376efc4ed5b6e1786b24281a546..b24988dda96b2d588227dfd48c4e8ccc0362e762 100644 (file)
@@ -40,6 +40,8 @@
 #include <vtkCellType.h>
 #include <vtkUnstructuredGrid.h>
 
+#include "utilities.h"
+
 using namespace std;
 
 #ifdef DEBUG
@@ -100,7 +102,7 @@ void ParseMEDFile(const char* theFileName)
              vtkDataSet* aDataSet = aGaussMesh->GetOutput();
              aDataSet->Update();
              int aNbCells = aDataSet->GetNumberOfCells();
-             cout<<"aNbCells = "<<aNbCells<<endl;
+             MESSAGE("aNbCells = "<<aNbCells);
              for(int anCellId = 0; anCellId < aNbCells; anCellId++){
                VISU::TGaussPointID anObjID = aGaussMesh->GetObjID(anCellId);
                cout<<anObjID.first<<"; "<<anObjID.second<<"; "<<aGaussMesh->GetNodeVTKID(anObjID.first)<<endl;
@@ -150,7 +152,7 @@ void ParseMEDFile(const char* theFileName)
        for(anCellId = 0; anCellId < aNbCells; anCellId++){
          anObjID = anIDMapper->GetElemObjID(anCellId);
          aVTKID  = anIDMapper->GetElemVTKID(anObjID);
-         cout<<anObjID<<"; "<<aVTKID<<endl;
+         MESSAGE(anObjID<<"; "<<aVTKID);
        }
 #endif
       }
index f4fe7a1e6a81764bc49f17dc983f41e0163347ea..ae90f45050221a0fbae9b1b7097d00713a0a491a 100644 (file)
@@ -77,29 +77,28 @@ typedef VISU_ScalarMapPL TPresent;
 #include <vtk3DWidget.h>
 #include <vtkProperty.h>
 
+#include "utilities.h"
+
 void PrintMissing(){
-  cout<<"VISUPipeLine : ";
-  cout<<"missing operand after `VISUPipeLine'"<<endl;
-  
-  cout<<"VISUPipeLine : ";
-  cout<<"Try `VISUPipeLine -h' for more information."<<endl;
+  MESSAGE(std::endl << "VISUPipeLine : missing operand after `VISUPipeLine'" <<
+          std::endl << "VISUPipeLine : Try `VISUPipeLine -h' for more information.");
 }
 
 void PrintHelp(){
 
-  cout<<" Usage: VISUPipeLine filename meshname fieldname [timestamp] [component] "  <<endl;
-  cout<<"filename   - Name of the med file.                                       "  <<endl;
-  cout<<"meshname   - Name of the mesh in the med file.                           "  <<endl;
-  cout<<"fieldname  - Name of the mesh field.                                     "  <<endl;
-  cout<<"timestamp  - Number of the time stamp in the field 1,2,3 ... (optionally)"  <<endl;
-  cout<<"             by default used first time stamp.                           "  <<endl;
-  cout<<"component  - Number of the component in the field 0,1,2,3 ...(optionally)"  <<endl;
-  cout<<"             0 - modulus, 1 - first component, 2 - second component, ... "  <<endl;
-  cout<<"             by default used modulus.                                    "  <<endl;
+  MESSAGE_ADD(std::endl << " Usage: VISUPipeLine filename meshname fieldname [timestamp] [component] " <<
+              std::endl << "filename   - Name of the med file.                                       " <<
+              std::endl << "meshname   - Name of the mesh in the med file.                           " <<
+              std::endl << "fieldname  - Name of the mesh field.                                     " <<
+              std::endl << "timestamp  - Number of the time stamp in the field 1,2,3 ... (optionally)" <<
+              std::endl << "             by default used first time stamp.                           " <<
+              std::endl << "component  - Number of the component in the field 0,1,2,3 ...(optionally)" <<
+              std::endl << "             0 - modulus, 1 - first component, 2 - second component, ... " <<
+              std::endl << "             by default used modulus.                                    ");
 }
 
 void PrintErr(){
-  cout<<"***************************ERROR*****************************************"<<endl;
+  MESSAGE("***************************ERROR*****************************************");
 }
 
 
@@ -301,25 +300,25 @@ main(int argc, char** argv)
 
     if(!isMeshOk) {
       PrintErr();
-      cout<<"Can not find mesh with name `"<<aMeshName<<"' in the file `"<<aFileName<<"'"<<endl;
+      MESSAGE("Can not find mesh with name `"<<aMeshName<<"' in the file `"<<aFileName<<"'");
       PrintErr();
       return 1;
     }
     if(!isFieldOk) {
       PrintErr();
-      cout<<"Can not find field with name `"<<aFieldName<<"' on the mesh `"<<aMeshName<<"'"<<endl;
+      MESSAGE("Can not find field with name `"<<aFieldName<<"' on the mesh `"<<aMeshName<<"'");
       PrintErr();
       return 1; 
     }
     if(!isComponentOk) {
       PrintErr();
-      cout<<"Field field with name `"<<aFieldName<<"' containt less then `"<<aComponentNumber<<"' component(s)."<<endl;
+      MESSAGE("Field field with name `"<<aFieldName<<"' containt less then `"<<aComponentNumber<<"' component(s).");
       PrintErr();
       return 1;
     }
     if(!isTimeStampOk) {
       PrintErr();
-      cout<<"Can not find time stamp with number `"<<aTimeStampNumber<<"' on the field `"<<aFieldName<<"'"<<endl;
+      MESSAGE("Can not find time stamp with number `"<<aTimeStampNumber<<"' on the field `"<<aFieldName<<"'");
       PrintErr();
     }
   }catch(std::exception& exc){
index 85184e7841154019982c556e192e5a1b026094c0..8713339ff43c92e3e8a37dbc76bcfcf32d2a3c72 100755 (executable)
@@ -49,6 +49,8 @@
 #include <cmath>
 #include <string>
 
+#include "utilities.h"
+
 #ifndef WNT
 # ifndef GLX_GLXEXT_LEGACY
 #  define GLX_GLXEXT_LEGACY
@@ -557,11 +559,10 @@ void VISU_OpenGLPointSpriteMapper::RenderPiece(vtkRenderer *ren, vtkActor *act)
   {
 #ifdef _DEBUG_RENDERING_PERFORMANCE_
     // To control when the mapper is recalculated
-    cout<<"VISU_OpenGLPointSpriteMapper::RenderPiece - "
-       <<(this->GetMTime() > this->BuildTime)<<"; "
-       <<(input->GetMTime() > this->BuildTime)<<"; "
-       <<(act->GetProperty()->GetMTime() > this->BuildTime)<<"; "
-       <<endl;
+    MESSAGE( "VISU_OpenGLPointSpriteMapper::RenderPiece - "
+             <<(this->GetMTime() > this->BuildTime)<<"; "
+             <<(input->GetMTime() > this->BuildTime)<<"; "
+             <<(act->GetProperty()->GetMTime() > this->BuildTime)<<"; ");
 #endif
     // sets this->Colors as side effect
     this->MapScalars( act->GetProperty()->GetOpacity() );
index 348ff93b7d31c978118a7c25cb9f7661df7f0055..43225594807f7cf45c8df577d11771ae6b6ea3f3 100644 (file)
@@ -45,6 +45,8 @@
 
 #include <vtkRenderWindow.h>
 
+#include "utilities.h"
+
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
 #else
@@ -388,7 +390,7 @@ VISU::ColoredPrs3dCache_i
 ::CreateHolder(VISU::VISUType theType,
               const VISU::ColoredPrs3dHolder::BasicInput& theInput)
 {
-  if(MYDEBUG) cout << "CreateHolder " << theType << endl;
+  if(MYDEBUG) MESSAGE ("CreateHolder "<<theType);
   CORBA::Float aRequiredMemory = 0.0;
   if(IsPossible(theType, theInput, aRequiredMemory, "")){
     if(VISU::ColoredPrs3d_i* aColoredPrs3d = CreateColoredPrs3d(theType, theInput)){
@@ -500,7 +502,7 @@ VISU::ColoredPrs3dCache_i
 ::RegisterInHolder(VISU::ColoredPrs3d_i* thePrs3d,
                   const std::string& theHolderEntry)
 {
-  if(MYDEBUG) cout << "RegisterInHolder " << theHolderEntry.c_str() << " " << thePrs3d << endl;
+  if(MYDEBUG) MESSAGE("RegisterInHolder "<<theHolderEntry.c_str()<<" "<<thePrs3d);
   if(thePrs3d){
     TPrs3dPtr aPrs3d(thePrs3d);
     myHolderMap[theHolderEntry].push_front(aPrs3d);  
@@ -538,7 +540,7 @@ VISU::ColoredPrs3dCache_i
 ::GetLastVisitedPrs(VISU::ColoredPrs3dHolder_i* theHolder)
 {
   const TLastVisitedPrsList& aList = GetLastVisitedPrsList(theHolder);
-  if(MYDEBUG) cout << "GetLastVisitedPrs " << theHolder->GetEntry().c_str() << " " << aList.size() << endl;
+  if(MYDEBUG) MESSAGE("GetLastVisitedPrs " << theHolder->GetEntry().c_str() << " " << aList.size() );
   if( !aList.empty() )
     return aList.front();
   return VISU::TPrs3dPtr();
@@ -620,7 +622,7 @@ VISU::ColoredPrs3dCache_i
                       const VISU::ColoredPrs3dHolder::BasicInput& theInput,
                       VISU::View3D_ptr theView3D)
 {
-  if(MYDEBUG) cout << "VISU::ColoredPrs3dCache_i::UpdateLastVisitedPrs" << endl;
+  if(MYDEBUG) MESSAGE( "VISU::ColoredPrs3dCache_i::UpdateLastVisitedPrs" );
   TPrs3dPtr aPrs3d;
   try{
     TPrs3dPtr aLastVisitedPrs3d = GetLastVisitedPrs(theHolder);
@@ -631,12 +633,12 @@ VISU::ColoredPrs3dCache_i
     CORBA::Float aRequiredMemory = 0.0;
     if(aPrs3d = FindPrsByInput(aLastVisitedPrsList, theInput)){
       aLastVisitedPrsList.push_front(aPrs3d);
-      if(MYDEBUG) cout << "FindPrsByInput " << aPrs3d << endl;
+      if(MYDEBUG) MESSAGE( "FindPrsByInput " << aPrs3d );
     }else if(anIsCheckPossible && IsPossible(aPrsType, theInput, aRequiredMemory, aHolderEntry)){
       if( aRequiredMemory > 1.0 / VTK_LARGE_FLOAT )
        ClearMemory(aRequiredMemory, aHolderEntry);
       aPrs3d = CreatePrs(aPrsType, theInput, theHolder);
-      if(MYDEBUG) cout << "Created " << aPrs3d << endl;
+      if(MYDEBUG) MESSAGE( "Created " << aPrs3d );
     }else{
       aPrs3d = aLastVisitedPrsList.back();
       aPrs3d->SetResultObject(theInput.myResult);
@@ -646,7 +648,7 @@ VISU::ColoredPrs3dCache_i
       aPrs3d->SetTimeStampNumber(theInput.myTimeStampNumber);
       aLastVisitedPrsList.pop_back();
       aLastVisitedPrsList.push_front(aPrs3d);
-      if(MYDEBUG) cout << "Move only " << aPrs3d << endl;
+      if(MYDEBUG) MESSAGE( "Move only " << aPrs3d );
     }
     //if(MYDEBUG) PrintCache();
     
@@ -770,8 +772,8 @@ VISU::ColoredPrs3dCache_i
 {
   if(MYDEBUG)
   {
-    cout << "--------------CACHE-----------------" << endl;
-    cout << "Cache memory - " << GetMemorySize() << " Mb" << endl;
+    MESSAGE_BEGIN(std::endl << "--------------CACHE-----------------" );
+    MESSAGE_ADD(std::endl << "Cache memory - " << GetMemorySize() << " Mb" );
     TColoredPrs3dHolderMap::const_iterator aHolderIter = myHolderMap.begin();
     TColoredPrs3dHolderMap::const_iterator aHolderIterEnd = myHolderMap.end();
     for(; aHolderIter != aHolderIterEnd; aHolderIter++){
@@ -779,19 +781,18 @@ VISU::ColoredPrs3dCache_i
       TLastVisitedPrsList::const_iterator aPrsIter = aPrsList.begin();
       TLastVisitedPrsList::const_iterator aPrsIterEnd = aPrsList.end();
 
-      cout << "--------------------------" << endl;
-      cout << "Holder - " << aHolderIter->first.c_str() << endl;
-      cout << "Size   - " << aPrsList.size() << endl;
+      MESSAGE_ADD(std::endl << "--------------------------" );
+      MESSAGE_ADD(std::endl <<  "Holder - " << aHolderIter->first.c_str() );
+      MESSAGE_ADD(std::endl <<  "Size   - " << aPrsList.size() );
       for(; aPrsIter != aPrsIterEnd; aPrsIter++)
        if(TPrs3dPtr aPrs3d = *aPrsIter)
        {
-         cout << aPrs3d << " (" << aPrs3d->GetMemorySize() << " Mb)";
+         MESSAGE_ADD(std::endl <<  aPrs3d << " (" << aPrs3d->GetMemorySize() << " Mb)");
          if(aPrsIter == aPrsList.begin())
-           cout << " (device)";
-         cout << endl;
+           MESSAGE_ADD( " (device)" );
        }
     }
-    cout << "------------------------------------" << endl;
+    MESSAGE_END(std::endl <<  "------------------------------------" );
   }
 }
 
index aea4b36ce887d7d6606dbe4c9d7f89e36c10d3fa..f8da47ae56a7428063ab382efe3d88f56fa42f98 100644 (file)
@@ -37,6 +37,8 @@
 #include "ReceiverFactory.hxx"
 #include "MED_SliceArray.hxx"
 
+#include "utilities.h"
+
 #define USER_INTERLACE MED_FULL_INTERLACE
 
 #ifdef _DEBUG_
@@ -588,13 +590,13 @@ namespace
          else
            aGeom2ProfileIds = aSupport->getNumberFromFile(aMGeom);
          int aLen = aGeom2ProfileIds->length();
-         if(MYDEBUG) MESSAGE(" - aMGeom="<<aMGeom<<"; aNbCells="<<aLen);
+         if(MYDEBUG) MESSAGE_BEGIN(" - aMGeom="<<aMGeom<<"; aNbCells="<<aLen);
          for(int i = 0; i < aLen; i++){
            int anId = aGeom2ProfileIds[i];
            aGeom2Profile.push_back(anId);
-           if(MYDEBUG) cout << "------------------------------->" << anId << endl;
+           if(MYDEBUG) MESSAGE_ADD(std::endl << "------------------------------->" << anId);
          }
-         if(MYDEBUG) cout << endl;
+         if(MYDEBUG) MESSAGE_END(" ");
        } catch(...) {
          continue;
        }
index 064b7a0afe1074f484876bc0abf1eefc0e453ad4..2b8189ef5d37d62dbb7a4fe569441fca8a817065 100644 (file)
@@ -36,6 +36,8 @@
 #include "VISU_TableReader.hxx"
 #include "VISU_ConvertorUtils.hxx"
 
+#include "utilities.h"
+
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
 #else
@@ -1199,7 +1201,7 @@ VISU::ImportTables(const char* theFileName, SALOMEDS::Study_ptr theStudy)
     SALOMEDS::SObject_var aRealObject = aStudyBuilder->NewObject(aFileObject);
     anAttr = aStudyBuilder->FindOrCreateAttribute(aRealObject, "AttributeName");
     aName = SALOMEDS::AttributeName::_narrow(anAttr);
-    if(MYDEBUG) cout<<"aTable2D.myTitle = "<<aTable2D.myTitle<<endl;
+    if(MYDEBUG) MESSAGE("aTable2D.myTitle = "<<aTable2D.myTitle);
     if ( aTable2D.myTitle != "" ) {
       aName->SetValue(aTable2D.myTitle.c_str());
     } else {
@@ -1216,7 +1218,7 @@ VISU::ImportTables(const char* theFileName, SALOMEDS::Study_ptr theStudy)
     int kEnd = aNewTable2D.myRows[0].myValues.size();
     aTableOfReal->SetNbColumns(kEnd);
     for(int j = 0, jEnd = aNewTable2D.myRows.size(); j < jEnd; j++){
-      if(MYDEBUG) cout<<"j = "<<j<<"; kEnd = "<<kEnd<<endl;
+      if(MYDEBUG) MESSAGE("j = "<<j<<"; kEnd = "<<kEnd);
 
       for(int k = 0; k < kEnd; k++){
        QString aVal = aNewTable2D.myRows[j].myValues[k].c_str();
index a411c0e291eb359af40b4a83cc7e7528521ab67b..489c19c02964397dbede866fd792cd8503fc265d 100755 (executable)
@@ -30,6 +30,8 @@
 
 #include <qsemaphore.h>
 
+#include "utilities.h"
+
 #include <vtkImageData.h>
 #include <vtkImageClip.h>
 #include <vtkJPEGWriter.h>
@@ -61,7 +63,7 @@ VVTK_ImageWriter
 VVTK_ImageWriter
 ::~VVTK_ImageWriter()
 {
-  if(MYDEBUG) cout<<"VVTK_ImageWriter::~VVTK_ImageWriter - this = "<<this<<endl;
+  if(MYDEBUG) MESSAGE("VVTK_ImageWriter::~VVTK_ImageWriter - this = "<<this);
 }
 
 
@@ -104,10 +106,10 @@ VVTK_ImageWriter
   aWriter->Delete();
   myImageData->Delete();
 
-  if(MYDEBUG) cout<<"VVTK_ImageWriter::run "<<
+  if(MYDEBUG) MESSAGE("VVTK_ImageWriter::run "<<
                "- this = "<<this<<
                "; total = "<<mySemaphore->total()<<
-               "; available = "<<mySemaphore->available()<<endl;
+               "; available = "<<mySemaphore->available() );
   *mySemaphore -= 1;
 }
 
index 027e1c39539478e119ae0d8fc264657b215806ba..28c1056aff7bafc2929a18570f3f8df4ae1a678d 100755 (executable)
@@ -33,8 +33,9 @@
 
 #include <qsemaphore.h>
 
-#include <limits>
+#include "utilities.h"
 
+#include <limits>
 
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
@@ -49,9 +50,9 @@ VVTK_ImageWriterMgr
   int aMax = std::numeric_limits<int>::max() / 2;
   mySemaphore = new QSemaphore(aMax);
   *mySemaphore += aMax;
-  if(MYDEBUG) cout<<"VVTK_ImageWriterMgr::VVTK_ImageWriterMgr "<<
+  if(MYDEBUG) MESSAGE("VVTK_ImageWriterMgr::VVTK_ImageWriterMgr "<<
                "- total = "<<mySemaphore->total()<<
-               "; available = "<<mySemaphore->available()<<endl;
+               "; available = "<<mySemaphore->available() );
 }
 
 
@@ -90,10 +91,10 @@ void
 VVTK_ImageWriterMgr
 ::Stop()
 {
-  if(MYDEBUG) cout<<"VVTK_ImageWriterMgr::Stop "<<
+  if(MYDEBUG) MESSAGE("VVTK_ImageWriterMgr::Stop "<<
                "- total = "<<mySemaphore->total()<<
-               "; available = "<<mySemaphore->available()<<endl;
-  if(MYDEBUG) cout<<"VVTK_ImageWriterMgr::Stop - *mySemaphore += "<<myThreads.size()<<endl;
+               "; available = "<<mySemaphore->available() );
+  if(MYDEBUG) MESSAGE("VVTK_ImageWriterMgr::Stop - *mySemaphore += "<<myThreads.size() );
   *mySemaphore += myThreads.size();
 
   for(size_t anId = 0, anEnd = myThreads.size(); anId < anEnd; anId++){
index f42b72520e9d1be599a6c7ab73b3a3e60fbc3d2d..935d0a71622172210fd28fbcfc62da1d032692dd 100755 (executable)
@@ -319,7 +319,7 @@ VVTK_Recorder
   myPaused = myPaused ? 0 : 1;
   if(myPaused && !myFrameIndexes.empty()){
     myFrameIndexes.back() *= -1;
-    if(MYDEBUG) cout<<"VVTK_Recorder::Pause - myFrameIndexes.back() = "<<myFrameIndexes.back()<<endl;
+    if(MYDEBUG) MESSAGE("VVTK_Recorder::Pause - myFrameIndexes.back() = "<<myFrameIndexes.back());
   }
 }
 
@@ -356,8 +356,8 @@ VVTK_Recorder
       myFrameIndexes.back() = abs(myFrameIndexes.back());
       double aPauseTime = fabs((double)(aFrameIndex - myFrameIndex - 1)) / myNbFPS;
       if(MYDEBUG) 
-       cout<<"VVTK_Recorder::DoRecord - aFrameIndex = "<<aFrameIndex<<
-         "; aPauseTime = "<<aPauseTime<<endl;
+       MESSAGE("VVTK_Recorder::DoRecord - aFrameIndex = "<<aFrameIndex<<
+         "; aPauseTime = "<<aPauseTime);
       myTimeStart += aPauseTime;
     }
 
@@ -369,7 +369,7 @@ VVTK_Recorder
   }
 
   myFrameIndexes.push_back(myFrameIndex);
-  if(MYDEBUG) cout<<"VVTK_Recorder::DoRecord - myFrameIndex = "<<myFrameIndex<<endl;
+  if(MYDEBUG) MESSAGE("VVTK_Recorder::DoRecord - myFrameIndex = "<<myFrameIndex);
 
   myRenderWindow->RemoveObserver(myCommand);
   myFilter->Modified();
@@ -445,7 +445,7 @@ VVTK_Recorder
     }
     std::string aString(aStream.str());
     system(aString.c_str());
-    if(MYDEBUG) cout<<"VVTK_Recorder::AddSkippedFrames - "<<aString<<endl;
+    if(MYDEBUG) MESSAGE("VVTK_Recorder::AddSkippedFrames - "<<aString);
   }
 }
 
@@ -470,7 +470,7 @@ VVTK_Recorder
   std::string aString(aStream.str());
   myErrorStatus = system(aString.c_str());
 
-  if(MYDEBUG) cout<<"VVTK_Recorder::MakeFileAVI - "<<aString<<endl;
+  if(MYDEBUG) MESSAGE("VVTK_Recorder::MakeFileAVI - "<<aString);
 
   QFileInfo aFileInfo(myName.c_str());
   QString aDirPath = aFileInfo.dirPath(TRUE);
@@ -485,6 +485,6 @@ VVTK_Recorder
   aCommand = 
     QString("rm ") + aDirPath + "/" + aBaseName + "*.jpeg";
 
-  if(MYDEBUG) cout<<"VVTK_Recorder::MakeFileAVI - "<<aCommand.latin1()<<endl;
+  if(MYDEBUG) MESSAGE("VVTK_Recorder::MakeFileAVI - "<<aCommand.latin1() );
   system(aCommand.latin1());
 }