Library prosa.analysis.facts.hyperperiod
Require Export prosa.analysis.definitions.hyperperiod.
Require Export prosa.analysis.facts.periodic.task_arrivals_size.
Require Export prosa.util.div_mod.
Require Export prosa.analysis.facts.periodic.task_arrivals_size.
Require Export prosa.util.div_mod.
In this file we prove some simple properties of hyperperiods of periodic tasks.
Consider any type of periodic tasks, ...
... any task set ts, ...
... and any task tsk that belongs to this task set.
A task set's hyperperiod is an integral multiple
of each task's period in the task set.
Lemma hyperperiod_int_mult_of_any_task:
∃ (k : nat),
hyperperiod ts = k × task_period tsk.
End Hyperperiod.
∃ (k : nat),
hyperperiod ts = k × task_period tsk.
End Hyperperiod.
In this section we show a property of hyperperiod in context
of task sets with valid periods.
Consider any type of periodic tasks ...
... and any task set ts ...
... such that all tasks in ts have valid periods.
We show that the hyperperiod of task set ts
is positive.
In this section we prove some lemmas about the hyperperiod
in context of the periodic model.
Consider any type of tasks, ...
... any type of jobs, ...
... and a consistent arrival sequence with non-duplicate arrivals.
Variable arr_seq : arrival_sequence Job.
Hypothesis H_valid_arrival_sequence : valid_arrival_sequence arr_seq.
Hypothesis H_valid_arrival_sequence : valid_arrival_sequence arr_seq.
Variable tsk : Task.
Hypothesis H_task_in_ts: tsk \in ts.
Hypothesis H_valid_offset: valid_offset arr_seq tsk.
Hypothesis H_valid_period: valid_period tsk.
Hypothesis H_periodic_task: respects_periodic_task_model arr_seq tsk.
Hypothesis H_task_in_ts: tsk \in ts.
Hypothesis H_valid_offset: valid_offset arr_seq tsk.
Hypothesis H_valid_period: valid_period tsk.
Hypothesis H_periodic_task: respects_periodic_task_model arr_seq tsk.
Assume we have an infinite sequence of jobs in the arrival sequence.
Let O_max denote the maximum task offset in ts and let
HP denote the hyperperiod of all tasks in ts.
We show that the job corresponding to any job j1 in any other
hyperperiod is of the same task as j1.
Lemma corresponding_jobs_have_same_task:
∀ j1 j2,
job_task (corresponding_job_in_hyperperiod ts arr_seq j1
(starting_instant_of_corresponding_hyperperiod ts j2) (job_task j1)) = job_task j1.
∀ j1 j2,
job_task (corresponding_job_in_hyperperiod ts arr_seq j1
(starting_instant_of_corresponding_hyperperiod ts j2) (job_task j1)) = job_task j1.
We show that if a job j lies in the hyperperiod starting
at instant t then j arrives in the interval
[t, t + HP)
.
Lemma all_jobs_arrive_within_hyperperiod:
∀ j t,
j \in jobs_in_hyperperiod ts arr_seq t tsk→
t ≤ job_arrival j < t + HP.
∀ j t,
j \in jobs_in_hyperperiod ts arr_seq t tsk→
t ≤ job_arrival j < t + HP.
We show that the number of jobs in a hyperperiod starting at n1 × HP + O_max
is the same as the number of jobs in a hyperperiod starting at n2 × HP + O_max given
that n1 is less than or equal to n2.
Lemma eq_size_hyp_lt:
∀ n1 n2,
n1 ≤ n2 →
size (jobs_in_hyperperiod ts arr_seq (n1 × HP + O_max) tsk) =
size (jobs_in_hyperperiod ts arr_seq (n2 × HP + O_max) tsk).
∀ n1 n2,
n1 ≤ n2 →
size (jobs_in_hyperperiod ts arr_seq (n1 × HP + O_max) tsk) =
size (jobs_in_hyperperiod ts arr_seq (n2 × HP + O_max) tsk).
We generalize the above lemma by lifting the condition on
n1 and n2.
Lemma eq_size_of_arrivals_in_hyperperiod:
∀ n1 n2,
size (jobs_in_hyperperiod ts arr_seq (n1 × HP + O_max) tsk) =
size (jobs_in_hyperperiod ts arr_seq (n2 × HP + O_max) tsk).
∀ n1 n2,
size (jobs_in_hyperperiod ts arr_seq (n1 × HP + O_max) tsk) =
size (jobs_in_hyperperiod ts arr_seq (n2 × HP + O_max) tsk).
Consider any two jobs j1 and j2 that stem from the arrival sequence
arr_seq such that j1 is of task tsk.
Variable j1 : Job.
Variable j2 : Job.
Hypothesis H_j1_from_arr_seq: arrives_in arr_seq j1.
Hypothesis H_j2_from_arr_seq: arrives_in arr_seq j2.
Hypothesis H_j1_task: job_task j1 = tsk.
Variable j2 : Job.
Hypothesis H_j1_from_arr_seq: arrives_in arr_seq j1.
Hypothesis H_j2_from_arr_seq: arrives_in arr_seq j2.
Hypothesis H_j1_task: job_task j1 = tsk.
Hypothesis H_j1_arr_after_O_max: O_max ≤ job_arrival j1.
Hypothesis H_j2_arr_after_O_max: O_max ≤ job_arrival j2.
Hypothesis H_j2_arr_after_O_max: O_max ≤ job_arrival j2.
We show that any job j that arrives in task arrivals in the same
hyperperiod as j2 also arrives in task arrivals up to job_arrival j2 + HP.
Lemma job_in_hp_arrives_in_task_arrivals_up_to:
∀ j,
j \in jobs_in_hyperperiod ts arr_seq ((job_arrival j2 - O_max) %/ HP × HP + O_max) tsk →
j \in task_arrivals_up_to arr_seq tsk (job_arrival j2 + HP).
∀ j,
j \in jobs_in_hyperperiod ts arr_seq ((job_arrival j2 - O_max) %/ HP × HP + O_max) tsk →
j \in task_arrivals_up_to arr_seq tsk (job_arrival j2 + HP).
We show that job j1 arrives in its own hyperperiod.
Lemma job_in_own_hp:
j1 \in jobs_in_hyperperiod ts arr_seq ((job_arrival j1 - O_max) %/ HP × HP + O_max) tsk.
j1 \in jobs_in_hyperperiod ts arr_seq ((job_arrival j1 - O_max) %/ HP × HP + O_max) tsk.
We show that the corresponding_job_in_hyperperiod of j1 in j2's hyperperiod
arrives in task arrivals up to job_arrival j2 + HP.
Lemma corr_job_in_task_arrivals_up_to:
corresponding_job_in_hyperperiod ts arr_seq j1 (starting_instant_of_corresponding_hyperperiod ts j2) tsk \in
task_arrivals_up_to arr_seq tsk (job_arrival j2 + HP).
corresponding_job_in_hyperperiod ts arr_seq j1 (starting_instant_of_corresponding_hyperperiod ts j2) tsk \in
task_arrivals_up_to arr_seq tsk (job_arrival j2 + HP).
Finally, we show that the corresponding_job_in_hyperperiod of j1 in j2's hyperperiod
arrives in the arrival sequence arr_seq.