Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
Deserializer.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2//
3// ActiveParts (AP) and the corresponding Data Flow Framework (DFF) is invented and designed by Jakob Daescher.
4// ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS OF THE COPYRIGHT NOTICE.
5// ===================================================================================================
6// COPYRIGHT NOTICE
7// ===================================================================================================
8// Copyright (C) 2005-2075, IMT Information Management Technology AG, 9470 Buchs, Switzerland
9// All rights reserved.
10// This code is proprietary software of IMT Information Management Technology AG (hereinafter: "IMT").
11// Proprietary software is computer software licensed under exclusive legal right of IMT.
12//
13// The licensee is given the irrevocable, perpetual, worldwide, non-exclusive right and license to use,
14// execute and reproduce the software in binary form within the licensed products.
15//
16// Redistribution and use in source forms, without modification, are permitted provided that the following conditions are met:
17// (1) Copying of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18// (2) Copying of source code is only allowed for regulatory documentation and archiving purposes
19// (3) Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
21//
22// IMT provide no reassurances that the source code provided does not infringe
23// any patent, copyright, or any other intellectual property rights of third parties.
24// IMT disclaim any liability to any recipient for claims brought against
25// recipient by any third party for infringement of that parties intellectual property rights.
26//
27// THIS SOFTWARE IS PROVIDED BY IMT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL IMT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCURE-MENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34// ===================================================================================================
35
36#ifndef IMT_BASE_CORE_SERIALIZATION_DESERIALIZER_H
37#define IMT_BASE_CORE_SERIALIZATION_DESERIALIZER_H
38
42
43#ifdef USE_STL
44#include <functional>
45#include <string>
46#endif //USE_STL
47
48namespace imt {
49namespace base {
50namespace core {
51namespace serialization {
52
59
60public:
61
62 Deserializer() = delete;
63
69 // AXIVION Next Codeline AutosarC++19_03-A18.1.1: use C-style array for compatibility
70 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for byte array.
71 Deserializer(uint8_t const buffer[], uint32_t const bufferSize) noexcept;
72
78
84
89 uint8_t const* getBuffer() const;
90
96
101 bool isReset() const;
102
109 uint8_t const& getBufferByte(uint32_t const indexOfByte) const;
110
114 void reset();
115
122
129
136
143
150
157
164
171
178
185
192
199
206
213 Deserializer& popData(void* const pDataDest, uint32_t const bytes);
214
221
222#ifdef USE_STL
229 Deserializer& operator>>(std::string& string);
230
237 Deserializer& popString(std::string& string);
238#endif //USE_STL
239
240#ifdef USE_STL
244 using AssertDebugFunctionPtr = std::function<void(bool const condition, char_t const* const pMessage)>;
245#else
249 using AssertDebugFunctionPtr = void (*)(bool const condition, char_t const* const pMessage);
250#endif
251
257
258private:
259
260#if !defined(USE_STL)
261 // AXIVION Next Codeline CodingStyle-Naming.StaticFieldPointer: type is not always a pointer
262#endif
263 static AssertDebugFunctionPtr s_assertDebugFunc;
264
265 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
266 uint32_t m_bufferPos;
267 uint8_t const* const m_pBuffer;
268 uint32_t const m_bufferSize;
269};
270
271} // namespace serialization
272} // namespace core
273} // namespace base
274} // namespace imt
275
276#endif // IMT_BASE_CORE_SERIALIZATION_DESERIALIZER_H
Base class for a not movable class that disables copy, assignment and move of instances.
Definition Nonmovable.h:51
Deserializes various data types from the given byte buffer.
Deserializer & operator>>(int8_t &data)
Returns data out of the Deserializer.
Deserializer & operator>>(SerializableIfc &data)
Returns data out of the Deserializer.
Deserializer & operator>>(uint32_t &data)
Returns data out of the Deserializer.
uint32_t getBufferPos() const
Returns the read position within the byte buffer.
Deserializer & operator>>(uint64_t &data)
Returns data out of the Deserializer.
uint32_t getBufferSize() const
Returns the size of the byte buffer in bytes.
Deserializer & popData(void *const pDataDest, uint32_t const bytes)
Returns multiple data out of Deserializer.
static void setAssertDebugFunction(AssertDebugFunctionPtr const funcPtr)
Set and replace the default assert-debug function.
Deserializer & operator>>(uint16_t &data)
Returns data out of the Deserializer.
Deserializer(uint8_t const buffer[], uint32_t const bufferSize) noexcept
Constructor.
Deserializer & operator>>(float32_t &data)
Returns data out of the Deserializer.
Deserializer & operator>>(float64_t &data)
Returns data out of the Deserializer.
Deserializer & operator>>(char_t *data)
Returns a null terminated string out of the Deserializer.
void reset()
Resets the Deserializer.
uint8_t const & getBufferByte(uint32_t const indexOfByte) const
Returns the byte of the byte buffer at the given index.
Deserializer & operator>>(int64_t &data)
Returns data out of the Deserializer.
Deserializer & operator>>(char_t &data)
Returns data out of the Deserializer.
Deserializer & operator>>(int32_t &data)
Returns data out of the Deserializer.
Deserializer & operator>>(uint8_t &data)
Returns data out of the Deserializer.
bool isReset() const
Returns true if the read position is at the beginning (getBufferPos == 0).
Deserializer & operator>>(int16_t &data)
Returns data out of the Deserializer.
uint8_t const * getBuffer() const
Returns a read-only pointer to the byte buffer.
uint32_t getUnusedBufferSize() const
Returns the remaining data to read from the current position until the buffer is empty.
void(*)(bool const condition, char_t const *const pMessage) AssertDebugFunctionPtr
Alias for ASSERT_DEBUG function pointer type (as raw function pointer)
Deserializer & operator>>(bool &data)
Returns a boolean out of the Deserializer.
Serialization is the process of translating data structures into a binary representation.
This is a application specific file which is used to configure Imt.Base.Core.Math.
char char_t
The char_t typedef does not indicate size and signedness and is simply included to allow char objects...
Definition stdchar.h:55
float float32_t
32 Bits float variable (float)
Definition stdfloat.h:56
double float64_t
64 Bits float variable (double)
Definition stdfloat.h:63
__int16 int16_t
Definition stdint.h:59
__int8 int8_t
Definition stdint.h:58
unsigned __int16 uint16_t
Definition stdint.h:63
__int32 int32_t
Definition stdint.h:60
__int64 int64_t
Definition stdint.h:61
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62
unsigned __int64 uint64_t
Definition stdint.h:65