13 #include <wrench/managers/EnergyMeterService.h>
14 #include <wrench/managers/BandwidthMeterService.h>
15 #include "wrench/services/Service.h"
16 #include "wrench/wms/DynamicOptimization.h"
17 #include "wrench/wms/StaticOptimization.h"
18 #include "wrench/wms/scheduler/PilotJobScheduler.h"
19 #include "wrench/wms/scheduler/StandardJobScheduler.h"
20 #include "wrench/services/compute/cloud/CloudComputeService.h"
21 #include "wrench/workflow/execution_events/StandardJobCompletedEvent.h"
22 #include "wrench/workflow/execution_events/StandardJobFailedEvent.h"
23 #include "wrench/workflow/execution_events/PilotJobStartedEvent.h"
24 #include "wrench/workflow/execution_events/PilotJobExpiredEvent.h"
25 #include "wrench/workflow/execution_events/FileCopyCompletedEvent.h"
26 #include "wrench/workflow/execution_events/FileCopyFailedEvent.h"
27 #include "wrench/workflow/execution_events/TimerEvent.h"
28 #include "wrench/workflow/Workflow.h"
34 class CloudComputeService;
35 class VirtualizedClusterComputeService;
37 class NetworkProximityService;
38 class FileRegistryService;
62 WMS(std::unique_ptr<StandardJobScheduler> standard_job_scheduler,
63 std::unique_ptr<PilotJobScheduler> pilot_job_scheduler,
64 const std::set<std::shared_ptr<ComputeService>> &compute_services,
65 const std::set<std::shared_ptr<StorageService>> &storage_services,
66 const std::set<std::shared_ptr<NetworkProximityService>> &network_proximity_services,
67 std::shared_ptr<FileRegistryService> file_registry_service,
69 const std::string suffix);
74 void setTimer(
double date, std::string message);
78 std::shared_ptr<EnergyMeterService>
createEnergyMeter(
const std::map<std::string, double> &measurement_periods);
79 std::shared_ptr<EnergyMeterService>
createEnergyMeter(
const std::vector<std::string> &hostnames,
double measurement_period);
80 std::shared_ptr<BandwidthMeterService>
createBandwidthMeter(
const std::map<std::string, double> &measurement_periods);
81 std::shared_ptr<BandwidthMeterService>
createBandwidthMeter(
const std::vector<std::string> &linknames,
double measurement_period);
94 bool is_cloud = (std::type_index(
typeid(T)) == std::type_index(
typeid(
CloudComputeService)));
95 std::set<std::shared_ptr<T>> to_return;
96 for (
auto const &h : this->compute_services) {
98 auto shared_ptr = std::dynamic_pointer_cast<T>(h);
100 to_return.insert(shared_ptr);
103 auto shared_ptr_cloud = std::dynamic_pointer_cast<T>(h);
104 auto shared_ptr_vc = std::dynamic_pointer_cast<VirtualizedClusterComputeService>(h);
105 if (shared_ptr_cloud and (not shared_ptr_vc)) {
106 to_return.insert(shared_ptr_cloud);
175 std::set<std::shared_ptr<ComputeService>> compute_services;
177 std::set<std::shared_ptr<StorageService>> storage_services;
179 std::set<std::shared_ptr<NetworkProximityService>> network_proximity_services;
181 std::shared_ptr<FileRegistryService> file_registry_service;
184 std::shared_ptr<StandardJobScheduler> standard_job_scheduler;
186 std::shared_ptr<PilotJobScheduler> pilot_job_scheduler;
189 std::vector<std::unique_ptr<DynamicOptimization>> dynamic_optimizations;
191 std::vector<std::unique_ptr<StaticOptimization>> static_optimizations;
198 virtual int main() = 0;
205 #endif //WRENCH_WMS_H
void setTimer(double date, std::string message)
Sets a timer (which, when it goes off, will generate a TimerEvent)
Definition: WMS.cpp:445
virtual void processEventStandardJobCompletion(std::shared_ptr< StandardJobCompletedEvent >)
Process a standard job completion event.
Definition: WMS.cpp:222
std::shared_ptr< DataMovementManager > createDataMovementManager()
Instantiate and start a data movement manager.
Definition: WMS.cpp:342
virtual void processEventPilotJobStart(std::shared_ptr< PilotJobStartedEvent >)
Process a pilot job start event.
Definition: WMS.cpp:241
std::set< std::shared_ptr< StorageService > > getAvailableStorageServices()
Obtain the list of storage services available to the WMS.
Definition: WMS.cpp:136
void addStaticOptimization(std::unique_ptr< StaticOptimization >)
Add a static optimization to the list of optimizations. Optimizations are executed in order of insert...
Definition: WMS.cpp:76
WMS(std::unique_ptr< StandardJobScheduler > standard_job_scheduler, std::unique_ptr< PilotJobScheduler > pilot_job_scheduler, const std::set< std::shared_ptr< ComputeService >> &compute_services, const std::set< std::shared_ptr< StorageService >> &storage_services, const std::set< std::shared_ptr< NetworkProximityService >> &network_proximity_services, std::shared_ptr< FileRegistryService > file_registry_service, const std::string &hostname, const std::string suffix)
Constructor: a WMS with a workflow instance, a scheduler implementation, and a list of compute servic...
Definition: WMS.cpp:42
PilotJobScheduler * getPilotJobScheduler()
Get the WMS's pilot scheduler.
Definition: WMS.cpp:427
A helper daemon (co-located with and explicitly started by a WMS), which is used to handle all job ex...
Definition: JobManager.h:40
std::set< std::shared_ptr< NetworkProximityService > > getAvailableNetworkProximityServices()
Obtain the list of network proximity services available to the WMS.
Definition: WMS.cpp:145
StandardJobScheduler * getStandardJobScheduler()
Get the WMS's pilot scheduler.
Definition: WMS.cpp:436
virtual void processEventPilotJobExpiration(std::shared_ptr< PilotJobExpiredEvent >)
Process a pilot job expiration event.
Definition: WMS.cpp:250
A cloud-based compute service that manages a set of physical hosts and controls access to their resou...
Definition: CloudComputeService.h:37
A workflow (to be executed by a WMS)
Definition: Workflow.h:34
std::shared_ptr< EnergyMeterService > createEnergyMeter(const std::map< std::string, double > &measurement_periods)
Instantiate and start an energy meter.
Definition: WMS.cpp:368
void addWorkflow(Workflow *workflow, double start_time=0)
Assign a workflow to the WMS.
Definition: WMS.cpp:288
A helper daemon (co-located with a WMS) that handles data movement operations.
Definition: DataMovementManager.h:31
virtual void processEventTimer(std::shared_ptr< TimerEvent >)
Process a timer event.
Definition: WMS.cpp:277
std::set< std::shared_ptr< T > > getAvailableComputeServices()
Obtain the list of compute services available to the WMS.
Definition: WMS.h:93
void addDynamicOptimization(std::unique_ptr< DynamicOptimization >)
Add a dynamic optimization to the list of optimizations. Optimizations are executed in order of inser...
Definition: WMS.cpp:66
std::shared_ptr< WorkflowExecutionEvent > waitForNextEvent()
Wait for a workflow execution event.
Definition: WMS.cpp:213
virtual void processEventStandardJobFailure(std::shared_ptr< StandardJobFailedEvent >)
Process a standard job failure event.
Definition: WMS.cpp:232
virtual void processEventFileCopyCompletion(std::shared_ptr< FileCopyCompletedEvent >)
Process a file copy completion event.
Definition: WMS.cpp:259
std::shared_ptr< JobManager > createJobManager()
Instantiate and start a job manager.
Definition: WMS.cpp:321
virtual void processEventFileCopyFailure(std::shared_ptr< FileCopyFailedEvent >)
Process a file copy failure event.
Definition: WMS.cpp:268
A (mostly virtual) base class for implementing PilotJob scheduling algorithms to be used by a WMS.
Definition: PilotJobScheduler.h:26
Workflow * getWorkflow()
Get the workflow that was assigned to the WMS.
Definition: WMS.cpp:313
std::shared_ptr< FileRegistryService > getAvailableFileRegistryService()
Obtain the file registry service available to the WMS.
Definition: WMS.cpp:154
void waitForAndProcessNextEvent()
Wait for a workflow execution event and then call the associated function to process that event.
Definition: WMS.cpp:161
std::string hostname
The name of the host on which the daemon is running.
Definition: S4U_Daemon.h:51
A class that provides basic simulation methods. Once the simulation object has been explicitly or imp...
Definition: Simulation.h:46
std::shared_ptr< BandwidthMeterService > createBandwidthMeter(const std::map< std::string, double > &measurement_periods)
Instantiate and start a bandwidth meter.
Definition: WMS.cpp:398
A (mostly virtual) base class for implementing StandardJob scheduling algorithms to be used by a WMS.
Definition: StandardJobScheduler.h:31
void checkDeferredStart()
Check whether the WMS has a deferred start simulation time (likely the first call in the main() routi...
Definition: WMS.cpp:86
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
void runDynamicOptimizations()
Perform dynamic optimizations. Optimizations are executed in order of insertion.
Definition: WMS.cpp:116
void runStaticOptimizations()
Perform static optimizations. Optimizations are executed in order of insertion.
Definition: WMS.cpp:125
A workflow management system (WMS)
Definition: WMS.h:43