]> SALOME platform Git repositories - modules/yacs.git/blob - src/workloadmanager/Task.hxx
Salome HOME
Include sources of workloadmanager.
[modules/yacs.git] / src / workloadmanager / Task.hxx
1 // Copyright (C) 2020  CEA/DEN, 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, or (at your option) any later version.
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 #ifndef _TASK_H_
20 #define _TASK_H_
21
22 #include <string>
23
24 namespace WorkloadManager
25 {
26   struct ContainerType
27   {
28     float neededCores; // needed by WorkloadManager
29     // parameters for client use, not needed by WorkloadManager:
30     std::string name;
31     int id;
32   };
33   
34   struct Resource
35   {
36     unsigned int nbCores; // needed by WorkloadManager
37     // parameters for client use, not needed by WorkloadManager:
38     std::string name;
39     int id;
40   };
41   
42   struct Container
43   {
44     const ContainerType* type;
45     const Resource* resource;
46     unsigned int index; // worker index on the resource for this type
47   };
48
49   /**
50   * @todo write docs
51   */
52   class Task
53   {
54   public:
55     virtual const ContainerType* type()const =0;
56     virtual void run(const Container& c)=0;
57   };
58 }
59
60 #endif // _TASK_H_