forked from COVESA/dlt-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqdltconnection.h
126 lines (100 loc) · 2.98 KB
/
qdltconnection.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
/**
* @licence app begin@
* Copyright (C) 2011-2012 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 qdlt.h
* For further information see http://www.covesa.global/.
* @licence end@
*/
#ifndef QDLT_CONNECTION_H
#define QDLT_CONNECTION_H
#include <QObject>
#include <QString>
#include <QFile>
#include <QDateTime>
//#include <QColor>
#include <QMutex>
#include <time.h>
#include "export_rules.h"
#include "qdltmsg.h"
class QDLT_EXPORT QDltDataView
{
public:
QDltDataView(const char* data, int size)
: m_data(data)
, m_size(size)
, m_position()
{}
QDltDataView(const QByteArray& byteArray, int position = 0)
: m_data(byteArray.constData())
, m_size(byteArray.size())
, m_position(position)
{}
void align(const QByteArray& byteArray, int position = 0)
{
m_data = byteArray.constData();
m_size = byteArray.size();
m_position = position;
}
operator const QByteArray() { return QByteArray::fromRawData(m_data + m_position, m_size - m_position); }
const QByteArray mid(int pos, int len = -1)
{
if (len < 0) len = size() - pos;
if (pos > size()) pos = size();
if (pos + len > size()) len = size() - pos;
return QByteArray::fromRawData(m_data + m_position + pos, len);
}
void advance(int num)
{
if (num < 0) num = 0;
m_position += num;
if (m_position > m_size) m_position = m_size;
}
const char* data() { return m_data + m_position; }
const char* constData() { return m_data + m_position; }
int size() { return m_size - m_position; }
void clear() { m_position = m_size; }
private:
const char * m_data;
int m_size;
int m_position;
};
class QDLT_EXPORT QDltConnection
{
public:
//! The possible DLT connection states of an ECU
enum QDltConnectionState{QDltConnectionOffline=0, QDltConnectionConnecting, QDltConnectionOnline, QDltConnectionError};
QDltConnection();
~QDltConnection();
void setSendSerialHeader(bool _sendSerialHeader);
bool getSendSerialHeader() const;
void setSyncSerialHeader(bool _syncSerialHeader);
bool getSyncSerialHeader() const;
bool parseDlt(QDltMsg &msg);
bool parseAscii(QDltMsg &msg);
void clear();
void add(const QByteArray &bytes);
QByteArray data;
QDltDataView dataView = {data};
unsigned long bytesReceived;
unsigned long bytesError;
unsigned long syncFound;
protected:
bool sendSerialHeader;
bool syncSerialHeader;
private:
unsigned char messageCounter;
};
#endif // QDLT_CONNECTION_H