Salome HOME
untabify
[modules/smesh.git] / src / Tools / padder / meshjob / impl / MeshJobManager_i.hxx
1 // Copyright (C) 2011-2013  EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // Authors : Guillaume Boulant (EDF) - 01/03/2011
21
22 #ifndef _MESHJOBMANAGER_HXX_
23 #define _MESHJOBMANAGER_HXX_
24
25 // include the stubs generating from MESHJOB.idl
26 #include <SALOMEconfig.h>
27 #include CORBA_SERVER_HEADER(MESHJOB)
28 #include CORBA_SERVER_HEADER(SALOME_Component)
29 #include "SALOME_Component_i.hxx"
30
31 #include "SALOME_Launcher.hxx"
32 #include <vector>
33 #include <string>
34 #include <map>
35
36 class MeshJobManager_i: public virtual POA_MESHJOB::MeshJobManager,
37                         public Engines_Component_i
38 {
39 public:
40   MeshJobManager_i(CORBA::ORB_ptr orb, PortableServer::POA_ptr poa,
41                    PortableServer::ObjectId * contId,
42                    const char *instanceName, const char *interfaceName);
43   ~MeshJobManager_i();
44
45   bool           configure  (const char *configId,
46                              const MESHJOB::ConfigParameter & configParameter);
47   CORBA::Long    initialize (const MESHJOB::MeshJobParameterList & meshJobParameterList,
48                              const char *configId);
49   bool           start      (CORBA::Long jobId);
50   char*          getState   (CORBA::Long jobId);
51   MESHJOB::MeshJobResults * finalize(CORBA::Long jobId);
52   MESHJOB::MeshJobPaths *   getPaths(CORBA::Long jobId);
53   bool           clean      (CORBA::Long jobId);
54
55   char*          getLastErrorMessage();
56
57   static long JOBID_UNDEFINED;
58
59 private:
60   Engines::SalomeLauncher_var   _salomeLauncher;
61   Engines::ResourcesManager_var _resourcesManager;
62   
63   // This maps the config identifier to the config parameters. A
64   // config is a resource with additionnal data specifying the
65   // location of the binary program to be executed by the task
66   std::map<std::string, MESHJOB::ConfigParameter> _configMap;
67
68   // This maps a job identifier to its associated datetime tag. When
69   // a job is created during the initialize function, a datetime tag
70   // is associated to this job and can be used to characterized files
71   // and directories associated to this job.
72   std::map<long, long> _jobDateTimeMap;
73   std::map<long, MESHJOB::MeshJobPaths*> _jobPathsMap;
74
75   const char* _writeDataFile   (std::vector<MESHJOB::MeshJobParameter> listConcreteMesh,
76                                 std::vector<MESHJOB::MeshJobParameter> listSteelBarMesh);
77   const char* _writeScriptFile (const char * dataFileName, const char * configId);
78
79   std::vector<std::string> * _getResourceNames();
80
81   std::string _lastErrorMessage;
82
83 };
84
85 #endif
86