]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
PR: comment not useful traces
authorprascle <prascle>
Fri, 16 Dec 2005 14:52:59 +0000 (14:52 +0000)
committerprascle <prascle>
Fri, 16 Dec 2005 14:52:59 +0000 (14:52 +0000)
src/Container/Component_i.cxx
src/Container/Container_i.cxx
src/Container/SALOME_ContainerManager.cxx
src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx
src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i
src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx
src/NamingService/SALOME_NamingService.cxx
src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx
src/ResourcesManager/SALOME_ResourcesManager.cxx

index 258a7acf7e8c303429fd2f2a661bd610e0791e45..feec099fde99b9a43b01daa2e223e6cb6d02bde5 100644 (file)
@@ -250,7 +250,7 @@ void Engines_Component_i::destroy()
 
 Engines::Container_ptr Engines_Component_i::GetContainerRef()
 {
-  MESSAGE("Engines_Component_i::GetContainerRef");
+  //  MESSAGE("Engines_Component_i::GetContainerRef");
   CORBA::Object_ptr o = _poa->id_to_reference(*_contId) ;
   return Engines::Container::_narrow(o);
 }
index 8d21a5809ee35a23b8c26283bf65d11e33d847ea..48b3ac787f6d87481e090fd2f0a8d2116819ebf8 100644 (file)
@@ -220,7 +220,7 @@ char* Engines_Container_i::name()
 char* Engines_Container_i::getHostName()
 {
   string s = GetHostname();
-  MESSAGE("Engines_Container_i::getHostName " << s);
+  //  MESSAGE("Engines_Container_i::getHostName " << s);
   return CORBA::string_dup(s.c_str()) ;
 }
 
index ddd796bb8928f66be3ab6bc9ef3d5002708e2512..9bcf6437187e941bbe8b1f2a0495cae2df6715ca 100644 (file)
@@ -249,7 +249,7 @@ GetFittingResources(const Engines::MachineParameters& params,
       //return ret;
     }
 
-  MESSAGE("Machine list length "<<vec.size());
+  //  MESSAGE("Machine list length "<<vec.size());
   ret->length(vec.size());
   for(unsigned int i=0;i<vec.size();i++)
     {
index 31dec183569723d77a763acffb4eef52549c629f..439d10fb5e19a8246d8c256ed198a2b257908ff9 100644 (file)
@@ -244,13 +244,13 @@ SALOME_LifeCycleCORBA::FindOrLoad_Component(const char *containerName,
     }
   params->isMPI = false;
   SCRUTE(params->container_name);
-  SCRUTE(params->hostname);
-  SCRUTE(params->OS);
-  SCRUTE(params->mem_mb);
-  SCRUTE(params->cpu_clock);
-  SCRUTE(params->nb_proc_per_node);
-  SCRUTE(params->nb_node);
-  SCRUTE(params->isMPI);
+//   SCRUTE(params->hostname);
+//   SCRUTE(params->OS);
+//   SCRUTE(params->mem_mb);
+//   SCRUTE(params->cpu_clock);
+//   SCRUTE(params->nb_proc_per_node);
+//   SCRUTE(params->nb_node);
+//   SCRUTE(params->isMPI);
   free(stContainer);
   return FindOrLoad_Component(params,componentName);
   
@@ -381,8 +381,8 @@ _FindComponent(const Engines::MachineParameters& params,
 
   const char *containerName = params.container_name;
   int nbproc = NbProc(params);
-  MESSAGE("_FindComponent, required " << containerName <<
-         " " << componentName << " " << nbproc);
+//   MESSAGE("_FindComponent, required " << containerName <<
+//       " " << componentName << " " << nbproc);
 
   Engines::MachineList_var machinesOK = new Engines::MachineList;
 
@@ -392,7 +392,7 @@ _FindComponent(const Engines::MachineParameters& params,
   for(unsigned int i=0; i<listOfMachines.length(); i++)
     {
       const char *currentMachine=listOfMachines[i];
-      MESSAGE("_FindComponent, look at " << currentMachine);
+//       MESSAGE("_FindComponent, look at " << currentMachine);
       CORBA::Object_var obj = _NS->ResolveComponent(currentMachine,
                                                    containerName,
                                                    componentName,
index 215d55985d9a03483c720fc202ec963588372d68..eec1217f7b987b04d95ebc9d85b34d03df854d3b 100644 (file)
@@ -30,8 +30,8 @@
 
 %typemap(python,out) Engines::Container_ptr, Engines::Component_ptr
 {
-  MESSAGE("typemap out on CORBA object ptr");
-  SCRUTE($1);
+  //MESSAGE("typemap out on CORBA object ptr");
+  //SCRUTE($1);
 
   // --- Get the Python orb
 
   char **argv = &xargv;
   CORBA::ORB_var ORB = CORBA::ORB_init(argc, argv);
   string s =  ORB->object_to_string($1);
-  SCRUTE(s);
+  //SCRUTE(s);
   PyObject * tmp = PyString_FromString(s.c_str());
-  SCRUTE(tmp);
+  //SCRUTE(tmp);
   $result = PyObject_CallMethod(orb, "string_to_object", "O", tmp);
-  SCRUTE($result);
+  //SCRUTE($result);
 }
 
 
index 87e57d287f72791873bf320733611b81353707da..b6def6a59e20e95c81f827f6a31af45655768a89 100644 (file)
@@ -536,8 +536,8 @@ SALOME_ModuleCatalogImpl::findComponent(const string & name)
       {
        if (name.compare(_general_module_list[ind].name) == 0)
          {
-           if(MYDEBUG) MESSAGE("Component named " << name 
-                               << " found in the general catalog");
+           //      if(MYDEBUG) MESSAGE("Component named " << name 
+           //                  << " found in the general catalog");
            C_parser = &(_general_module_list[ind]);
            break;
          }
@@ -638,7 +638,7 @@ void SALOME_ModuleCatalogImpl::duplicate
   
   // duplicate service list
   unsigned int _length = I_parser.services.size();
-  if(MYDEBUG) SCRUTE(_length);
+  //  if(MYDEBUG) SCRUTE(_length);
   //  I_corba.interfaceservicelist 
   //  = new SALOME_ModuleCatalog::ListOfInterfaceService;
   I_corba.interfaceservicelist.length(_length);
@@ -700,7 +700,7 @@ void SALOME_ModuleCatalogImpl::duplicate
   
   // duplicate out DataStreamParameters
   _length = S_parser.outDataStreamParameters.size();
-  if(MYDEBUG) SCRUTE(_length);
+  //  if(MYDEBUG) SCRUTE(_length);
   S_corba.ServiceoutDataStreamParameter.length(_length);
 
 #ifndef WNT
index bce5f23380f99cd43714396c7f2400a235ebdcaa..0c046c9ea8b3a9a31a8fe446bc1d1a027c67f85a 100644 (file)
@@ -344,7 +344,7 @@ void SALOME_NamingService::Register(CORBA::Object_ptr ObjRef,
 CORBA::Object_ptr SALOME_NamingService::Resolve(const char* Path)
   throw(ServiceUnreachable)
 {
-  MESSAGE("BEGIN OF Resolve: " << Path);
+//   MESSAGE("BEGIN OF Resolve: " << Path);
 
   Utils_Locker lock (&_myMutex);
 
@@ -430,10 +430,10 @@ CORBA::Object_ptr SALOME_NamingService::Resolve(const char* Path)
 CORBA::Object_ptr SALOME_NamingService::ResolveFirst(const char* Path)
   throw(ServiceUnreachable)
 {
-  MESSAGE("ResolveFirst");
+//   MESSAGE("ResolveFirst");
 
   Utils_Locker lock (&_myMutex);
-  SCRUTE(Path);
+//   SCRUTE(Path);
 
   string thePath = Path;
   string basePath = "";
@@ -445,10 +445,10 @@ CORBA::Object_ptr SALOME_NamingService::ResolveFirst(const char* Path)
     {
       basePath = thePath.substr(0, idx);
       name = thePath.substr(idx + 1);
-      SCRUTE(basePath);
+//       SCRUTE(basePath);
     }
 
-  SCRUTE(name);
+//   SCRUTE(name);
   CORBA::Object_ptr obj = CORBA::Object::_nil();
 
   bool isOk = false;
@@ -503,7 +503,7 @@ SALOME_NamingService::ResolveComponent(const char* hostname,
                                       const int nbproc)
   throw(ServiceUnreachable)
 {
-  MESSAGE("ResolveComponent");
+//   MESSAGE("ResolveComponent");
 
   Utils_Locker lock (&_myMutex);
 
@@ -791,7 +791,7 @@ throw(ServiceUnreachable)
 bool SALOME_NamingService::Change_Directory(const char* Path)
 throw(ServiceUnreachable)
 {
-  MESSAGE("BEGIN OF Change_Directory " << Path);
+//   MESSAGE("BEGIN OF Change_Directory " << Path);
   Utils_Locker lock (&_myMutex);
 
   string path(Path);
@@ -805,7 +805,7 @@ throw(ServiceUnreachable)
 
   if (path == "/")
     {
-      MESSAGE("Change_Directory is called to go to the root_context");
+//       MESSAGE("Change_Directory is called to go to the root_context");
       _current_context = _root_context;
       return true;
     }
@@ -823,7 +823,7 @@ throw(ServiceUnreachable)
   ASSERT(!CORBA::is_nil(current_context));
   
   if (path[path.length()-1] != '/') path += '/';
-  SCRUTE(path);
+//   SCRUTE(path);
   CosNaming::Name context_name;
   vector<string> splitPath;
   int dimension_resultat = _createContextNameDir(path.c_str(),
@@ -1010,7 +1010,7 @@ throw(ServiceUnreachable)
 vector<string> SALOME_NamingService::list_directory()
 throw(ServiceUnreachable)
 {
-  MESSAGE("list_directory");
+//   MESSAGE("list_directory");
   vector<string> dirList ;
   dirList.resize(0);
 
@@ -1038,8 +1038,8 @@ throw(ServiceUnreachable)
         }
     }
 
-  for (unsigned int ind = 0; ind < dirList.size(); ind++)
-    MESSAGE("list_directory : Object : " << dirList[ind]);
+//   for (unsigned int ind = 0; ind < dirList.size(); ind++)
+//     MESSAGE("list_directory : Object : " << dirList[ind]);
 
   binding_iterator->destroy();
 
@@ -1573,17 +1573,17 @@ SALOME_NamingService::_createContextNameDir(string path,
   context_name.length(dim);
   for (int i=0; i<dim; i++)
     {
-      SCRUTE(splitPath[i]);
+//       SCRUTE(splitPath[i]);
       context_name[i].id = CORBA::string_dup(splitPath[i].c_str());
       if (!endWithDelim && (i == dim-1)) // here, the last string is an object
        {
          context_name[i].kind = CORBA::string_dup("object");
-         MESSAGE("--- " <<splitPath[i] <<".object");
+//       MESSAGE("--- " <<splitPath[i] <<".object");
        }
       else
        {
          context_name[i].kind = CORBA::string_dup("dir");
-         MESSAGE("--- " <<splitPath[i] <<".dir");
+//       MESSAGE("--- " <<splitPath[i] <<".dir");
        }
     }
   return dim;
index f635431c7b496a2d79126c3165e493124e44b8f5..19f5f410ae42f50689c23962d4ff341eecba739f 100755 (executable)
@@ -75,7 +75,7 @@ SALOME_ResourcesCatalog_Handler(MapOfParserResourcesType& listOfResources):
 
 SALOME_ResourcesCatalog_Handler::~SALOME_ResourcesCatalog_Handler()
 {
-  MESSAGE("SALOME_ResourcesCatalog_Handler destruction");
+  //  MESSAGE("SALOME_ResourcesCatalog_Handler destruction");
 }
 
 //=============================================================================
@@ -101,7 +101,7 @@ SALOME_ResourcesCatalog_Handler::GetResourcesAfterParsing() const
 
 bool SALOME_ResourcesCatalog_Handler::startDocument()
 {
-  MESSAGE("Begin parse document");
+  //  MESSAGE("Begin parse document");
 
   // --- Empty private elements
 
@@ -261,21 +261,21 @@ bool SALOME_ResourcesCatalog_Handler::characters(const QString& chars)
 
 bool SALOME_ResourcesCatalog_Handler::endDocument()
 {
-  for (map<string, ParserResourcesType>::const_iterator iter =
-         _resources_list.begin();
-       iter != _resources_list.end();
-       iter++)
-    {
-      SCRUTE((*iter).second.Alias);
-      SCRUTE((*iter).second.UserName);
-      SCRUTE((*iter).second.AppliPath);
-      SCRUTE((*iter).second.PreReqFilePath);
-      SCRUTE((*iter).second.OS);
-      SCRUTE((*iter).second.Protocol);
-      SCRUTE((*iter).second.Mode);
-   }
+//   for (map<string, ParserResourcesType>::const_iterator iter =
+//          _resources_list.begin();
+//        iter != _resources_list.end();
+//        iter++)
+//     {
+//       SCRUTE((*iter).second.Alias);
+//       SCRUTE((*iter).second.UserName);
+//       SCRUTE((*iter).second.AppliPath);
+//       SCRUTE((*iter).second.PreReqFilePath);
+//       SCRUTE((*iter).second.OS);
+//       SCRUTE((*iter).second.Protocol);
+//       SCRUTE((*iter).second.Mode);
+//    }
   
-  MESSAGE("This is the end of document");
+//  MESSAGE("This is the end of document");
   return true;
 }
 
index e20832edffdc420151f41fbaee5f7878da25f7cf..434aa876b91fff24f6e5a40377e032d5a6b53a6c 100644 (file)
@@ -124,7 +124,7 @@ GetFittingResources(const Engines::MachineParameters& params,
                     const char *moduleName)
 throw(SALOME_Exception)
 {
-  MESSAGE("ResourcesManager::GetFittingResources");
+//   MESSAGE("ResourcesManager::GetFittingResources");
   vector <std::string> ret;
 
   // --- To be sure that we search in a correct list.
@@ -135,14 +135,14 @@ throw(SALOME_Exception)
 
   if (hostname[0] != '\0')
     {
-      MESSAGE("ResourcesManager::GetFittingResources : hostname specified" );
+//       MESSAGE("ResourcesManager::GetFittingResources : hostname specified" );
 
       if ( strcmp(hostname, "localhost") == 0 ||
            strcmp(hostname, GetHostname().c_str()) == 0 )
         {
-          MESSAGE("ResourcesManager::GetFittingResources : localhost" );
+//           MESSAGE("ResourcesManager::GetFittingResources : localhost" );
           ret.push_back(GetHostname().c_str());
-          MESSAGE("ResourcesManager::GetFittingResources : " << ret.size());
+//       MESSAGE("ResourcesManager::GetFittingResources : " << ret.size());
         }
 
       else if (_resourcesList.find(hostname) != _resourcesList.end())
@@ -197,7 +197,7 @@ throw(SALOME_Exception)
         ret[i++] = (*iter2)._hostName;
     }
 
-  MESSAGE("ResourcesManager::GetFittingResources : return" << ret.size());
+  //  MESSAGE("ResourcesManager::GetFittingResources : return" << ret.size());
   return ret;
 }