-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy patherpc_basic_codec.cpp
More file actions
358 lines (301 loc) · 6.95 KB
/
erpc_basic_codec.cpp
File metadata and controls
358 lines (301 loc) · 6.95 KB
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/*
* Copyright (c) 2014, Freescale Semiconductor, Inc.
* Copyright 2016-2017 NXP
* All rights reserved.
*
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "erpc_basic_codec.h"
#include <cassert>
using namespace erpc;
////////////////////////////////////////////////////////////////////////////////
// Code
////////////////////////////////////////////////////////////////////////////////
const uint32_t BasicCodec::kBasicCodecVersion = 1;
void BasicCodec::startWriteMessage(message_type_t type, uint32_t service, uint32_t request, uint32_t sequence)
{
uint32_t header = (kBasicCodecVersion << 24) | ((service & 0xff) << 16) | ((request & 0xff) << 8) | (type & 0xff);
write(header);
write(sequence);
}
void BasicCodec::writeData(const void *value, uint32_t length)
{
if (!m_status)
{
if (value != NULL)
{
m_status = m_cursor.write(value, length);
}
else
{
m_status = kErpcStatus_MemoryError;
}
}
}
void BasicCodec::write(bool value)
{
// Make sure the bool is a single byte.
uint8_t v = value;
writeData(&v, sizeof(v));
}
void BasicCodec::write(int8_t value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::write(int16_t value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::write(int32_t value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::write(int64_t value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::write(uint8_t value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::write(uint16_t value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::write(uint32_t value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::write(uint64_t value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::write(float value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::write(double value)
{
writeData(&value, sizeof(value));
}
void BasicCodec::writePtr(uintptr_t value)
{
uint8_t ptrSize = sizeof(value);
write(ptrSize);
writeData(&value, ptrSize);
}
void BasicCodec::writeString(uint32_t length, const char *value)
{
// Just treat the string as binary but add trailing NULL.
writeBinary(length + 1, reinterpret_cast<const uint8_t *>(value));
}
void BasicCodec::writeBinary(uint32_t length, const uint8_t *value)
{
// Write the blob length as a u32.
write(length);
writeData(value, length);
}
void BasicCodec::startWriteList(uint32_t length)
{
// Write the list length as a u32.
write(length);
}
void BasicCodec::startWriteUnion(int32_t discriminator)
{
// Write the union discriminator as a u32.
write(discriminator);
}
void BasicCodec::writeNullFlag(bool isNull)
{
write(static_cast<uint8_t>(isNull ? kIsNull : kNotNull));
}
void BasicCodec::writeCallback(arrayOfFunPtr callbacks, uint8_t callbacksCount, funPtr callback)
{
assert(callbacksCount > 1);
// callbacks = callbacks table
for (uint8_t i = 0; i < callbacksCount; i++)
{
if (callbacks[i] == callback)
{
write(i);
break;
}
if (i + 1 == callbacksCount)
{
updateStatus(kErpcStatus_UnknownCallback);
}
}
}
void BasicCodec::writeCallback(funPtr callback1, funPtr callback2)
{
// callbacks = callback directly
// When declared only one callback function no serialization is needed.
if (callback1 != callback2)
{
updateStatus(kErpcStatus_UnknownCallback);
}
}
void BasicCodec::startReadMessage(message_type_t *type, uint32_t *service, uint32_t *request, uint32_t *sequence)
{
uint32_t header;
read(&header);
if (((header >> 24) & 0xff) != kBasicCodecVersion)
{
updateStatus(kErpcStatus_InvalidMessageVersion);
}
if (!m_status)
{
*service = ((header >> 16) & 0xff);
*request = ((header >> 8) & 0xff);
*type = static_cast<message_type_t>(header & 0xff);
read(sequence);
}
}
void BasicCodec::readData(void *value, uint32_t length)
{
if (!m_status)
{
if (value != NULL)
{
m_status = m_cursor.read(value, length);
}
else
{
m_status = kErpcStatus_MemoryError;
}
}
}
void BasicCodec::read(bool *value)
{
uint8_t v = 0;
readData(&v, sizeof(v));
if (!m_status)
{
*value = v;
}
}
void BasicCodec::read(int8_t *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::read(int16_t *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::read(int32_t *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::read(int64_t *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::read(uint8_t *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::read(uint16_t *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::read(uint32_t *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::read(uint64_t *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::read(float *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::read(double *value)
{
readData(value, sizeof(*value));
}
void BasicCodec::readPtr(uintptr_t *value)
{
uint8_t ptrSize;
read(&ptrSize);
if (ptrSize > sizeof(*value))
{
updateStatus(kErpcStatus_BadAddressScale);
}
readData(value, ptrSize);
}
void BasicCodec::readString(uint32_t *length, char **value)
{
readBinary(length, reinterpret_cast<uint8_t **>(value));
}
void BasicCodec::readBinary(uint32_t *length, uint8_t **value)
{
// Read length first as u32.
read(length);
if (!m_status)
{
if (m_cursor.getRemaining() >= *length)
{
// Return current pointer into buffer.
*value = m_cursor.get();
// Skip over data.
m_cursor += *length;
}
else
{
*length = 0;
m_status = kErpcStatus_BufferOverrun;
}
}
else
{
*length = 0;
}
}
void BasicCodec::startReadList(uint32_t *length)
{
// Read list length as u32.
read(length);
if (m_status)
{
*length = 0;
}
}
void BasicCodec::startReadUnion(int32_t *discriminator)
{
// Read union discriminator as u32.
read(discriminator);
}
void BasicCodec::readNullFlag(bool *isNull)
{
uint8_t flag;
read(&flag);
if (!m_status)
{
*isNull = (flag == kIsNull);
}
}
void BasicCodec::readCallback(arrayOfFunPtr callbacks, uint8_t callbacksCount, funPtr *callback)
{
assert(callbacksCount > 1);
// callbacks = callbacks table
uint8_t _tmp_local;
read(&_tmp_local);
if (!m_status)
{
if (_tmp_local < callbacksCount)
{
*callback = callbacks[_tmp_local];
}
else
{
m_status = kErpcStatus_UnknownCallback;
}
}
}
void BasicCodec::readCallback(funPtr callbacks1, funPtr *callback2)
{
// callbacks = callback directly
*callback2 = callbacks1;
}