TCPSPSuite
job.hpp
1 #ifndef JOB_HPP
2 #define JOB_HPP
3 
4 #include "../datastructures/maybe.hpp"
5 #include "resource.hpp"
6 
21 class Job {
22 public:
23  using JobId = unsigned int;
24 
25  // TODO actually, this should not be default-constructible. We should adapt
26  // the way substitutions work
27  Job();
28 
40  Job(unsigned int release, unsigned int deadline, unsigned int duration,
41  ResVec usages, unsigned int id);
42 
43  // Modified copy constructor that allows to change release and deadline during
44  // copying
57  Job(unsigned int release, unsigned int deadline, const Job & other);
58 
64  unsigned int get_duration() const;
65 
71  unsigned int get_release() const;
72 
78  unsigned int get_deadline() const;
79 
85  Maybe<unsigned int> get_hint() const;
86 
93  double get_resource_usage(unsigned int rid) const;
94 
100  const ResVec & get_resource_usage() const;
101 
107  unsigned int get_jid() const;
108 
118  void set_id(unsigned int id);
119 
126  void set_hint(Maybe<unsigned int> hint);
127 
128  bool
129  operator==(const Job & other) const
130  {
131  return other.jid == this->jid;
132  // TODO in debug-mode, compare all values!
133  }
134 
135  // deepcopy
141  Job clone() const;
142 
143 private:
144  unsigned int jid;
145 
146  ResVec resource_usage; // TODO only flat?
147  unsigned int duration;
148  unsigned int release;
149  unsigned int deadline;
150  Maybe<unsigned int> hint;
151 };
152 
153 #endif
Job::set_hint
void set_hint(Maybe< unsigned int > hint)
Definition: job.cpp:49
Job
A job of an TCPSP instance.
Definition: job.hpp:21
Job::get_duration
unsigned int get_duration() const
Definition: job.cpp:37
Job::get_release
unsigned int get_release() const
Definition: job.cpp:79
Job::set_id
void set_id(unsigned int id)
Definition: job.cpp:73
Job::get_deadline
unsigned int get_deadline() const
Definition: job.cpp:85
Job::clone
Job clone() const
Definition: job.cpp:20
Job::get_hint
Maybe< unsigned int > get_hint() const
Definition: job.cpp:43
Job::get_jid
unsigned int get_jid() const
Definition: job.cpp:67
Job::get_resource_usage
const ResVec & get_resource_usage() const
Definition: job.cpp:61