-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.c
256 lines (220 loc) · 7.48 KB
/
messages.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#include "kernel_data.h"
// =========================================== MESSAGE =========================================== //
TaskNode* getTask(const msg* const m) { return m->pBlock; }
void* getData(const msg* const m) { return m->pData; }
msg* createMsg(void* data, i32 size) {
msg* m = alloc(sizeof *m);
m->pData = data;
return m;
}
// =========================================== MAILBOX =========================================== //
i32 getDataSize (const mailbox* const mBox) { return mBox->nDataSize; }
msg* getFirstMsg (const mailbox* const mBox) { return mBox->pHead->pNext; }
msg* getLastMsg (const mailbox* const mBox) { return mBox->pHead->pPrevious; }
msg* getDummyMsg (const mailbox* const mBox) { return mBox->pHead; }
void insertMsg(msg* const new, msg* const prev, msg* const next) {
next->pPrevious = new;
new->pNext = next;
new->pPrevious = prev;
prev->pNext = new;
}
msg* removeMsg(msg* const m) {
msg* p = m->pPrevious;
msg* n = m->pNext;
p->pNext = n;
n->pPrevious = p;
return m;
}
b32 isFull(const mailbox* const mBox){
return mBox->nMessages >= mBox->nMaxMessages;
}
b32 isEmpty(const mailbox* const mBox) {
return mBox->pHead->pNext == mBox->pHead;
}
int no_messages(mailbox* mBox) {
return mBox->nMessages;
}
b32 msgPushFront(mailbox* const mBox, msg* const m) {
if (isFull(mBox)) { return 0; }
mBox->nMessages++;
insertMsg(m, getDummyMsg(mBox), getFirstMsg(mBox));
return 1;
}
b32 msgPushBack(mailbox* const mBox, msg* const m) {
if (isFull(mBox)) { return 0; }
mBox->nMessages++;
insertMsg(m, getLastMsg(mBox), getDummyMsg(mBox));
return 1;
}
msg* msgPopFront(mailbox* const mBox) {
if (isEmpty(mBox)) { return NULL; }
mBox->nMessages--;
//if (mBox->nBlockedMsg != 0) { mBox->nBlockedMsg--; }
return removeMsg(getFirstMsg(mBox));
}
msg* msgPopBack(mailbox* const mBox) {
if (isEmpty(mBox)) { return NULL; }
mBox->nMessages--;
//if (mBox->nBlockedMsg != 0) { mBox->nBlockedMsg--; }
return removeMsg(getLastMsg(mBox));
}
mailbox* create_mailbox(uint maxMsg, uint dataSize) {
mailbox* mBox = alloc(sizeof *mBox);
mBox->pHead = alloc(sizeof *mBox->pHead);
mBox->pHead->pNext = mBox->pHead;
mBox->pHead->pPrevious = mBox->pHead;
mBox->nDataSize = dataSize;
mBox->nMaxMessages = maxMsg;
return mBox;
}
exception remove_mailbox(mailbox* mBox) {
if (!isEmpty(mBox)) { return NOT_EMPTY; }
delete(mBox->pHead);
delete(mBox);
return OK;
}
b32 msgRecIsWaiting(const mailbox* const mBox) {
return !isEmpty(mBox) && getFirstMsg(mBox)->Status == RECEIVER;
}
b32 msgSndIsWaiting(const mailbox* const mBox) {
return !isEmpty(mBox) && getFirstMsg(mBox)->Status == SENDER;
}
exception send_wait(mailbox* mBox, void* pData) {
volatile int first = TRUE;
isr_off();
SaveContext();
if (first) {
first = FALSE;
if (msgRecIsWaiting(mBox)) {
msg* rec = msgPopFront(mBox);
memcpy(rec->pData, pData, getDataSize(mBox));
rec->pBlock->pMessage = NULL;
addTask_Deadline(readyList, removeTask(getTask(rec)));
Running = getFirstTask(readyList)->pTask;
delete(rec);
} else {
msg* new = createMsg(pData, getDataSize(mBox)); if (!new) { return FAIL; }
new->Status = SENDER;
new->pBlock = getFirstTask(readyList);
getFirstTask(readyList)->pMessage = new;
msgPushBack(mBox, new);
mBox->nBlockedMsg++;
addTask_Deadline(waitList, removeTask(getFirstTask(readyList)));
Running = getFirstTask(readyList)->pTask;
}
LoadContext();
} else {
if (deadline() <= ticks()) {
TaskNode* rTask ;
isr_off();
rTask = getFirstTask(readyList);
delete(removeMsg(getTaskMsg(rTask)));
rTask->pMessage = NULL;
mBox->nBlockedMsg--;
isr_on();
return DEADLINE_REACHED;
} else {
return OK;
}
}
return OK;
}
exception receive_wait(mailbox* mBox, void* pData) {
volatile int first = TRUE;
isr_off();
SaveContext();
if (first) {
first = FALSE;
if (msgSndIsWaiting(mBox)) {
msg* snd = msgPopFront(mBox);
memcpy(pData, snd->pData, getDataSize(mBox));
if (snd->pBlock != NULL && mBox->nBlockedMsg != 0) {
snd->pBlock->pMessage = NULL;
addTask_Deadline(readyList, removeTask(snd->pBlock));
Running = getFirstTask(readyList)->pTask;
mBox->nBlockedMsg--;
} else {
delete(snd->pData);
}
delete(snd);
} else {
msg* new = createMsg(pData, getDataSize(mBox)); if (!new) { return FAIL; }
new->Status = RECEIVER;
new->pBlock = getFirstTask(readyList);
getFirstTask(readyList)->pMessage = new;
msgPushBack(mBox, new);
addTask_Deadline(waitList, removeTask(getFirstTask(readyList)));
Running = getFirstTask(readyList)->pTask;
mBox->nBlockedMsg++;
}
LoadContext();
} else {
if (deadline() <= ticks()) {
TaskNode* rTask ;
isr_off();
rTask = getFirstTask(readyList);
delete(removeMsg(getTaskMsg(rTask)));
rTask->pMessage = NULL;
mBox->nBlockedMsg--;
isr_on();
return DEADLINE_REACHED;
} else {
return OK;
}
}
return OK;
}
exception send_no_wait(mailbox* mBox, void* pData) {
volatile int first = TRUE;
isr_off();
SaveContext();
if (first) {
first = FALSE;
if (msgRecIsWaiting(mBox)) {
msg* rec = msgPopFront(mBox);
memcpy(rec->pData, pData, getDataSize(mBox));
rec->pBlock->pMessage = NULL;
addTask_Deadline(readyList, removeTask(getTask(rec)));
Running = getFirstTask(readyList)->pTask;
delete(rec);
} else {
msg* new = alloc(sizeof *new); if (!new) { return FAIL; }
new->pData = alloc(getDataSize(mBox)); if (!new->pData) { return FAIL; }
memcpy(new->pData, pData, mBox->nDataSize);
new->Status = SENDER;
new->pBlock = getFirstTask(readyList);
getFirstTask(readyList)->pMessage = new;
if(isFull(mBox)) {
delete(msgPopFront(mBox));
}
msgPushBack(mBox, new);
}
LoadContext();
}
return OK;
}
int receive_no_wait(mailbox* mBox, void* pData) {
volatile int first = TRUE;
isr_off();
SaveContext();
if (first) {
first = FALSE;
if (msgSndIsWaiting(mBox)) {
msg* snd = msgPopFront(mBox);
memcpy(pData, snd->pData, getDataSize(mBox));
if (snd->pBlock != NULL && mBox->nBlockedMsg != 0) {
snd->pBlock->pMessage = NULL;
addTask_Deadline(readyList, removeTask(snd->pBlock));
Running = getFirstTask(readyList)->pTask;
mBox->nBlockedMsg--;
} else {
delete(snd->pData);
}
delete(snd);
} else {
return FAIL;
}
LoadContext();
}
return OK;
}