X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FLauncher%2FLauncher.hxx;h=f459fca2cb5875464ccca5648d2bd8dd5b0c2c2d;hb=cfb73ea195567454579b199b2b109e6f9373646f;hp=e3f5dd19374788d6d061d313abb6e4e3807e224d;hpb=9fa492d2ea817a233c4371234786a9577ab007e4;p=modules%2Fkernel.git diff --git a/src/Launcher/Launcher.hxx b/src/Launcher/Launcher.hxx index e3f5dd193..f459fca2c 100644 --- a/src/Launcher/Launcher.hxx +++ b/src/Launcher/Launcher.hxx @@ -1,24 +1,25 @@ -// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2012 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 +// 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 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 // + #ifndef __LAUNCHER_HXX__ #define __LAUNCHER_HXX__ @@ -54,31 +55,39 @@ class LAUNCHER_EXPORT Launcher_cpp public: Launcher_cpp(); - ~Launcher_cpp(); + virtual ~Launcher_cpp(); // Main interface void createJob(Launcher::Job * new_job); void launchJob(int job_id); const char * getJobState(int job_id); void getJobResults(int job_id, std::string directory); + bool getJobDumpState(int job_id, std::string directory); + void stopJob(int job_id); void removeJob(int job_id); // Useful methods long createJobWithFile(std::string xmlExecuteFile, std::string clusterName); + std::map getJobs(); + void createBatchManagerForJob(Launcher::Job * job); + void addJobDirectlyToMap(Launcher::Job * new_job, const std::string job_reference); // Lib methods void SetResourcesManager( ResourcesManager_cpp* rm ) {_ResManager = rm;} + // Used by SALOME_Launcher + ResourcesManager_cpp *_ResManager; protected: + virtual void notifyObservers(const std::string & event_name, const std::string & event_data) {} + // Methods used by user interface methods #ifdef WITH_LIBBATCH Batch::BatchManager_eClient *FactoryBatchManager(ParserResourcesType& params); - std::map _batchmap; + std::map _batchmap; #endif ParserLauncherType ParseXmlFile(std::string xmlExecuteFile); - ResourcesManager_cpp *_ResManager; std::map _launcher_job_map; int _job_cpt; // job number counter pthread_mutex_t * _job_cpt_mutex; // mutex for job counter