WRENCH  1.10
Cyberinfrastructure Simulation Workbench
Overview Installation Getting Started WRENCH 101 WRENCH 102
HTCondorNegotiatorService.h
1 
10 #ifndef WRENCH_HTCONDORNEGOTIATORSERVICE_H
11 #define WRENCH_HTCONDORNEGOTIATORSERVICE_H
12 
13 #include "wrench/services/Service.h"
14 #include "wrench/services/compute/ComputeService.h"
15 #include "wrench/services/compute/htcondor/HTCondorCentralManagerServiceMessagePayload.h"
16 #include "wrench/workflow/job/WorkflowJob.h"
17 
18 namespace wrench {
19 
20  /***********************/
22  /***********************/
26  class HTCondorNegotiatorService : public Service {
27  private:
28  std::map<std::string, double> default_messagepayload_values = {
29  {HTCondorCentralManagerServiceMessagePayload::STOP_DAEMON_MESSAGE_PAYLOAD, 1024},
30  {HTCondorCentralManagerServiceMessagePayload::DAEMON_STOPPED_MESSAGE_PAYLOAD, 1024},
31  {HTCondorCentralManagerServiceMessagePayload::HTCONDOR_NEGOTIATOR_DONE_MESSAGE_PAYLOAD, 1024},
32  };
33 
34  public:
35 
36  HTCondorNegotiatorService(std::string &hostname,
37  double startup_overhead,
38  std::set<std::shared_ptr<ComputeService>> &compute_services,
39  std::map<std::shared_ptr<WorkflowJob>, std::shared_ptr<ComputeService>> &running_jobs,
40  std::vector<std::tuple<std::shared_ptr<WorkflowJob>, std::map<std::string, std::string>>> &pending_jobs,
41  std::string &reply_mailbox);
42 
43  ~HTCondorNegotiatorService();
44 
45  private:
46  int main() override;
47 
48  struct JobPriorityComparator {
49  bool operator()(std::tuple<std::shared_ptr<WorkflowJob>, std::map<std::string, std::string>> &lhs,
50  std::tuple<std::shared_ptr<WorkflowJob>, std::map<std::string, std::string>> &rhs);
51  };
52 
53  std::shared_ptr<ComputeService> pickTargetComputeService(std::shared_ptr<WorkflowJob> job, std::map<std::string, std::string> service_specific_arguments);
54  std::shared_ptr<ComputeService> pickTargetComputeServiceGridUniverse(std::shared_ptr<WorkflowJob> job, std::map<std::string, std::string> service_specific_arguments);
55  std::shared_ptr<ComputeService> pickTargetComputeServiceNonGridUniverse(std::shared_ptr<WorkflowJob> job, std::map<std::string, std::string> service_specific_arguments);
56 
58  double startup_overhead;
60  std::string reply_mailbox;
62  std::set<std::shared_ptr<ComputeService>> compute_services;
64  std::map<std::shared_ptr<WorkflowJob>, std::shared_ptr<ComputeService>> running_jobs;
66  std::vector<std::tuple<std::shared_ptr<WorkflowJob>, std::map<std::string, std::string>>> pending_jobs;
67  };
68 
69  /***********************/
71  /***********************/
72 }
73 
74 #endif //WRENCH_HTCONDORNEGOTIATORSERVICE_H
wrench
Definition: Alarm.cpp:20