]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
windows port
authoradam <adam>
Fri, 19 Feb 2010 13:54:55 +0000 (13:54 +0000)
committeradam <adam>
Fri, 19 Feb 2010 13:54:55 +0000 (13:54 +0000)
src/Container/SALOME_ContainerManager.cxx
src/Launcher/Launcher_Job.cxx
src/Launcher/Launcher_Job.hxx
src/Launcher/Launcher_Job_Command.hxx
src/Launcher/Launcher_Job_PythonSALOME.hxx
src/Launcher/Launcher_Job_SALOME.hxx
src/Launcher/Launcher_Job_YACSFile.hxx
src/Launcher/SALOME_Launcher.cxx

index 9bc68c2cb4b7dbb3b7e51fc3ce03606f54d9f5b2..1b17f0dd66881786b710a1e9fe34bb89bebb583a 100644 (file)
@@ -214,7 +214,7 @@ SALOME_ContainerManager::GiveContainer(const Engines::ContainerParameters& param
   MESSAGE("[GiveContainer] starting with mode: " << mode);
 
   // Step 1: Find Container for find and findorstart mode
-  if (mode == "find" or mode == "findorstart")
+  if (mode == "find" || mode == "findorstart")
   {
     ret = FindContainer(params, params.resource_params.resList);
     if(!CORBA::is_nil(ret))
@@ -310,7 +310,7 @@ SALOME_ContainerManager::GiveContainer(const Engines::ContainerParameters& param
       Engines::Container_var cont=Engines::Container::_narrow(obj);
       if(!cont->_non_existent())
       {
-       if(std::string(params.mode.in())=="getorstart" or std::string(params.mode.in())=="get"){
+       if(std::string(params.mode.in())=="getorstart" || std::string(params.mode.in())=="get"){
          return cont._retn(); /* the container exists and params.mode is getorstart or get use it*/
        }
        else
@@ -1103,7 +1103,7 @@ SALOME_ContainerManager::checkPaCOParameters(Engines::ContainerParameters & para
   }
   // Check parallelLib
   std::string parallelLib = params.parallelLib.in();
-  if (parallelLib != "Mpi" and parallelLib != "Dummy")
+  if (parallelLib != "Mpi" && parallelLib != "Dummy")
   {
     INFOS("[checkPaCOParameters] parallelLib is not correctly defined");
     INFOS("[checkPaCOParameters] you can chosse between: Mpi and Dummy");
@@ -1123,7 +1123,7 @@ SALOME_ContainerManager::checkPaCOParameters(Engines::ContainerParameters & para
   std::string username = resource_definition->username.in();
   std::string applipath = resource_definition->applipath.in();
 
-  if (protocol == "" or username == "" or applipath == "")
+  if (protocol == "" || username == "" || applipath == "")
   {
     INFOS("[checkPaCOParameters] resource selected is not well defined");
     INFOS("[checkPaCOParameters] resource name: " << resource_definition->name.in());
index 286892386bd82a4d4428079bad5a0c6633be74ed..6e698d409306b406250a429ca7f488e2e04750b2 100644 (file)
@@ -75,10 +75,10 @@ void
 Launcher::Job::setState(const std::string & state)
 {
   // State of a Job: CREATED, QUEUED, RUNNING, FINISHED, FAILED
-  if (state != "CREATED" and
-      state != "QUEUED" and
-      state != "RUNNING" and
-      state != "FINISHED" and
+  if (state != "CREATED" &&
+      state != "QUEUED" &&
+      state != "RUNNING" &&
+      state != "FINISHED" &&
       state != "FAILED")
   {
     throw LauncherException("Bad state, this state does not exist: " + state);
@@ -354,9 +354,9 @@ Launcher::Job::getLaunchDate()
   std::string launch_date = ctime(&rawtime);
   int i = 0 ;
   for (;i < launch_date.size(); i++) 
-    if (launch_date[i] == '/' or 
-        launch_date[i] == '-' or 
-        launch_date[i] == ':' or
+    if (launch_date[i] == '/' ||
+        launch_date[i] == '-' ||
+        launch_date[i] == ':' ||
         launch_date[i] == ' ') 
       launch_date[i] = '_';
   launch_date.erase(--launch_date.end()); // Last caracter is a \n
index 853ca7953a9edd65a5001f66bc6816873313ebb3..aa40cb201eb6b58afe8e4c868fb17abc189a4c24 100644 (file)
@@ -22,6 +22,7 @@
 #define _LAUNCHER_JOB_HXX_
 
 #include <SALOMEconfig.h>
+#include "Launcher_Utils.hxx"
 #include "ResourcesManager.hxx"
 
 #include <stdlib.h>
@@ -44,7 +45,7 @@
 
 namespace Launcher
 {
-  class Job
+  class LAUNCHER_EXPORT Job
   {
     public:
       Job();
index a5ef7e4bf6e1097cd9dcda38da7f4f32525d6026..7f84d8254ef826719c82bffdbc1556844f34e470 100644 (file)
@@ -30,7 +30,7 @@
 
 namespace Launcher
 {
-  class Job_Command : virtual public Launcher::Job
+  class LAUNCHER_EXPORT Job_Command : virtual public Launcher::Job
   {
     public:
       Job_Command();
index 106d6f0b3b70c6683f5ec1cf2213203b316dd8b3..5abe22440dd09914406efc79b10e65472aea5319 100644 (file)
@@ -25,7 +25,7 @@
 
 namespace Launcher
 {
-  class Job_PythonSALOME : virtual public Launcher::Job_SALOME
+  class LAUNCHER_EXPORT Job_PythonSALOME : virtual public Launcher::Job_SALOME
   {
     public:
       Job_PythonSALOME();
index de351ab083681a960a8be21af6353d1e943d1f5f..93f4a67bbd0b218971a7e41d0362a477b17ac46b 100644 (file)
@@ -30,7 +30,7 @@
 
 namespace Launcher
 {
-  class Job_SALOME : virtual public Launcher::Job
+  class LAUNCHER_EXPORT Job_SALOME : virtual public Launcher::Job
   {
     public:
       Job_SALOME();
index b789226b1b5769a5577cf62d1e98d863927067d8..967af00a7b5a5c1168a73a7e2b6c46d8bbe11a50 100644 (file)
@@ -25,7 +25,7 @@
 
 namespace Launcher
 {
-  class Job_YACSFile : virtual public Launcher::Job_SALOME
+  class LAUNCHER_EXPORT Job_YACSFile : virtual public Launcher::Job_SALOME
   {
     public:
       Job_YACSFile();
index fafdc5e0f565cb9c80bbe484ebe14255d8c16bf9..8cec91830b1891df44d683cd51f4861c6ba9738e 100644 (file)
@@ -86,7 +86,7 @@ SALOME_Launcher::createJob(const Engines::JobParameters & job_parameters)
 {
   std::string job_type = job_parameters.job_type.in();
   
-  if (job_type != "command" and job_type != "yacs_file" and job_type != "python_salome")
+  if (job_type != "command" && job_type != "yacs_file" && job_type != "python_salome")
   {
     std::string message("SALOME_Launcher::createJob: bad job type: ");
     message += job_type;