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
/
tx.c
179 lines (140 loc) · 4.89 KB
/
tx.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
/*
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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "internal.h"
#include "tx.h"
#include "xbee_int.h"
#include "log.h"
#include "conn.h"
#include "mode.h"
#include "ll.h"
xbee_err xbee_txAlloc(struct xbee_txInfo **nInfo) {
static char logColor = 1;
size_t memSize;
struct xbee_txInfo *info;
if (!nInfo) return XBEE_EMISSINGPARAM;
memSize = sizeof(*info);
if (!(info = malloc(memSize))) return XBEE_ENOMEM;
memset(info, 0, memSize);
info->bufList = xbee_ll_alloc();
xsys_sem_init(&info->sem);
/* give it a log color */
info->logColor = logColor;
if (logColor++ > 7) logColor = 7;
*nInfo = info;
return XBEE_ENONE;
}
xbee_err xbee_txFree(struct xbee_txInfo *info) {
if (!info) return XBEE_EMISSINGPARAM;
xbee_ll_free(info->bufList, (void(*)(void*))free);
xsys_sem_destroy(&info->sem);
free(info);
return XBEE_ENONE;
}
/* ######################################################################### */
xbee_err xbee_tx(struct xbee *xbee, int *restart, void *arg) {
xbee_err ret;
struct xbee_txInfo *info;
struct xbee_sbuf *buf;
info = arg;
if (!info->ioFunc) {
*restart = 0;
return XBEE_EINVAL;
}
while (!xbee->die) {
if (xsys_sem_wait(&info->sem) != 0) return XBEE_ESEMAPHORE;
if ((ret = xbee_ll_ext_head(info->bufList, (void**)&buf)) != XBEE_ENONE && ret != XBEE_ERANGE) return XBEE_ELINKEDLIST;
if (!buf) continue;
#ifndef XBEE_DISABLE_LOGGING
#ifndef XBEE_LOG_NO_TX
if (xbee->log->enable_tx) {
/* format: tx[0x0000000000000000] */
char label[42]; /* enough space for a 64-bit pointer and ANSI color codes */
#ifndef XBEE_LOG_NO_COLOR
if (xbee->log->use_color) {
snprintf(label, sizeof(label), "Tx[%c[%dm%p%c[0m]", 27, 30 + info->logColor, info, 27);
} else {
#endif /* !XBEE_LOG_NO_COLOR */
snprintf(label, sizeof(label), "Tx[%p]", info);
#ifndef XBEE_LOG_NO_COLOR
}
#endif /* !XBEE_LOG_NO_COLOR */
xbee_logData(25, label, buf->data, buf->len);
}
#endif /* !XBEE_LOG_NO_TX */
#endif /* !XBEE_DISABLE_LOGGING */
if ((ret = info->ioFunc(xbee, info->ioArg, buf)) != XBEE_ENONE) {
xbee_log(1, "tx() returned %d... buffer was lost", ret);
continue;
}
if (xbee_ll_ext_item(needsFree, buf) == XBEE_ENONE) {
free(buf);
} else {
xsys_sem_post(&buf->sem);
}
}
return XBEE_ESHUTDOWN;
}
/* ######################################################################### */
xbee_err xbee_txQueueBuffer(struct xbee_txInfo *info, struct xbee_sbuf *buf) {
if (xbee_ll_add_tail(info->bufList, buf) != XBEE_ENONE) return XBEE_ELINKEDLIST;
if (xsys_sem_post(&info->sem) != 0) {
xbee_ll_ext_item(info->bufList, buf);
return XBEE_ESEMAPHORE;
}
return XBEE_ENONE;
}
/* ######################################################################### */
xbee_err xbee_txHandler(struct xbee_con *con, const unsigned char *buf, int len, int waitForAck) {
xbee_err ret;
struct xbee *xbee;
struct xbee_sbuf *oBuf;
if (!con) return XBEE_EMISSINGPARAM;
if (!con->conType) return XBEE_EINVAL;
if (!con->conType->txHandler || !con->conType->txHandler->func) return XBEE_ENOTIMPLEMENTED;
xbee = con->xbee;
oBuf = NULL;
if ((ret = con->conType->txHandler->func(con->xbee, con, con->iface->tx->ioArg, con->conType->txHandler->identifier, con->frameId, &con->address, &con->settings, buf, len, &oBuf)) != XBEE_ENONE) return ret;
if (!oBuf) return XBEE_EUNKNOWN;
if (waitForAck) xsys_sem_init(&oBuf->sem);
con->info.countTx++;
if ((ret = xbee_txQueueBuffer(con->iface->tx, oBuf)) != XBEE_ENONE) {
if (waitForAck) xsys_sem_destroy(&oBuf->sem);
free(oBuf);
return ret;
}
if (waitForAck) {
int ret;
/* wait here until the message has actually been transmitted
see xbee_tx() - this helps to keep the timeout value correct */
ret = xsys_sem_wait(&oBuf->sem);
/* perform this atomically */
xbee_ll_lock(needsFree);
xsys_sem_destroy(&oBuf->sem);
if (ret != 0) {
xbee_log(25, "[%p] Unable to wait for transfer to occur... The conType timeout may not be sufficient.", con);
_xbee_ll_add_tail(needsFree, oBuf, 0);
} else {
free(oBuf);
}
xbee_ll_unlock(needsFree);
} else {
xbee_ll_add_tail(needsFree, oBuf);
}
return XBEE_ENONE;
}