Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
DataFrame.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_DATAFRAME_H
4#define IMT_BASE_LIB_REMOTING_DATAFRAME_H
5
10
11namespace imt {
12namespace base {
13namespace lib {
14namespace remoting {
15
20
21public:
22
27
32
33 DataFrame(DataFrame const&) = delete;
34 DataFrame(DataFrame&&) = delete;
35 DataFrame& operator=(DataFrame const&) & = delete;
37
42 void init(DataFrame const& source);
43
48 size_t getSize() const {
49 return m_frameSize;
50 }
51
56 size_t getCapacity() const;
57
61 void clear();
62
67 uint8_t const* getData() const;
68
74 bool append(uint8_t const ch);
75
82 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for byte array.
83 bool setData(uint8_t const* const pData, uint32_t const dataSize);
84
91
97 // AXIVION Next Line AutosarC++19_03-A5.1.1: default initial crc value definition
98 bool appendCRC16(uint16_t const initialCrcValue = 0xFFFFU);
99
105 // AXIVION Next Line AutosarC++19_03-A5.1.1: default initial crc value definition
106 bool checkCRC16(uint16_t const initialCrcValue = 0xFFFFU) const;
107
113
114private:
115
116 bool ensureIsNotFull() const;
117 bool ensureTargetCapacity(size_t const targetCapacity) const;
118
119 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
120 size_t m_frameSize;
122};
123
124} // namespace remoting
125} // namespace lib
126} // namespace base
127} // namespace imt
128
129#endif // IMT_BASE_LIB_REMOTING_DATAFRAME_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
uint8_t const * getData() const
Returns a pointer to the first character of the frame.
uint8_t takeEnd()
Removes a character from the end of this data frame.
DataFrame(DataFrame const &)=delete
bool checkCRC16(uint16_t const initialCrcValue=0xFFFFU) const
Checks if the crc 16 is valid.
DataFrame & operator=(DataFrame &&) &=delete
bool removeCRC16()
Checks and removes a 2 byte crc.
void init(DataFrame const &source)
Initiae DataFrame with another DataFrame.
bool appendCRC16(uint16_t const initialCrcValue=0xFFFFU)
Calculates and appends a 2 byte crc.
size_t getCapacity() const
Returns the maximum capacity of this data frame.
DataFrame & operator=(DataFrame const &) &=delete
size_t getSize() const
Returns the current size of the data frame.
Definition DataFrame.h:48
bool setData(uint8_t const *const pData, uint32_t const dataSize)
Sets data.
void clear()
Clears the content of this DataFrame.
bool append(uint8_t const ch)
Appends a character at the end of this data frame.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int16 uint16_t
Definition stdint.h:63
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62