forked from COVESA/dlt-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqdltsegmentedmsg.h
132 lines (106 loc) · 3 KB
/
qdltsegmentedmsg.h
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
/**
* @licence app begin@
* Copyright (C) 2011-2014 BMW AG
*
* This file is part of COVESA Project Dlt Viewer.
*
* Contributions are licensed to the COVESA Alliance under one or more
* Contribution License Agreements.
*
* \copyright
* This Source Code Form is subject to the terms of the
* Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
* this file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* \author Alexander Wenzel <[email protected]> 2011-2012
*
* \file qdltsegmentedmsg.h
* For further information see http://www.covesa.global/.
* @licence end@
*/
#ifndef QDLTSEGMENTEDMSG_H
#define QDLTSEGMENTEDMSG_H
#include "export_rules.h"
#include <qdltmsg.h>
#include <dlt_types.h>
//! Combine segmented network messages
/*!
This class combines several segmented network message to a single message
*/
class QDLT_EXPORT QDltSegmentedMsg
{
public:
//! Constructor.
/*!
Initialise all parameters.
*/
QDltSegmentedMsg();
//! Current state of reassemble
typedef enum { DltSegStart, DltSegChunk, DltSegError, DltSegFinish } DltSegState;
//! Add message to segmented message. The handle must match the segmented message.
/*!
\param msg A segment of the segmented network message. The handle must match.
\return unequal zero if there was an error
*/
int add(QDltMsg &msg);
//! Get handle of network message
/*!
\return handle of network message
*/
uint32_t getHandle() { return handle; }
//! Check if the message is now complete.
/*!
\return true if message is complete
*/
uint32_t getSize() { return size; }
//! Get the number of chunks.
/*!
\return number of chunks
*/
uint32_t getChunks() { return chunks; }
//! Get size of a single chunk
/*!
\return size in bytes
*/
uint32_t getChunksSize() { return chunkSize; }
//! Get the header of the complete message.
/*!
\return header data
*/
QByteArray getHeader() { return header; }
//! Get the payload of the complete message
/*!
\return payload data
*/
QByteArray getPayload() { return payload; }
//! Check if the message is now complete.
/*!
\return true if message is complete
*/
bool complete() { return (state == DltSegFinish); }
//! Get error string of last failed function call
/*!
\return error message
*/
QString getError() { return error; }
private:
//! The handle of the network message
uint32_t handle;
//! The complete size
uint32_t size; /* complete size of the message */
//! The number of chunks
uint32_t chunks;
//! The chunk size
uint32_t chunkSize;
//! The header data
QByteArray header;
//! The payload data
QByteArray payload;
//! The number of already received chunks
uint32_t chunksAdded;
//! The current state.
DltSegState state;
//! The last error string.
QString error;
};
#endif // QDLTSEGMENTEDMSG_H