11 #ifndef WRENCH_COMPUTESERVICEMESSAGE_H
12 #define WRENCH_COMPUTESERVICEMESSAGE_H
16 #include "wrench/workflow/failure_causes/FailureCause.h"
17 #include "wrench/services/ServiceMessage.h"
91 std::shared_ptr<FailureCause>
cause,
99 std::shared_ptr<FailureCause>
cause;
156 std::shared_ptr<FailureCause> cause,
262 std::map<std::string, std::map<std::string, double>>
info;
271 #endif //WRENCH_COMPUTESERVICEMESSAGE_H
A message sent by a ComputeService when a StandardJob has completed execution.
Definition: ComputeServiceMessage.h:75
ComputeServicePilotJobStartedMessage(PilotJob *, std::shared_ptr< ComputeService >, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:232
A message sent by a ComputeService when a StandardJob has failed to execute.
Definition: ComputeServiceMessage.h:88
bool success
Whether to job submission was successful.
Definition: ComputeServiceMessage.h:67
std::string name
The message name.
Definition: SimulationMessage.h:37
Top-level class for messages received/sent by a ComputeService.
Definition: ComputeServiceMessage.h:32
std::shared_ptr< ComputeService > compute_service
The compute service on which the job has completed.
Definition: ComputeServiceMessage.h:82
std::shared_ptr< FailureCause > cause
The cause of the failure.
Definition: ComputeServiceMessage.h:99
PilotJob * job
The job to terminate.
Definition: ComputeServiceMessage.h:232
std::shared_ptr< FailureCause > failure_cause
The cause of the failure, or nullptr on success.
Definition: ComputeServiceMessage.h:238
PilotJob * job
The job to terminate.
Definition: ComputeServiceMessage.h:219
std::shared_ptr< ComputeService > compute_service
The compute service to which the job was submitted.
Definition: ComputeServiceMessage.h:65
StandardJob * job
The standard job to terminate.
Definition: ComputeServiceMessage.h:124
PilotJob * job
The pilot job that has failed.
Definition: ComputeServiceMessage.h:204
std::string answer_mailbox
The mailbox to which the answer message should be sent.
Definition: ComputeServiceMessage.h:47
std::shared_ptr< FailureCause > failure_cause
The cause of the failure, or nullptr on success.
Definition: ComputeServiceMessage.h:166
StandardJob * job
The standard job that was submitted.
Definition: ComputeServiceMessage.h:63
std::shared_ptr< ComputeService > compute_service
The compute service on which the pilot job failed.
Definition: ComputeServiceMessage.h:206
std::map< std::string, std::string > service_specific_args
Service specific arguments.
Definition: ComputeServiceMessage.h:51
ComputeServiceSubmitStandardJobAnswerMessage(StandardJob *, std::shared_ptr< ComputeService >, bool success, std::shared_ptr< FailureCause > failure_cause, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:60
A message sent by a ComputeService when a PilotJob has started its execution.
Definition: ComputeServiceMessage.h:173
std::shared_ptr< ComputeService > compute_service
The compute service on which the pilot job has started.
Definition: ComputeServiceMessage.h:180
bool success
Whether to job termination was successful.
Definition: ComputeServiceMessage.h:236
Top-level class for messages received/sent by a Service.
Definition: ServiceMessage.h:27
std::shared_ptr< FailureCause > failure_cause
The cause of the failure, or nullptr on success.
Definition: ComputeServiceMessage.h:130
A message sent by a ComputeService when a PilotJob has expired.
Definition: ComputeServiceMessage.h:186
std::shared_ptr< ComputeService > compute_service
The compute service to which the job had been submitted.
Definition: ComputeServiceMessage.h:126
A standard (i.e., non-pilot) workflow job that can be submitted to a ComputeService by a WMS (via a J...
Definition: StandardJob.h:37
PilotJob * job
The submitted pilot job.
Definition: ComputeServiceMessage.h:145
ComputeServiceTerminatePilotJobRequestMessage(std::string answer_mailbox, PilotJob *, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:293
ComputeServiceMessage(std::string name, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:21
A message sent to a ComputeService to submit a StandardJob for execution.
Definition: ComputeServiceMessage.h:40
A message sent by a ComputeService when a PilotJob has failed.
Definition: ComputeServiceMessage.h:199
bool success
Whether the job submission was successful or not.
Definition: ComputeServiceMessage.h:164
StandardJob * job
The job that has failed.
Definition: ComputeServiceMessage.h:95
ComputeServiceTerminatePilotJobAnswerMessage(PilotJob *, std::shared_ptr< ComputeService > compute_service, bool success, std::shared_ptr< FailureCause > failure_cause, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:316
PilotJob * job
The pilot job that has expired.
Definition: ComputeServiceMessage.h:191
ComputeServiceSubmitPilotJobAnswerMessage(PilotJob *, std::shared_ptr< ComputeService >, bool success, std::shared_ptr< FailureCause > cause, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:205
double payload
The message size in bytes.
Definition: SimulationMessage.h:39
ComputeServiceTerminateStandardJobRequestMessage(std::string answer_mailbox, StandardJob *, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:129
A message sent by a ComputeService in answer to a StandardJob submission request.
Definition: ComputeServiceMessage.h:57
ComputeServiceSubmitPilotJobRequestMessage(std::string answer_mailbox, PilotJob *, const std::map< std::string, std::string > service_specific_args, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:180
std::shared_ptr< ComputeService > compute_service
The compute service to which the job had been submitted.
Definition: ComputeServiceMessage.h:234
bool success
Whether to job termination was successful.
Definition: ComputeServiceMessage.h:128
std::shared_ptr< ComputeService > compute_service
The compute service on which the pilot job has expired.
Definition: ComputeServiceMessage.h:193
StandardJob * job
The submitted job.
Definition: ComputeServiceMessage.h:49
ComputeServiceSubmitStandardJobRequestMessage(const std::string answer_mailbox, StandardJob *, const std::map< std::string, std::string > service_specific_args, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:35
PilotJob * job
The submitted pilot job.
Definition: ComputeServiceMessage.h:160
A message sent to a ComputeService to terminate a StandardJob previously submitted for execution.
Definition: ComputeServiceMessage.h:105
A message sent by a ComputeService in answer to a StandardJob termination request.
Definition: ComputeServiceMessage.h:118
ComputeServicePilotJobExpiredMessage(PilotJob *, std::shared_ptr< ComputeService >, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:253
A message sent by a ComputeService in answer to a PilotJob submission request.
Definition: ComputeServiceMessage.h:153
std::shared_ptr< FailureCause > failure_cause
The cause of the failure, or nullptr on success.
Definition: ComputeServiceMessage.h:69
std::string answer_mailbox
The mailbox to which the answer message should be sent.
Definition: ComputeServiceMessage.h:217
std::map< std::string, std::string > service_specific_args
Service specific arguments.
Definition: ComputeServiceMessage.h:147
StandardJob * job
The job to terminate.
Definition: ComputeServiceMessage.h:112
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
std::shared_ptr< ComputeService > compute_service
The compute service on which the job has failed.
Definition: ComputeServiceMessage.h:97
std::shared_ptr< ComputeService > compute_service
The compute service to which the job was submitted.
Definition: ComputeServiceMessage.h:162
ComputeServiceStandardJobFailedMessage(StandardJob *, std::shared_ptr< ComputeService >, std::shared_ptr< FailureCause > cause, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:107
StandardJob * job
The job that has completed.
Definition: ComputeServiceMessage.h:80
std::string answer_mailbox
The mailbox to which the answer message should be sent.
Definition: ComputeServiceMessage.h:110
ComputeServiceStandardJobDoneMessage(StandardJob *, std::shared_ptr< ComputeService >, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:86
PilotJob * job
The pilot job that has started.
Definition: ComputeServiceMessage.h:178
A message sent to a ComputeService to submit a PilotJob for execution.
Definition: ComputeServiceMessage.h:136
std::string answer_mailbox
The mailbox to which the answer message should be sent.
Definition: ComputeServiceMessage.h:143
A message sent by a ComputeService in answer to a PilotJob termination request.
Definition: ComputeServiceMessage.h:225
ComputeServicePilotJobFailedMessage(PilotJob *, std::shared_ptr< ComputeService >, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:273
ComputeServiceTerminateStandardJobAnswerMessage(StandardJob *, std::shared_ptr< ComputeService >, bool success, std::shared_ptr< FailureCause > failure_cause, double payload)
Constructor.
Definition: ComputeServiceMessage.cpp:152
A message sent to a ComputeService to terminate a PilotJob previously submitted for execution.
Definition: ComputeServiceMessage.h:212