forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathot_rpc_message.c
150 lines (110 loc) · 3.72 KB
/
ot_rpc_message.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
/*
* Copyright (c) 2024 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/
#include <nrf_rpc/nrf_rpc_serialize.h>
#include <ot_rpc_ids.h>
#include <ot_rpc_types.h>
#include <ot_rpc_common.h>
#include <nrf_rpc_cbor.h>
#include <openthread/error.h>
#include <openthread/udp.h>
#include <string.h>
otError otMessageAppend(otMessage *aMessage, const void *aBuf, uint16_t aLength)
{
struct nrf_rpc_cbor_ctx ctx;
ot_rpc_res_tab_key key = (ot_rpc_res_tab_key)aMessage;
otError error = OT_ERROR_NONE;
if (aLength == 0 || aBuf == NULL) {
return error;
}
NRF_RPC_CBOR_ALLOC(&ot_group, ctx, aLength + sizeof(key) + 5);
nrf_rpc_encode_uint(&ctx, key);
nrf_rpc_encode_buffer(&ctx, aBuf, aLength);
nrf_rpc_cbor_cmd_no_err(&ot_group, OT_RPC_CMD_MESSAGE_APPEND, &ctx, ot_rpc_decode_error,
&error);
return error;
}
otMessage *otUdpNewMessage(otInstance *aInstance, const otMessageSettings *aSettings)
{
otMessage *msg = NULL;
struct nrf_rpc_cbor_ctx ctx;
ot_rpc_res_tab_key key;
ARG_UNUSED(aInstance);
NRF_RPC_CBOR_ALLOC(&ot_group, ctx, sizeof(otMessageSettings) + 3);
ot_rpc_encode_message_settings(&ctx, aSettings);
nrf_rpc_cbor_cmd_rsp_no_err(&ot_group, OT_RPC_CMD_UDP_NEW_MESSAGE, &ctx);
key = nrf_rpc_decode_uint(&ctx);
if (!nrf_rpc_decoding_done_and_check(&ot_group, &ctx)) {
ot_rpc_report_rsp_decoding_error(OT_RPC_CMD_UDP_NEW_MESSAGE);
return msg;
}
msg = (otMessage *)key;
return msg;
}
void otMessageFree(otMessage *aMessage)
{
struct nrf_rpc_cbor_ctx ctx;
ot_rpc_res_tab_key key = (ot_rpc_res_tab_key)aMessage;
NRF_RPC_CBOR_ALLOC(&ot_group, ctx, sizeof(ot_rpc_res_tab_key) + 1);
nrf_rpc_encode_uint(&ctx, key);
nrf_rpc_cbor_cmd_rsp_no_err(&ot_group, OT_RPC_CMD_MESSAGE_FREE, &ctx);
if (!nrf_rpc_decoding_done_and_check(&ot_group, &ctx)) {
ot_rpc_report_rsp_decoding_error(OT_RPC_CMD_MESSAGE_FREE);
}
}
uint16_t otMessageGetLength(const otMessage *aMessage)
{
struct nrf_rpc_cbor_ctx ctx;
ot_rpc_res_tab_key key = (ot_rpc_res_tab_key)aMessage;
uint16_t ret = 0;
NRF_RPC_CBOR_ALLOC(&ot_group, ctx, sizeof(uint32_t) + 1);
nrf_rpc_encode_uint(&ctx, key);
nrf_rpc_cbor_cmd_rsp_no_err(&ot_group, OT_RPC_CMD_MESSAGE_GET_LENGTH, &ctx);
ret = nrf_rpc_decode_uint(&ctx);
if (!nrf_rpc_decoding_done_and_check(&ot_group, &ctx)) {
ot_rpc_report_rsp_decoding_error(OT_RPC_CMD_MESSAGE_GET_LENGTH);
return 0;
}
return ret;
}
uint16_t otMessageGetOffset(const otMessage *aMessage)
{
struct nrf_rpc_cbor_ctx ctx;
ot_rpc_res_tab_key key = (ot_rpc_res_tab_key)aMessage;
uint16_t ret = 0;
NRF_RPC_CBOR_ALLOC(&ot_group, ctx, sizeof(uint32_t) + 1);
nrf_rpc_encode_uint(&ctx, key);
nrf_rpc_cbor_cmd_rsp_no_err(&ot_group, OT_RPC_CMD_MESSAGE_GET_OFFSET, &ctx);
ret = nrf_rpc_decode_uint(&ctx);
if (!nrf_rpc_decoding_done_and_check(&ot_group, &ctx)) {
ot_rpc_report_rsp_decoding_error(OT_RPC_CMD_MESSAGE_GET_OFFSET);
return 0;
}
return ret;
}
uint16_t otMessageRead(const otMessage *aMessage, uint16_t aOffset, void *aBuf, uint16_t aLength)
{
struct nrf_rpc_cbor_ctx ctx;
ot_rpc_res_tab_key key = (ot_rpc_res_tab_key)aMessage;
size_t size = 0;
const void *buf = NULL;
if (aLength == 0 || aBuf == NULL || aMessage == NULL) {
return 0;
}
NRF_RPC_CBOR_ALLOC(&ot_group, ctx, sizeof(key) + sizeof(aOffset) + sizeof(aLength) + 5);
nrf_rpc_encode_uint(&ctx, key);
nrf_rpc_encode_uint(&ctx, aOffset);
nrf_rpc_encode_uint(&ctx, aLength);
nrf_rpc_cbor_cmd_rsp_no_err(&ot_group, OT_RPC_CMD_MESSAGE_READ, &ctx);
buf = nrf_rpc_decode_buffer_ptr_and_size(&ctx, &size);
if (buf && size) {
memcpy(aBuf, buf, MIN(size, aLength));
}
if (!nrf_rpc_decoding_done_and_check(&ot_group, &ctx)) {
ot_rpc_report_rsp_decoding_error(OT_RPC_CMD_MESSAGE_READ);
return 0;
}
return MIN(size, aLength);
}