You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
1.7 KiB
86 lines
1.7 KiB
#include "main.h"
|
|
#include "payload_parser.h"
|
|
|
|
#define check_capacity(pp_p, needed) \
|
|
assert_param ((pp_p)->ptr + (needed) <= (pp_p)->len)
|
|
|
|
|
|
uint8_t pp_u8(PayloadParser *pp)
|
|
{
|
|
check_capacity(pp, sizeof(uint8_t));
|
|
|
|
return pp->buf[pp->ptr++];
|
|
}
|
|
|
|
uint16_t pp_u16(PayloadParser *pp)
|
|
{
|
|
check_capacity(pp, sizeof(uint16_t));
|
|
uint16_t x = 0;
|
|
|
|
if (pp->bigendian) {
|
|
x |= pp->buf[pp->ptr++] << 8;
|
|
x |= pp->buf[pp->ptr++];
|
|
} else {
|
|
x |= pp->buf[pp->ptr++];
|
|
x |= pp->buf[pp->ptr++] << 8;
|
|
}
|
|
return x;
|
|
}
|
|
|
|
uint32_t pp_u32(PayloadParser *pp)
|
|
{
|
|
check_capacity(pp, sizeof(uint32_t));
|
|
uint32_t x = 0;
|
|
|
|
if (pp->bigendian) {
|
|
x |= (uint32_t) (pp->buf[pp->ptr++] << 24);
|
|
x |= (uint32_t) (pp->buf[pp->ptr++] << 16);
|
|
x |= (uint32_t) (pp->buf[pp->ptr++] << 8);
|
|
x |= pp->buf[pp->ptr++];
|
|
} else {
|
|
x |= pp->buf[pp->ptr++];
|
|
x |= (uint32_t) (pp->buf[pp->ptr++] << 8);
|
|
x |= (uint32_t) (pp->buf[pp->ptr++] << 16);
|
|
x |= (uint32_t) (pp->buf[pp->ptr++] << 24);
|
|
}
|
|
return x;
|
|
}
|
|
|
|
const uint8_t *pp_rest(PayloadParser *pp, size_t *length)
|
|
{
|
|
int len = (int)(pp->len - pp->ptr);
|
|
if (len <= 0) {
|
|
if (length != NULL) *length = 0;
|
|
return NULL;
|
|
}
|
|
|
|
if (length != NULL) {
|
|
*length = (size_t)len;
|
|
}
|
|
|
|
return pp->buf + pp->ptr; // pointer arith
|
|
}
|
|
|
|
/** Read int8_t from the payload. */
|
|
int8_t pp_i8(PayloadParser *pp)
|
|
{
|
|
return ((union conv8){.u8 = pp_u8(pp)}).i8;
|
|
}
|
|
|
|
/** Read int16_t from the payload. */
|
|
int16_t pp_i16(PayloadParser *pp)
|
|
{
|
|
return ((union conv16){.u16 = pp_u16(pp)}).i16;
|
|
}
|
|
|
|
/** Read int32_t from the payload. */
|
|
int32_t pp_i32(PayloadParser *pp)
|
|
{
|
|
return ((union conv32){.u32 = pp_u32(pp)}).i32;
|
|
}
|
|
|
|
/** Read 4-byte float from the payload. */
|
|
float pp_float(PayloadParser *pp)
|
|
{
|
|
return ((union conv32){.u32 = pp_u32(pp)}).f32;
|
|
}
|
|
|