Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
DataFrameSyncReceiveLayer.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_REMOTING_DATAFRAMESYNCRECEIVELAYER_H
4#define IMT_BASE_LIB_REMOTING_DATAFRAMESYNCRECEIVELAYER_H
5
12
13namespace imt {
14namespace base {
15namespace lib {
16namespace remoting {
17
24// AXIVION Next Construct AutosarC++19_03-M3.4.1: No definition in primary file to separate concerns.
27
28public:
29
33 // AXIVION Next Line AutosarC++19_03-M5.0.12: required construct / Usage allowed, default frame end char definition
34 static constexpr uint8_t DEFAULT_FRAME_END_CHARACTER {static_cast<uint8_t>('~')};
35
41 explicit DataFrameSyncReceiveLayer(DataReceiverIfc& upperLevelReceiver, uint8_t const frameEndCharacter = DEFAULT_FRAME_END_CHARACTER);
42
46 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for byte array.
47 void onDataReceived(uint8_t const* const pData, uint32_t const countDataBytes) final;
48
49private:
50
51 void handleByte(uint8_t const dataElement);
52 void handleByteInInvalidFrame(uint8_t const dataElement);
53 void handleByteInEscaping(uint8_t const dataElement);
54 void handleByteInFrame(uint8_t const dataElement);
55 void handleFrameEnd();
56
57 // AXIVION Next Line AutosarC++19_03-M5.0.12: Usage allowed, default escape char definition
58 static constexpr uint8_t ESCAPE_CHARACTER {static_cast<uint8_t>('\\')};
59
60 uint8_t const m_frameEndCharacter;
61 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
62 bool m_isEscaping;
63 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
64 bool m_hasDetectedInvalidFrame;
65 DataReceiverIfc& m_upperLevelReceiver;
66 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
67 DataFrame m_receiveDataFrame;
68};
69
70} // namespace remoting
71} // namespace lib
72} // namespace base
73} // namespace imt
74
75#endif // IMT_BASE_LIB_REMOTING_DATAFRAMESYNCRECEIVELAYER_H
Base class for a not movable class that disables copy, assignment and move of instances.
Definition Nonmovable.h:51
Representation of a package of data that gets transmitted e.g.
Definition DataFrame.h:19
This layer receives a byte stream from a lower layer and tries to generate data frames out of the byt...
void onDataReceived(uint8_t const *const pData, uint32_t const countDataBytes) final
DataFrameSyncReceiveLayer(DataReceiverIfc &upperLevelReceiver, uint8_t const frameEndCharacter=DEFAULT_FRAME_END_CHARACTER)
Constructor.
static constexpr uint8_t DEFAULT_FRAME_END_CHARACTER
Default frame end character.
Inteface for a receiver that can be called when received data needs to be processed.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62