-
Notifications
You must be signed in to change notification settings - Fork 41
/
mavlink_json.c
281 lines (249 loc) · 8.5 KB
/
mavlink_json.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
/*
this is the core code for the MAVLink <-> JSON gateway. It can
convert MAVLink messages to JSON, and convert string function
arguments to a MAVLink packet
It uses the mavlink_field_info_t meta-data generated by the
pymavlink C generator
*/
#define MAVLINK_USE_MESSAGE_INFO
#include "includes.h"
#include "web_server.h"
#include "mavlink_core.h"
#include "mavlink_json.h"
static void print_one_field(struct sock_buf *sock, const mavlink_message_t *msg, const mavlink_field_info_t *f, int idx)
{
//#define PRINT_FORMAT(f, def) (f->print_format?f->print_format:def)
#define PRINT_FORMAT(f, def) (def)
switch (f->type) {
case MAVLINK_TYPE_CHAR:
sock_printf(sock, PRINT_FORMAT(f, "%c"), _MAV_RETURN_char(msg, f->wire_offset+idx*1));
break;
case MAVLINK_TYPE_UINT8_T:
sock_printf(sock, PRINT_FORMAT(f, "%u"), _MAV_RETURN_uint8_t(msg, f->wire_offset+idx*1));
break;
case MAVLINK_TYPE_INT8_T:
sock_printf(sock, PRINT_FORMAT(f, "%d"), _MAV_RETURN_int8_t(msg, f->wire_offset+idx*1));
break;
case MAVLINK_TYPE_UINT16_T:
sock_printf(sock, PRINT_FORMAT(f, "%u"), _MAV_RETURN_uint16_t(msg, f->wire_offset+idx*2));
break;
case MAVLINK_TYPE_INT16_T:
sock_printf(sock, PRINT_FORMAT(f, "%d"), _MAV_RETURN_int16_t(msg, f->wire_offset+idx*2));
break;
case MAVLINK_TYPE_UINT32_T:
sock_printf(sock, PRINT_FORMAT(f, "%lu"), (unsigned long)_MAV_RETURN_uint32_t(msg, f->wire_offset+idx*4));
break;
case MAVLINK_TYPE_INT32_T:
sock_printf(sock, PRINT_FORMAT(f, "%ld"), (long)_MAV_RETURN_int32_t(msg, f->wire_offset+idx*4));
break;
case MAVLINK_TYPE_UINT64_T:
sock_printf(sock, PRINT_FORMAT(f, "%llu"), (unsigned long long)_MAV_RETURN_uint64_t(msg, f->wire_offset+idx*8));
break;
case MAVLINK_TYPE_INT64_T:
sock_printf(sock, PRINT_FORMAT(f, "%lld"), (long long)_MAV_RETURN_int64_t(msg, f->wire_offset+idx*8));
break;
case MAVLINK_TYPE_FLOAT:
sock_printf(sock, PRINT_FORMAT(f, "%f"), (double)_MAV_RETURN_float(msg, f->wire_offset+idx*4));
break;
case MAVLINK_TYPE_DOUBLE:
sock_printf(sock, PRINT_FORMAT(f, "%f"), _MAV_RETURN_double(msg, f->wire_offset+idx*8));
break;
}
}
static void print_field(struct sock_buf *sock, const mavlink_message_t *msg, const mavlink_field_info_t *f)
{
sock_printf(sock, "\"%s\": ", f->name);
if (f->array_length == 0) {
print_one_field(sock, msg, f, 0);
sock_printf(sock, " ");
} else {
unsigned i;
/* print an array */
if (f->type == MAVLINK_TYPE_CHAR) {
char *str = talloc_strndup(sock, f->wire_offset+(const char *)_MAV_PAYLOAD(msg), f->array_length);
sock_printf(sock, "\"%s\"", str);
talloc_free(str);
} else {
sock_printf(sock, "[ ");
for (i=0; i<f->array_length; i++) {
print_one_field(sock, msg, f, i);
if (i < f->array_length-1) {
sock_printf(sock, ", ");
}
}
sock_printf(sock, "]");
}
}
sock_printf(sock, " ");
}
/*
print a JSON string for a message to the given socket
*/
bool mavlink_json_message(struct sock_buf *sock, const mavlink_message_t *msg, uint32_t receive_ms)
{
const mavlink_message_info_t *m = mavlink_get_message_info(msg);
if (m == NULL) {
return false;
}
const mavlink_field_info_t *f = m->fields;
unsigned i;
sock_printf(sock, "\"%s\" : { ", m->name);
for (i=0; i<m->num_fields; i++) {
print_field(sock, msg, &f[i]);
sock_printf(sock, ",");
}
sock_printf(sock, "\"_seq\" : %u, ", msg->seq);
sock_printf(sock, "\"_sysid\" : %u, ", msg->sysid);
sock_printf(sock, "\"_compid\" : %u, ", msg->compid);
sock_printf(sock, "\"_age\" : %u", get_time_boot_ms() - receive_ms);
sock_printf(sock, "}");
return true;
}
/*
print a JSON string for a message to the given socket
*/
const char *mavlink_message_name(const mavlink_message_t *msg)
{
const mavlink_message_info_t *m = mavlink_get_message_info(msg);
if (m) {
return m->name;
}
return NULL;
}
/*
send a mavlink message using string arguments
*/
bool mavlink_message_send_args(int argc, char **argv)
{
if (argc < 1) {
return false;
}
const char *msg_name = argv[0];
const mavlink_message_info_t *m = mavlink_get_message_info_by_name(msg_name);
if (m == NULL) {
console_printf("Invalid message '%s'\n", msg_name);
return false;
}
if (argc > m->num_fields+1) {
console_printf("Invalid number of fields %u for %s\n", argc-1, msg_name);
return false;
}
// pack the message
mavlink_message_t *msg = talloc_zero(NULL, mavlink_message_t);
char *buf = _MAV_PAYLOAD_NON_CONST(msg);
uint8_t i;
msg->msgid = m->msgid;
for (i=1; i<=argc; i++) {
const mavlink_field_info_t *f = &m->fields[i-1];
const char *arg = argv[i];
if (arg == NULL) {
continue;
}
switch (f->type) {
case MAVLINK_TYPE_CHAR:
if (f->array_length > 0) {
_mav_put_char_array(buf, f->wire_offset, arg, f->array_length);
} else {
_mav_put_char(buf, f->wire_offset, arg[0]);
}
break;
case MAVLINK_TYPE_UINT8_T: {
uint8_t b = simple_strtoul(arg, NULL, 0);
_mav_put_uint8_t(buf, f->wire_offset, b);
break;
}
case MAVLINK_TYPE_UINT16_T: {
uint16_t b = simple_strtoul(arg, NULL, 0);
_mav_put_uint16_t(buf, f->wire_offset, b);
break;
}
case MAVLINK_TYPE_UINT32_T: {
uint32_t b = simple_strtoul(arg, NULL, 0);
_mav_put_uint32_t(buf, f->wire_offset, b);
break;
}
case MAVLINK_TYPE_UINT64_T: {
uint64_t b = simple_strtoul(arg, NULL, 0);
_mav_put_uint64_t(buf, f->wire_offset, b);
break;
}
case MAVLINK_TYPE_INT8_T: {
int8_t b = simple_strtol(arg, NULL, 0);
_mav_put_int8_t(buf, f->wire_offset, b);
break;
}
case MAVLINK_TYPE_INT16_T: {
int16_t b = strtol(arg, NULL, 0);
_mav_put_int16_t(buf, f->wire_offset, b);
break;
}
case MAVLINK_TYPE_INT32_T: {
int32_t b = strtol(arg, NULL, 0);
_mav_put_int32_t(buf, f->wire_offset, b);
break;
}
case MAVLINK_TYPE_INT64_T: {
int64_t b = strtol(arg, NULL, 0);
_mav_put_int64_t(buf, f->wire_offset, b);
break;
}
case MAVLINK_TYPE_FLOAT: {
float b = atof(arg);
_mav_put_float(buf, f->wire_offset, b);
break;
}
case MAVLINK_TYPE_DOUBLE: {
double b = atof(arg);
_mav_put_double(buf, f->wire_offset, b);
break;
}
}
}
uint8_t msglen = 0;
for (i=0; i<m->num_fields; i++) {
const mavlink_field_info_t *f = &m->fields[i];
uint8_t len = 0;
switch (f->type) {
case MAVLINK_TYPE_CHAR:
case MAVLINK_TYPE_UINT8_T:
case MAVLINK_TYPE_INT8_T:
if (f->array_length > 0) {
len = f->array_length;
} else {
len = 1;
}
break;
case MAVLINK_TYPE_INT16_T:
case MAVLINK_TYPE_UINT16_T:
len = 2;
break;
case MAVLINK_TYPE_INT32_T:
case MAVLINK_TYPE_UINT32_T:
len = 4;
break;
case MAVLINK_TYPE_INT64_T:
case MAVLINK_TYPE_UINT64_T:
len = 8;
break;
case MAVLINK_TYPE_FLOAT:
len = 4;
break;
case MAVLINK_TYPE_DOUBLE:
len = 8;
break;
}
if (len + f->wire_offset > msglen) {
msglen = len + f->wire_offset;
}
}
// send as MAVLink2
extern void mavlink_set_proto_version(uint8_t chan, unsigned int version);
extern uint8_t mavlink_get_crc_extra(const mavlink_message_t *msg);
mavlink_set_proto_version(MAVLINK_COMM_FC, 2);
mavlink_finalize_message_chan(msg, mavlink_system.sysid, mavlink_system.compid,
MAVLINK_COMM_FC,
msglen, msglen,
mavlink_get_crc_extra(msg));
mavlink_fc_send(msg);
return true;
}