ComputeService.h
1 
10 #ifndef SIMULATION_COMPUTESERVICE_H
11 #define SIMULATION_COMPUTESERVICE_H
12 
13 #include <map>
14 
15 #include <iostream>
16 #include <cfloat>
17 #include <climits>
18 
19 #include "wrench/services/Service.h"
20 #include "wrench/workflow/job/WorkflowJob.h"
21 
22 namespace wrench {
23 
24  class Simulation;
25 
26  class StandardJob;
27 
28  class PilotJob;
29 
30  class StorageService;
31 
35  class ComputeService : public Service {
36 
37  /***********************/
39  /***********************/
40 
41  friend class StandardJobExecutorTest;
42 
43  /***********************/
45  /***********************/
46 
47  friend class Simulation;
48 
49  public:
50 
54  static constexpr unsigned long ALL_CORES = ULONG_MAX;
55 
59  static constexpr double ALL_RAM = DBL_MAX;
60 
61 
62  /***********************/
64  /***********************/
65 
69 
70  virtual ~ComputeService() {}
71 
72  void stop() override;
73 
74  void submitJob(WorkflowJob *job, std::map<std::string, std::string> = {});
75 
76  void terminateJob(WorkflowJob *job);
77 
78  bool supportsStandardJobs();
79 
80  bool supportsPilotJobs();
81 
82  bool hasScratch();
83 
84  unsigned long getNumHosts();
85 
86  std::map<std::string, unsigned long> getNumCores();
87 
88  std::map<std::string, unsigned long> getNumIdleCores();
89 
90  unsigned long getTotalNumCores();
91 
92  unsigned long getTotalNumIdleCores();
93 
94  std::map<std::string, double> getMemoryCapacity();
95 
96  std::map<std::string, double> getCoreFlopRate();
97 
98  double getTTL();
99 
100  double getTotalScratchSpaceSize();
101 
102  double getFreeScratchSpaceSize();
103 
104  /***********************/
106  /***********************/
107 
108  /***********************/
110  /***********************/
111 
112  virtual void
113  submitStandardJob(StandardJob *job, std::map<std::string, std::string> &service_specific_arguments) = 0;
114 
115  virtual void submitPilotJob(PilotJob *job, std::map<std::string, std::string> &service_specific_arguments) = 0;
116 
117  virtual void terminateStandardJob(StandardJob *job) = 0;
118 
119  virtual void terminatePilotJob(PilotJob *job) = 0;
120 
121  ComputeService(const std::string &hostname,
122  std::string service_name,
123  std::string mailbox_name_prefix,
124  double scratch_space_size);
125 
126 
127 
128  protected:
129 
130  ComputeService(const std::string &hostname,
131  std::string service_name,
132  std::string mailbox_name_prefix,
133  StorageService *scratch_space);
134 
137  std::shared_ptr<StorageService> scratch_space_storage_service_shared_ptr;
138 
139  /***********************/
141  /***********************/
142 
143  /***********************/
145  /***********************/
146 
148  std::shared_ptr<StorageService> getScratchSharedPtr();
149 
150  /***********************/
152  /***********************/
153 
154  private:
155 
156  std::map<std::string, std::map<std::string, double>> getServiceResourceInformation();
157 
158  };
159 
160 
161 };
162 
163 #endif //SIMULATION_COMPUTESERVICE_H
unsigned long getTotalNumIdleCores()
Get the total idle core counts for all hosts of the compute service.
Definition: ComputeService.cpp:295
StorageService * getScratch()
Get the compute service&#39;s scratch storage space.
Definition: ComputeService.cpp:441
std::shared_ptr< StorageService > getScratchSharedPtr()
Get a shared pointer to the compute service&#39;s scratch storage space.
Definition: ComputeService.cpp:449
A service that can be added to the simulation and that can be used by a WMS when executing a workflow...
Definition: Service.h:26
static constexpr double ALL_RAM
A convenient constant to mean "use all ram of a physical host" whenever a ram capacity is needed when...
Definition: ComputeService.h:59
unsigned long getTotalNumCores()
Get the total core counts for all hosts of the compute service.
Definition: ComputeService.cpp:248
Abstraction of a job used for executing tasks in a Workflow.
Definition: WorkflowJob.h:31
unsigned long getNumHosts()
Get the number of hosts that the compute service manages.
Definition: ComputeService.cpp:193
void stop() override
Stop the compute service - must be called by the stop() method of derived classes.
Definition: ComputeService.cpp:32
double getFreeScratchSpaceSize()
Get the free space on the compute service&#39;s scratch storage space.
Definition: ComputeService.cpp:433
bool hasScratch()
Checks if the compute service has a scratch space.
Definition: ComputeService.cpp:457
std::string hostname
The name of the host on which the daemon is running.
Definition: S4U_Daemon.h:47
bool supportsPilotJobs()
Get whether the compute service supports pilot jobs or not.
Definition: ComputeService.cpp:182
A pilot (i.e., non-standard) workflow job that can be submitted to a ComputeService by a WMS (via a J...
Definition: PilotJob.h:29
A standard (i.e., non-pilot) workflow job that can be submitted to a ComputeService by a WMS (via a J...
Definition: StandardJob.h:38
static constexpr unsigned long ALL_CORES
A convenient constant to mean "use all cores of a physical host" whenever a number of cores is needed...
Definition: ComputeService.h:54
A class that provides basic simulation methods.
Definition: Simulation.h:34
std::map< std::string, double > getCoreFlopRate()
Get the per-core flop rate of the compute service&#39;s hosts.
Definition: ComputeService.cpp:312
double getTotalScratchSpaceSize()
Get the total capacity of the compute service&#39;s scratch storage space.
Definition: ComputeService.cpp:425
StorageService * scratch_space_storage_service
A scratch storage service associated to the compute service.
Definition: ComputeService.h:136
The compute service base class.
Definition: ComputeService.h:35
void submitJob(WorkflowJob *job, std::map< std::string, std::string >={})
Submit a job to the compute service.
Definition: ComputeService.cpp:56
std::map< std::string, unsigned long > getNumIdleCores()
Get idle core counts for each of the compute service&#39;s host.
Definition: ComputeService.cpp:266
void terminateJob(WorkflowJob *job)
Terminate a previously-submitted job (which may or may not be running yet)
Definition: ComputeService.cpp:93
std::map< std::string, unsigned long > getNumCores()
Get core counts for each of the compute service&#39;s host.
Definition: ComputeService.cpp:219
static StorageService * SCRATCH
A convenient constant to mean "the scratch storage space" of a ComputeService. This is used to move d...
Definition: ComputeService.h:68
The storage service base class.
Definition: StorageService.h:35
std::map< std::string, double > getMemoryCapacity()
Get the RAM capacities for each of the compute service&#39;s hosts.
Definition: ComputeService.cpp:339
double getTTL()
Get the time-to-live of the compute service.
Definition: ComputeService.cpp:367
bool supportsStandardJobs()
Get whether the compute service supports standard jobs or not.
Definition: ComputeService.cpp:174
Definition: TerminalOutput.cpp:15
ComputeService(const std::string &hostname, std::string service_name, std::string mailbox_name_prefix, double scratch_space_size)
Constructor.
Definition: ComputeService.cpp:129