cueOS  2.4
cueOS - Universal Show Control OS for ARM
Q_parser.h
1
9#ifndef _Q_PARSER_H_
10#define _Q_PARSER_H_
11
12#include <stdint.h>
13#include <stdlib.h>
14
15#define Q_PACKETID_BYTELENGTH 6
16#define Q_OPCODE_BYTELENGTH 1
17#define Q_REQUESTID_BYTELENGTH 2
18#define Q_NODETYPE_BYTELENGTH 1
19#define Q_NODEID_BYTELENGTH 1
21#define Q_HEADER_BYTELENGTH Q_PACKETID_BYTELENGTH + Q_OPCODE_BYTELENGTH
22#define Q_DISCOVERREPLY_BYTELENGTH Q_HEADER_BYTELENGTH + Q_NODETYPE_BYTELENGTH + Q_NODEID_BYTELENGTH
23#define Q_POLLREPLY_BYTELENGTH Q_DISCOVERREPLY_BYTELENGTH
25#define Q_OPCODE_INDEX Q_PACKETID_BYTELENGTH
26#define Q_PAYLOAD_INDEX Q_OPCODE_INDEX
28#define Q_PACKETID_STRING "ASLS-Q"
35typedef enum{
45 Q_CMD_PROBE_DIAGNOSTIC, //TODO: maybe remove this and pass everything to poll
50
51
55typedef struct {
57 char *raw_data;
58 char *payload;
60
61
62Q_packet_s *Q_parser_parse(void *data, uint8_t len);
63char *Q_parser_forge_discover_reply(uint8_t node_id);
64char *Q_parser_forge_poll_reply(uint8_t node_id);
65void Q_parser_free(Q_packet_s *packet);
66
67#endif
68
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
Q_packet_opcode_cmd_e
List of Q packet opcodes.
Definition: Q_parser.h:35
void Q_parser_free(Q_packet_s *packet)
Frees packet's dynamically allocated ressources.
Definition: Q_parser.c:73
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_CONTROL_RESTORE
Definition: Q_parser.h:41
@ Q_CMD_TRIGGER_RESUME
Definition: Q_parser.h:38
@ Q_CMD_PROBE_POLL
Definition: Q_parser.h:44
@ Q_CMD_CONTROL_ACTUATOR
Definition: Q_parser.h:42
@ Q_CMD_PROBE_DIAGNOSTIC
Definition: Q_parser.h:45
@ 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_PAUSE
Definition: Q_parser.h:37
@ Q_CMD_PROBE_DISCOVER
Definition: Q_parser.h:43
@ Q_CMD_TRIGGER_START
Definition: Q_parser.h:36
@ Q_CMD_CONTROL_ALLOFF
Definition: Q_parser.h:40
@ Q_CMD_TRIGGER_STOP
Definition: Q_parser.h:39
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