forked from awslabs/aws-c-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask_scheduler.c
135 lines (112 loc) · 4.28 KB
/
task_scheduler.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include <aws/common/task_scheduler.h>
#include <aws/common/thread.h>
#include <aws/common/priority_queue.h>
static const size_t DEFAULT_QUEUE_SIZE = 7;
struct task_container {
uint64_t timestamp;
struct aws_task task;
};
static int compare_timestamps(const void *a, const void *b) {
uint64_t a_time = ((struct task_container*)a)->timestamp;
uint64_t b_time = ((struct task_container*)b)->timestamp;
return a_time > b_time; /* min-heap */
}
int aws_task_scheduler_init(struct aws_task_scheduler *scheduler, struct aws_allocator *alloc,
aws_task_scheduler_clock clock) {
scheduler->alloc = alloc;
scheduler->clock = clock;
scheduler->owning_thread = aws_thread_current_thread_id();
return aws_priority_queue_dynamic_init(&scheduler->queue, alloc, DEFAULT_QUEUE_SIZE, sizeof(struct task_container),
&compare_timestamps);
}
void aws_task_scheduler_clean_up(struct aws_task_scheduler *scheduler) {
/* do we want to add a xthread check here? what happens if another thread attempts to clean up? */
aws_priority_queue_clean_up(&scheduler->queue);
scheduler->alloc = NULL;
scheduler->clock = NULL;
scheduler->owning_thread = 0;
}
int aws_task_scheduler_next_task(struct aws_task_scheduler *scheduler,
struct aws_task *task, uint64_t *next_run_time) {
if (aws_thread_current_thread_id() != scheduler->owning_thread) {
return aws_raise_error(AWS_ERROR_TASK_SCHEDULER_ILLEGAL_XTHREAD_ACCESS);
}
struct task_container *possible_task;
if(aws_priority_queue_top(&scheduler->queue, (void **)&possible_task)) {
if(AWS_ERROR_PRIORITY_QUEUE_EMPTY == aws_last_error()) {
return aws_raise_error(AWS_ERROR_TASK_SCHEDULER_NO_TASKS);
}
return AWS_OP_ERR;
}
if (next_run_time) {
*next_run_time = possible_task->timestamp;
}
uint64_t now;
if(scheduler->clock(&now)) {
return AWS_OP_ERR;
}
if (possible_task->timestamp > now) {
return aws_raise_error(AWS_ERROR_TASK_SCHEDULER_NO_READY_TASKS);
}
struct task_container container;
if(aws_priority_queue_pop(&scheduler->queue, (void *)&container)) {
return AWS_OP_ERR;
}
*task = container.task;
if(next_run_time) {
if(aws_priority_queue_top(&scheduler->queue, (void **)&possible_task)) {
if(AWS_ERROR_PRIORITY_QUEUE_EMPTY == aws_last_error()) {
return aws_raise_error(AWS_ERROR_TASK_SCHEDULER_NO_MORE_TASKS);
}
return AWS_OP_ERR;
}
*next_run_time = possible_task->timestamp;
}
return AWS_OP_SUCCESS;
}
int aws_task_scheduler_schedule_now(struct aws_task_scheduler *scheduler,
struct aws_task *task) {
uint64_t now;
if(scheduler->clock(&now)) {
return AWS_OP_ERR;
}
return aws_task_scheduler_schedule_future(scheduler, task, now);
}
int aws_task_scheduler_schedule_future(struct aws_task_scheduler *scheduler,
struct aws_task *task, uint64_t time_to_run) {
if (aws_thread_current_thread_id() != scheduler->owning_thread) {
return aws_raise_error(AWS_ERROR_TASK_SCHEDULER_ILLEGAL_XTHREAD_ACCESS);
}
struct task_container container;
container.task = *task;
container.timestamp = time_to_run;
if(aws_priority_queue_push(&scheduler->queue, &container)) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
int aws_task_scheduler_run_all(struct aws_task_scheduler *scheduler) {
while(1) {
struct aws_task task_to_run = {0};
int err = aws_task_scheduler_next_task(scheduler, &task_to_run, 0);
if(AWS_OP_SUCCESS != err) {
return err;
}
task_to_run.fn(task_to_run.arg);
}
return AWS_OP_SUCCESS;
}