Salome HOME
Porting SALOME KERNEL to CMake
[modules/kernel.git] / src / Launcher / Launcher_Job.hxx
index f19e15a6424288670ab4052a966f1abc6d0d486a..bbff80f54a2a2f1d48085d95a21806130a5731a2 100644 (file)
@@ -1,20 +1,20 @@
-//  Copyright (C) 2009-2010  CEA/DEN, EDF R&D
+// Copyright (C) 2009-2012  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  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 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.
+// 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
+// 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
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 // Author: AndrĂ© RIBES - EDF R&D
@@ -22,7 +22,6 @@
 #ifndef _LAUNCHER_JOB_HXX_
 #define _LAUNCHER_JOB_HXX_
 
-#include <SALOMEconfig.h>
 #include "Launcher_Utils.hxx"
 #include "ResourcesManager.hxx"
 
@@ -32,6 +31,7 @@
 
 #include <string>
 #include <list>
+#include <map>
 #include <iostream>
 #include <sstream>
 #include <algorithm>
@@ -93,6 +93,11 @@ namespace Launcher
 
       std::string updateJobState();
 
+      void addSpecificParameter(const std::string & name,
+                                  const std::string & value);
+      const std::map<std::string, std::string> & getSpecificParameters();
+      virtual void checkSpecificParameters();
+
       // Checks
       void checkMaximumDuration(const std::string & maximum_duration);
       void checkResourceRequiredParams(const resourceParams & resource_required_params);
@@ -104,6 +109,9 @@ namespace Launcher
       // Xml method
       void addToXmlDocument(xmlNodePtr root_node);
 
+      void stopJob();
+      void removeJob();
+
       // Abstract class
       virtual void update_job() = 0;
 
@@ -128,6 +136,7 @@ namespace Launcher
       std::string _result_directory;
       std::list<std::string> _in_files;
       std::list<std::string> _out_files;
+      std::map<std::string, std::string> _specific_parameters;
       std::string _maximum_duration;
       long _maximum_duration_in_second;
       resourceParams _resource_required_params;