11 #ifndef WRENCH_SIMULATION_H
12 #define WRENCH_SIMULATION_H
16 #include <nlohmann/json.hpp>
18 #include <wrench/simulation/SimulationOutput.h>
25 class NetworkProximityService;
26 class FileRegistryService;
27 class EnergyMeterService;
28 class BandwidthMeterService;
30 class BatchComputeService;
31 class BareMetalComputeService;
32 class CloudComputeService;
33 class VirtualizedClusterComputeService;
36 class SimulationOutput;
53 void init(
int *,
char **);
73 std::shared_ptr<T>
add(T *t) {
74 auto s = std::shared_ptr<T>(t);
83 std::map<std::string, double>
getEnergyConsumed(
const std::vector<std::string> &hostnames);
93 void stageFile(
WorkflowFile *file, std::shared_ptr<StorageService> ss, std::string directory_absolute_path);
100 static std::vector<std::string>
getRoute(std::string &src_host, std::string &dst_host);
102 double getLinkUsage(
const std::string &link_name,
bool record_as_time_stamp);
103 std::map<std::string, double>
getEnergyConsumed(
const std::vector<std::string> &hostnames,
bool record_as_time_stamps);
106 static bool isHostOn(std::string hostname);
110 static bool isLinkOn(std::string linkname);
115 void setPstate(
const std::string &hostname,
int pstate);
126 static void sleep(
double duration);
127 static void compute(
double flops);
135 void readFromDisk(
double num_bytes, std::string hostname, std::string mount_point);
137 std::string hostname,
138 std::string read_mount_point,
139 std::string write_mount_point);
140 void writeToDisk(
double num_bytes, std::string hostname, std::string mount_point);
164 std::unique_ptr<S4U_Simulation> s4u_simulation;
166 std::set<std::shared_ptr<WMS>> wmses;
168 std::set<std::shared_ptr<FileRegistryService>> file_registry_services;
170 std::set<std::shared_ptr<EnergyMeterService>> energy_meter_services;
172 std::set<std::shared_ptr<BandwidthMeterService>> bandwidth_meter_services;
174 std::set<std::shared_ptr<NetworkProximityService>> network_proximity_services;
176 std::set<std::shared_ptr<ComputeService>> compute_services;
178 std::set<std::shared_ptr<StorageService>> storage_services;
180 std::set<std::shared_ptr<MemoryManager>> memory_managers;
182 static int unique_disk_sequence_number;
186 void platformSanityCheck();
187 void checkSimulationSetup();
190 void startAllProcesses();
191 void addService(std::shared_ptr<ComputeService> service);
192 void addService(std::shared_ptr<StorageService> service);
193 void addService(std::shared_ptr<NetworkProximityService> service);
194 void addService(std::shared_ptr<WMS> service);
195 void addService(std::shared_ptr<FileRegistryService> service);
196 void addService(std::shared_ptr<EnergyMeterService> service);
197 void addService(std::shared_ptr<BandwidthMeterService> service);
198 void addService(std::shared_ptr<MemoryManager> memory_manager);
200 std::string getWRENCHVersionString() {
return WRENCH_VERSION_STRING; }
202 bool is_running =
false;
204 unsigned int on_state_change_callback_id;
206 static bool pagecache_enabled;
211 #endif //WRENCH_SIMULATION_H
void readWithMemoryCache(WorkflowFile *file, double n_bytes, std::shared_ptr< FileLocation > location)
Read file locally, only available if writeback is activated.
Definition: Simulation.cpp:786
static std::map< std::string, std::vector< std::string > > getHostnameListByCluster()
Get the list of names of all the hosts in each cluster composing the platform.
Definition: Simulation.cpp:337
static double getMemoryCapacity()
Get the memory_manager_service capacity of the host on which the calling process is running.
Definition: Simulation.cpp:1020
std::shared_ptr< T > add(T *t)
Method to add a service to the simulation.
Definition: Simulation.h:73
static std::vector< std::string > getLinknameList()
Get the list of names of all the links in the platform.
Definition: Simulation.cpp:262
static double getMinPowerConsumption(const std::string &hostname)
Get the minimum power consumption for the host (i.e., idling) at its current pstate.
Definition: Simulation.cpp:1178
std::shared_ptr< ComputeService > startNewService(ComputeService *service)
Starts a new compute service during WMS execution (i.e., one that was not passed to Simulation::add()...
Definition: Simulation.cpp:1200
static std::string getHostName()
Get the name of the host on which the calling process is running.
Definition: Simulation.cpp:1044
static double getLinkBandwidth(std::string linkname)
Get the max bandwidth of a particular link.
Definition: Simulation.cpp:272
void instantiatePlatform(std::string)
Instantiate a simulated platform.
Definition: Simulation.cpp:217
static bool isPageCachingEnabled()
Definition: Simulation.cpp:313
void readFromDisk(double num_bytes, std::string hostname, std::string mount_point)
Wrapper enabling timestamps for disk reads.
Definition: Simulation.cpp:704
static int getCurrentPstate(const std::string &hostname)
Get the current power state of a host.
Definition: Simulation.cpp:1160
static bool isHostOn(std::string hostname)
Returns whether a host is on or not.
Definition: Simulation.cpp:971
A file registry service (a.k.a. replica catalog) that holds a database of which files are available a...
Definition: FileRegistryService.h:35
MemoryManager * getMemoryManagerByHost(std::string hostname)
Find MemoryManager running on a host based on hostname.
Definition: Simulation.cpp:902
static void sleep(double duration)
Make the calling process sleep for a number of (simulated) seconds.
Definition: Simulation.cpp:1052
A class that implemnets a MemoryManager service to simulate Linux in-memory page caching for I/O oper...
Definition: MemoryManager.h:29
static bool isLinkOn(std::string linkname)
Returns whether a link is on or not.
Definition: Simulation.cpp:996
void writebackWithMemoryCache(WorkflowFile *file, double n_bytes, std::shared_ptr< FileLocation > location, bool is_dirty)
Write a file locally with writeback strategy, only available if writeback is activated.
Definition: Simulation.cpp:829
The storage service base class.
Definition: StorageService.h:36
The compute service base class.
Definition: ComputeService.h:33
void setPstate(const std::string &hostname, int pstate)
Set the power state of the host.
Definition: Simulation.cpp:1141
static std::vector< int > getListOfPstates(const std::string &hostname)
Get the list of power states available for a host.
Definition: Simulation.cpp:1169
static unsigned long getNumCores()
Get the number of cores of the host on which the calling process is running.
Definition: Simulation.cpp:1028
static void compute(double flops)
Make the calling process compute.
Definition: Simulation.cpp:1060
void launch()
Launch the simulation.
Definition: Simulation.cpp:346
static std::vector< std::string > getRoute(std::string &src_host, std::string &dst_host)
Get the list of link names on the route between two hosts.
Definition: Simulation.cpp:253
static void turnOnLink(std::string linkname)
Turns on a link.
Definition: Simulation.cpp:1012
void init(int *, char **)
Initialize the simulation, which parses out WRENCH-specific and SimGrid-specific command-line argumen...
Definition: Simulation.cpp:96
static void turnOffHost(std::string hostname)
Turns off a host.
Definition: Simulation.cpp:979
static double getHostMemoryCapacity(std::string hostname)
Get the memory_manager_service capacity of a host given a hostname.
Definition: Simulation.cpp:944
static std::vector< std::string > getHostnameList()
Get the list of names of all the hosts in the platform.
Definition: Simulation.cpp:243
static unsigned long getHostNumCores(std::string hostname)
Get the number of cores of a host given a hostname.
Definition: Simulation.cpp:953
double getEnergyConsumed(const std::string &hostname)
Obtains the current energy consumption of a host.
Definition: Simulation.cpp:1078
static bool doesHostExist(std::string hostname)
Wrapper for S4U_Simulation hostExists()
Definition: Simulation.cpp:917
Simulation()
Constructor.
Definition: Simulation.cpp:62
A class that provides basic simulation methods. Once the simulation object has been explicitly or imp...
Definition: Simulation.h:46
void stageFile(WorkflowFile *file, std::shared_ptr< StorageService > ss)
Stage a copy of a file at a storage service in the root of the (unique) mount point.
Definition: Simulation.cpp:637
~Simulation()
Destructor.
Definition: Simulation.cpp:79
void readFromDiskAndWriteToDiskConcurrently(double num_bytes_to_read, double num_bytes_to_write, std::string hostname, std::string read_mount_point, std::string write_mount_point)
Wrapper enabling timestamps for concurrent disk read/writes.
Definition: Simulation.cpp:729
void writeToDisk(double num_bytes, std::string hostname, std::string mount_point)
Wrapper enabling timestamps for disk writes.
Definition: Simulation.cpp:764
static void turnOnHost(std::string hostname)
Turns on a host.
Definition: Simulation.cpp:987
static double getMaxPowerConsumption(const std::string &hostname)
Get the maximum power consumption for the host (i.e., 100% utilization) at its current pstate.
Definition: Simulation.cpp:1187
static void turnOffLink(std::string linkname)
Turns off a link.
Definition: Simulation.cpp:1004
void writeThroughWithMemoryCache(WorkflowFile *file, double n_bytes, std::shared_ptr< FileLocation > location)
Write-through a file locally, only available if writeback is activated.
Definition: Simulation.cpp:877
static double getHostFlopRate(std::string hostname)
Get the flop rate of one core of a host given a hostname.
Definition: Simulation.cpp:962
static bool doesLinkExist(std::string linkname)
Wrapper for S4U_Simulation linkExists()
Definition: Simulation.cpp:927
static int getNumberofPstates(const std::string &hostname)
Get the total number of power states of a host.
Definition: Simulation.cpp:1151
SimulationOutput & getOutput()
Get the simulation output object.
Definition: Simulation.cpp:1068
A network proximity service that continuously estimates inter-host latencies and can be queried for s...
Definition: NetworkProximityService.h:26
A class that contains post-mortem simulation-generated data.
Definition: SimulationOutput.h:27
double getLinkUsage(const std::string &link_name, bool record_as_time_stamp)
Obtains the current link bandwidth usage on a link and will add SimulationTimestampLinkUsage to simul...
Definition: Simulation.cpp:294
A data file used/produced by a WorkflowTask in a Workflow.
Definition: WorkflowFile.h:26
static double getCurrentSimulatedDate()
Get the current simulated date.
Definition: Simulation.cpp:935
static double getFlopRate()
Get the flop rate of one core of the host on which the calling process is running.
Definition: Simulation.cpp:1036