-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommunicationFrame.cpp
More file actions
436 lines (372 loc) · 11.9 KB
/
CommunicationFrame.cpp
File metadata and controls
436 lines (372 loc) · 11.9 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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
#include "CommunicationFrame.h"
#include <stdexcept>
#include <iostream>
#include <algorithm>
enum FrameComponent {
FrameStart,
FrameIdentifier,
FrameRTR,
FrameIDE,
FrameReserved,
FrameDataLength,
FrameData,
FrameCRC,
FrameCRCDelimiter,
FrameACK,
FrameACKDelimiter,
FrameEOF,
FrameIFS,
FrameEnded
};
CommunicationFrame::CommunicationFrame(unsigned deviceId, unsigned dataLength, unsigned long long data)
{
this->transmittedData = data;
this->identifier = dataMask(IDENTIFIER_LENGTH) & deviceId;
this->rtr = 0;
this->dataLength = dataMask(DL_LENGTH) & dataLength;
this->crc = 0;
this->acknowledge = 1;
encodeMessage();
}
CommunicationFrame::CommunicationFrame(std::bitset<FRAME_MAXIMUM_LENGTH> receivedMessage)
{
this->encodedMessage = receivedMessage;
// std::cout << receivedMessage << '\n' << encodedMessage << '\n';
receivedMessage[0] = 1;
// std::cout << receivedMessage << '\n' << encodedMessage << '\n';
this->transmittedData = 0;
this->identifier = 0;
this->rtr = 0;
this->dataLength = 0;
this->crc = 0;
this->acknowledge = 1;
decodeMessage();
}
bool CommunicationFrame::isStuffingBit(int index)
{
if (index < 5)
return false;
bool stuffing = true;
for (int i = index - 1; stuffing && i >= index - 5; --i)
stuffing = (encodedMessage[i] != encodedMessage[index]);
return stuffing;
}
static int calculateCRC(std::bitset<CHECKSUM_INPUT_LENGTH> input, int length)
{
std::bitset<CHECKSUM_INPUT_LENGTH + CRC_POLYNOMIAL_LENGTH> quotient;
static std::bitset<CRC_POLYNOMIAL_LENGTH + CHECKSUM_INPUT_LENGTH> denominator(CRC_POLYNOMIAL_STRING);
int result = 0;
bool aux;
for (int i = 0; i < length; ++i)
quotient[i] = input[i];
for (int i = length; i < length + CRC_POLYNOMIAL_LENGTH - 1; ++i)
quotient[i] = 0;
// std::cout << "The working copy is " << quotient << '\n';
while (length)
{
while (length && !quotient[0])
{
quotient >>= 1;
--length;
}
if (!length)
break;
quotient ^= denominator;
}
// std::cout << "The remainder is " << quotient << '\n';
for (int i = 0; i < (CRC_POLYNOMIAL_LENGTH - 1) / 2; ++i)
{
aux = quotient[i];
quotient[i] = quotient[CRC_POLYNOMIAL_LENGTH-2-i];
quotient[CRC_POLYNOMIAL_LENGTH-2-i] = aux;
}
// std::cout << "The remainder is " << quotient << '\n';
return quotient.to_ulong();
}
void CommunicationFrame::encodeMessage()
{
bool checkStuffing = true;
int consecutiveIdenticalBits = 0;
int idx = 0;
int currentComponentBits = 0;
int crcIdx = 0;
std::bitset<CHECKSUM_INPUT_LENGTH> crcInput;
FrameComponent state = FrameStart;
while (state != FrameEnded)
{
if (idx > 1 && encodedMessage[idx-1] == encodedMessage[idx-2])
++consecutiveIdenticalBits;
else
consecutiveIdenticalBits = 1;
if (checkStuffing && consecutiveIdenticalBits == 5)
{
// std::cout << "inserted stuffing at " << idx << '\n';
consecutiveIdenticalBits = 1;
encodedMessage[idx] = !encodedMessage[idx-1];
++idx;
continue;
}
++currentComponentBits;
switch(state) {
case FrameStart:
encodedMessage[idx] = 0;
currentComponentBits = 0;
state = FrameIdentifier;
break;
case FrameIdentifier:
encodedMessage[idx] = identifier & (1 << (IDENTIFIER_LENGTH - currentComponentBits));
if (currentComponentBits == IDENTIFIER_LENGTH)
{
currentComponentBits = 0;
state = FrameRTR;
}
break;
case FrameRTR:
encodedMessage[idx] = 0;
currentComponentBits = 0;
state = FrameIDE;
break;
case FrameIDE:
encodedMessage[idx] = 0;
currentComponentBits = 0;
state = FrameReserved;
break;
case FrameReserved:
encodedMessage[idx] = 0;
currentComponentBits = 0;
state = FrameDataLength;
break;
case FrameDataLength:
encodedMessage[idx] = dataLength & (1 << (DL_LENGTH - currentComponentBits));
if (currentComponentBits == DL_LENGTH)
{
currentComponentBits = 0;
state = FrameData;
}
break;
case FrameData:
encodedMessage[idx] = transmittedData & (1 << (dataLength * 8 - currentComponentBits));
if (currentComponentBits == dataLength * 8)
{
currentComponentBits = 0;
state = FrameCRC;
}
break;
case FrameCRC:
if (currentComponentBits == 1)
crc = calculateCRC(crcInput, crcIdx) & dataMask(CRC_LENGTH);
encodedMessage[idx] = crc & (1 << (CRC_LENGTH - currentComponentBits));
if (currentComponentBits == CRC_LENGTH)
{
currentComponentBits = 0;
state = FrameCRCDelimiter;
}
break;
case FrameCRCDelimiter:
encodedMessage[idx] = 1;
checkStuffing = false;
currentComponentBits = 0;
state = FrameACK;
break;
case FrameACK:
encodedMessage[idx] = 1;
currentComponentBits = 0;
state = FrameACKDelimiter;
ackIdx = idx;
break;
case FrameACKDelimiter:
encodedMessage[idx] = 1;
currentComponentBits = 0;
state = FrameEOF;
break;
case FrameEOF:
encodedMessage[idx] = 1;
if (currentComponentBits == EOF_LENGTH)
{
currentComponentBits = 0;
state = FrameIFS;
}
break;
case FrameIFS:
encodedMessage[idx] = 1;
if (currentComponentBits == IFS_LENGTH)
state = FrameEnded;
break;
default:
state = FrameEnded;
break;
}
if (state <= FrameCRC)
crcInput[crcIdx++] = encodedMessage[idx];
++idx;
}
}
void CommunicationFrame::decodeMessage()
{
bool checkStuffing = true;
int consecutiveIdenticalBits = 0;
int idx = 0;
int currentComponentBits = 0;
int crcIdx = 0;
std::bitset<CHECKSUM_INPUT_LENGTH> crcInput;
FrameComponent state = FrameStart;
while (state != FrameEnded)
{
if (checkStuffing && consecutiveIdenticalBits == 5)
{
// std::cout << "detected stuffing at " << idx << '\n';
consecutiveIdenticalBits = 1;
++idx;
continue;
}
if (idx && encodedMessage[idx] == encodedMessage[idx-1])
++consecutiveIdenticalBits;
else
consecutiveIdenticalBits = 1;
++currentComponentBits;
if (state < FrameCRC)
crcInput[crcIdx++] = encodedMessage[idx];
switch (state) {
case FrameStart:
consecutiveIdenticalBits = 1;
if (encodedMessage[idx])
throw std::runtime_error("The frame start bit should be dominant!");
currentComponentBits = 0;
state = FrameIdentifier;
// std::cout << "finished start at "<< idx << '\n';
break;
case FrameIdentifier:
identifier <<= 1;
identifier += encodedMessage[idx];
if (currentComponentBits == IDENTIFIER_LENGTH)
{
currentComponentBits = 0;
state = FrameRTR;
// std::cout << "finished id at " << idx << '\n';
}
break;
case FrameRTR:
rtr = encodedMessage[idx];
currentComponentBits = 0;
state = FrameIDE;
// std::cout << "finished rtr at " << idx << '\n';
break;
case FrameIDE:
if (encodedMessage[idx])
throw std::runtime_error("Only supporting base frame format!");
currentComponentBits = 0;
state = FrameReserved;
// std::cout << "finished ide at " << idx << '\n';
break;
case FrameReserved:
currentComponentBits = 0;
state = FrameDataLength;
// std::cout << "finished reserved at " << idx << '\n';
break;
case FrameDataLength:
dataLength <<= 1;
dataLength += encodedMessage[idx];
if (currentComponentBits == DL_LENGTH)
{
currentComponentBits = 0;
state = FrameData;
// std::cout << "finished data length at " << idx << '\n';
}
break;
case FrameData:
transmittedData <<= 1;
transmittedData += encodedMessage[idx];
if (currentComponentBits == dataLength * 8)
{
currentComponentBits = 0;
state = FrameCRC;
// std::cout << "finished data at " << idx << '\n';
}
break;
case FrameCRC:
crc <<= 1;
crc += encodedMessage[idx];
if (currentComponentBits == CRC_LENGTH)
{
currentComponentBits = 0;
state = FrameCRCDelimiter;
if (crc != calculateCRC(crcInput, crcIdx))
throw std::runtime_error("The CRC failed!");
// std::cout << "finished crc at " << idx << '\n';
}
break;
case FrameCRCDelimiter:
checkStuffing = false;
if (!encodedMessage[idx])
{
// std::cout << "was called for " << idx << '\n';
throw std::runtime_error("The CRC delimiter bit must be recessive!");
}
currentComponentBits = 0;
state = FrameACK;
break;
case FrameACK:
acknowledge = encodedMessage[idx];
currentComponentBits = 0;
state = FrameACKDelimiter;
ackIdx = idx;
break;
case FrameACKDelimiter:
if (!encodedMessage[idx])
throw std::runtime_error("The ACK delimiter bit must be recessive!");
currentComponentBits = 0;
state = FrameEOF;
break;
case FrameEOF:
if (!encodedMessage[idx])
throw std::runtime_error("The EOF bits must be recessive!");
if (currentComponentBits == EOF_LENGTH)
{
currentComponentBits = 0;
state = FrameIFS;
}
break;
case FrameIFS:
if (!encodedMessage[idx])
throw std::runtime_error("The IFS bits must be recessive!");
if (currentComponentBits == IFS_LENGTH)
state = FrameEnded;
break;
default:
state = FrameEnded;
break;
}
++idx;
}
// std::cout << encodedMessage << '\n';
}
bool operator <(CommunicationFrame const& a, CommunicationFrame const& b)
{
std::string aStr = a.encodedMessage.to_string();
std::string bStr = b.encodedMessage.to_string();
std::reverse(aStr.begin(), aStr.end());
std::reverse(bStr.begin(), bStr.end());
return aStr < bStr;
}
int CommunicationFrame::getIdentifier()
{
return identifier;
}
unsigned CommunicationFrame::getDataLength()
{
return dataLength;
}
unsigned long long CommunicationFrame::getTransmittedData()
{
return transmittedData;
}
std::bitset<FRAME_MAXIMUM_LENGTH> CommunicationFrame::getEncodedMessage()
{
return encodedMessage;
}
void CommunicationFrame::setAck(bool received)
{
int ackBit = received ? 0 : 1;
encodedMessage[ackIdx] = encodedMessage[ackIdx] & ackBit;
acknowledge = encodedMessage[ackIdx];
}