cueOS  2.4
cueOS - Universal Show Control OS for ARM
Q_parser.c
1
6#include <stdio.h>
7#include <string.h>
8#include "cmsis_os.h"
9#include "Q_parser.h"
10
11
12/***============================================================================================================================
13 * Private functions definitions
14 * These functions are only accessible from within the file's scope
15 *=============================================================================================================================*/
16
23static uint8_t _Q_parser_check_validity(Q_packet_s *packet){
24 if(strncmp(packet->raw_data, Q_PACKETID_STRING, Q_PACKETID_BYTELENGTH) == 0){
25 if(packet->opcode >= Q_CMD_TRIGGER_START && packet->opcode <= Q_CMD_REPLY_DIAGNOSTIC){
26 return 1;
27 }
28 }
29 return 0;
30}
31
32
33/***============================================================================================================================
34 * Public functions definitions
35 * These functions can be accessed outside of the file's scope
36 * @see Q_parser.h for declarations
37 *=============================================================================================================================*/
38
46Q_packet_s *Q_parser_parse(void *data, uint8_t len){
47
48 Q_packet_s *packet = pvPortMalloc(sizeof(Q_packet_s));
49
50 packet->raw_data = pvPortMalloc(sizeof(char) * len);
51 memcpy(packet->raw_data, data, len);
52
53 packet->opcode = packet->raw_data[Q_OPCODE_INDEX];
54
55 if(_Q_parser_check_validity(packet)){
56 packet->payload = pvPortMalloc(sizeof(char) * (len - Q_PAYLOAD_INDEX));
57 memcpy(packet->payload, packet->raw_data + Q_PAYLOAD_INDEX, len - Q_PAYLOAD_INDEX);
58 return packet;
59 }else{
60 vPortFree(packet->raw_data);
61 vPortFree(packet);
62 }
63
64 return NULL;
65
66}
67
74 if(packet != NULL){
75 vPortFree(packet->raw_data);
76 vPortFree(packet->payload);
77 vPortFree(packet);
78 }
79}
80
87char *Q_parser_forge_discover_reply(uint8_t node_id){
88 char *raw_data = pvPortMalloc(sizeof(uint8_t) * Q_DISCOVERREPLY_BYTELENGTH);
89 sprintf(raw_data, "%s%c%c", Q_PACKETID_STRING, Q_CMD_REPLY_DISCOVER, node_id);
90 return raw_data;
91}
92
99char *Q_parser_forge_poll_reply(uint8_t node_id){
100 char *raw_data = pvPortMalloc(sizeof(uint8_t) * Q_POLLREPLY_BYTELENGTH);
101 sprintf(raw_data, "%s%c%c", Q_PACKETID_STRING, Q_CMD_REPLY_POLL, node_id);
102 return raw_data;
103}
Q_packet_s * Q_parser_parse(void *data, uint8_t len)
parses and converts received data into a Q_packet instance
Definition: Q_parser.c:46
char * Q_parser_forge_poll_reply(uint8_t node_id)
Forges a poll reply packet using provided node's id.
Definition: Q_parser.c:99
#define Q_PAYLOAD_INDEX
Definition: Q_parser.h:26
#define Q_OPCODE_INDEX
Definition: Q_parser.h:25
#define Q_PACKETID_STRING
Definition: Q_parser.h:28
#define Q_DISCOVERREPLY_BYTELENGTH
Definition: Q_parser.h:22
void Q_parser_free(Q_packet_s *packet)
Frees packet's dynamically allocated ressources.
Definition: Q_parser.c:73
#define Q_PACKETID_BYTELENGTH
Definition: Q_parser.h:15
#define Q_POLLREPLY_BYTELENGTH
Definition: Q_parser.h:23
char * Q_parser_forge_discover_reply(uint8_t node_id)
Forges a discover reply packet using provided node's id.
Definition: Q_parser.c:87
@ Q_CMD_REPLY_DISCOVER
Definition: Q_parser.h:46
@ Q_CMD_REPLY_DIAGNOSTIC
Definition: Q_parser.h:48
@ Q_CMD_REPLY_POLL
Definition: Q_parser.h:47
@ Q_CMD_TRIGGER_START
Definition: Q_parser.h:36
Q packet structure object.
Definition: Q_parser.h:55
char * payload
Definition: Q_parser.h:58
Q_packet_opcode_cmd_e opcode
Definition: Q_parser.h:56
char * raw_data
Definition: Q_parser.h:57