This repository has been archived by the owner on May 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
frame.c
293 lines (230 loc) · 6.92 KB
/
frame.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/*
libxbee - a C/C++ library to aid the use of Digi's XBee wireless modules
running in API mode.
Copyright (C) 2009 onwards Attie Grande ([email protected])
libxbee is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
libxbee is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with libxbee. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "internal.h"
#include "frame.h"
#include "conn.h"
#include "ll.h"
#include "log.h"
#ifdef XBEE_FRAME_TIMEOUT_ENABLED
#ifndef XBEE_FRAME_TIMEOUT_SEC
#define XBEE_FRAME_TIMEOUT_SEC (30)
#endif
#ifndef XBEE_FRAME_TIMEOUT_NSEC
#define XBEE_FRAME_TIMEOUT_NSEC (0)
#endif
static const struct timespec FRAME_TIMEOUT = {
.tv_sec = XBEE_FRAME_TIMEOUT_SEC,
.tv_nsec = XBEE_FRAME_TIMEOUT_NSEC
};
#define xbee_frameNotTimedOut(frame, currentTime) \
((frame).timeout.tv_sec > (currentTime).tv_sec || (((frame).timeout.tv_sec == (currentTime).tv_sec) && ((frame).timeout.tv_nsec >= (currentTime).tv_nsec)))
#endif
/* ########################################################################## */
xbee_err xbee_frameBlockAlloc(struct xbee_frameBlock **nfBlock) {
size_t memSize;
struct xbee_frameBlock *fBlock;
int i;
if (!nfBlock) return XBEE_EMISSINGPARAM;
memSize = sizeof(*fBlock);
if (!(fBlock = malloc(memSize))) return XBEE_ENOMEM;
memset(fBlock, 0, memSize);
xsys_mutex_init(&fBlock->mutex);
fBlock->numFrames = sizeof(fBlock->frame) / sizeof(fBlock->frame[0]);
for (i = 0; i < fBlock->numFrames; i++) {
fBlock->frame[i].id = i;
xsys_sem_init(&fBlock->frame[i].sem);
}
*nfBlock = fBlock;
return XBEE_ENONE;
}
xbee_err xbee_frameBlockFree(struct xbee_frameBlock *fBlock) {
int i;
if (!fBlock) return XBEE_EMISSINGPARAM;
for (i = 0; i < fBlock->numFrames; i++) {
xsys_sem_destroy(&fBlock->frame[i].sem);
}
xsys_mutex_destroy(&fBlock->mutex);
free(fBlock);
return XBEE_ENONE;
}
/* ########################################################################## */
xbee_err xbee_frameGetID(struct xbee_frameBlock *fBlock, struct xbee_con *con, char abandon) {
xbee_err ret;
int i, o;
#ifdef XBEE_FRAME_TIMEOUT_ENABLED
struct timespec currentTime;
#endif
if (!fBlock || !con) return XBEE_EMISSINGPARAM;
#ifdef XBEE_FRAME_TIMEOUT_ENABLED
if (clock_gettime(CLOCK_MONOTONIC, &(currentTime))) return XBEE_EFAILED;
#endif
ret = XBEE_EFAILED;
xbee_mutex_lock(&fBlock->mutex);
for (i = 0, o = fBlock->lastFrame + 1; i < fBlock->numFrames; i++, o++) {
o %= fBlock->numFrames;
/* skip frame '0x00', this indicates that no ACK is requested */
if (fBlock->frame[o].id == 0) continue;
/* skip busy frames */
#ifdef XBEE_FRAME_TIMEOUT_ENABLED
if (fBlock->frame[o].status && xbee_frameNotTimedOut(fBlock->frame[o], currentTime)) continue;
#else
if (fBlock->frame[o].status) continue;
#endif
fBlock->lastFrame = o;
#ifdef XBEE_FRAME_TIMEOUT_ENABLED
/* Update timeout time on frame */
currentTime.tv_sec += FRAME_TIMEOUT.tv_sec;
currentTime.tv_nsec += FRAME_TIMEOUT.tv_nsec;
currentTime.tv_sec += currentTime.tv_nsec / 1000000000;
currentTime.tv_nsec %= 1000000000;
fBlock->frame[o].timeout = currentTime;
#endif
fBlock->frame[o].status = XBEE_FRAME_STATUS_SCHEDULED;
if (abandon) {
fBlock->frame[o].status |= XBEE_FRAME_STATUS_ABANDONED;
} else {
fBlock->frame[o].con = con;
}
con->frameId = fBlock->frame[o].id;
ret = XBEE_ENONE;
break;
}
xbee_mutex_unlock(&fBlock->mutex);
return ret;
}
xbee_err xbee_frameReturnID(struct xbee_frameBlock *fBlock, struct xbee_con *con) {
xbee_err ret;
int i;
unsigned char frameId;
struct xbee_frame *frame;
if (!fBlock || !con) return XBEE_EMISSINGPARAM;
ret = XBEE_EFAILED;
xbee_mutex_lock(&fBlock->mutex);
frameId = con->frameId;
if (frameId < fBlock->numFrames) {
frame = &(fBlock->frame[frameId]);
} else {
frame = NULL;
}
if ((frame == NULL) ||
(frame->id != frameId)) {
frame = NULL;
for (i = 0; i < fBlock->numFrames; i++) {
if (fBlock->frame[i].id == frameId) {
frame = &(fBlock->frame[i]);
break;
}
}
}
if ((frame == NULL) ||
(frame->con != con)) {
ret = XBEE_ESTALE;
goto done;
}
/* clean down the frame */
con->frameId = 0;
frame->con = NULL;
frame->status = 0;
done:
xbee_mutex_unlock(&fBlock->mutex);
return ret;
}
xbee_err xbee_frameWait(struct xbee_frameBlock *fBlock, struct xbee_con *con, unsigned char *retVal, struct timespec *timeout) {
xbee_err ret;
struct xbee_frame *frame;
int i, o;
if (!fBlock || !con) return XBEE_EMISSINGPARAM;
ret = XBEE_EINVAL;
xbee_mutex_lock(&fBlock->mutex);
frame = NULL;
for (i = 0, o = fBlock->lastFrame; i < fBlock->numFrames; i++, o--) {
if (o < 0) o = fBlock->numFrames - 1;
if (fBlock->frame[o].id != con->frameId) continue;
if (fBlock->frame[o].status == 0 || fBlock->frame[o].con != con) {
ret = XBEE_ESTALE;
} else {
frame = &fBlock->frame[o];
frame->status |= XBEE_FRAME_STATUS_WAITING;
}
break;
}
xbee_mutex_unlock(&fBlock->mutex);
if (!frame) return ret;
ret = XBEE_ENONE;
if (timeout) {
if (xsys_sem_timedwait(&frame->sem, timeout)) {
if (errno == ETIMEDOUT) {
ret = XBEE_ETIMEOUT;
} else {
ret = XBEE_ESEMAPHORE;
}
}
} else {
if (xsys_sem_wait(&frame->sem)) {
ret = XBEE_ESEMAPHORE;
}
}
xbee_mutex_lock(&fBlock->mutex);
con->frameId = 0;
frame->con = NULL;
if (frame->status & XBEE_FRAME_STATUS_COMPLETE && ret == XBEE_ENONE) {
if (retVal) *retVal = frame->retVal;
frame->status = 0;
} else {
frame->status &= ~XBEE_FRAME_STATUS_WAITING;
}
xbee_mutex_unlock(&fBlock->mutex);
return ret;
}
xbee_err xbee_framePost(struct xbee_frameBlock *fBlock, unsigned char frameId, unsigned char retVal) {
xbee_err ret;
struct xbee_frame *frame;
int i;
if (!fBlock) return XBEE_EMISSINGPARAM;
if (frameId == 0) return XBEE_ENONE;
xbee_mutex_lock(&fBlock->mutex);
frame = NULL;
for (i = 0; i < fBlock->numFrames; i++) {
if (fBlock->frame[i].id != frameId) continue;
if (fBlock->frame[i].status != 0) {
frame = &fBlock->frame[i];
}
break;
}
if (!frame) {
ret = XBEE_EINVAL;
} else if (frame->con && (frame->status & XBEE_FRAME_STATUS_WAITING)) {
ret = XBEE_ENONE;
frame->status |= XBEE_FRAME_STATUS_COMPLETE;
frame->retVal = retVal;
xsys_sem_post(&frame->sem);
} else {
if (!(frame->status & XBEE_FRAME_STATUS_ABANDONED)) {
ret = XBEE_ETIMEOUT;
}
if (frame->con) {
frame->con->frameId = 0;
frame->con = NULL;
}
frame->status = 0;
}
xbee_mutex_unlock(&fBlock->mutex);
return ret;
}