-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathixxatcanbackend.cpp
413 lines (355 loc) · 16.2 KB
/
ixxatcanbackend.cpp
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the QtSerialBus module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL3$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or later as published by the Free
** Software Foundation and appearing in the file LICENSE.GPL included in
** the packaging of this file. Please review the following information to
** ensure the GNU General Public License version 2.0 requirements will be
** met: http://www.gnu.org/licenses/gpl-2.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "ixxatcanbackend.h"
#include <QtCore/qdatastream.h>
#include <QtCore/qdebug.h>
#include <QtCore/qdiriterator.h>
#include <QtCore/qfile.h>
#include <QtCore/qloggingcategory.h>
#include "ixxatcanbackend.h"
QT_BEGIN_NAMESPACE
Q_DECLARE_LOGGING_CATEGORY(QT_CANBUS_PLUGINS_IXXATCAN)
QList<QCanBusDeviceInfo> IxxatCanBackend::interfaces()
{
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Function Name: " << Q_FUNC_INFO;
QList<QCanBusDeviceInfo> result;
IxxatVciCanCtrlsList::instance().refreshControllers();
foreach (QString controller, IxxatVciCanCtrlsList::instance().allControllers()) {
result.append(createDeviceInfo(controller));
}
return result;
}
IxxatCanBackend::IxxatCanBackend(const QString &name)
// : canIxxatName(name)
{
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Function Name: " << Q_FUNC_INFO;
options[CanDriver_ixxatVci::CTRL_NAME] = name;
options[CanDriver_ixxatVci::BIT_RATE] = 250000;
// resetConfigurations();
}
IxxatCanBackend::~IxxatCanBackend()
{
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Function Name: " << Q_FUNC_INFO;
if (state() == ConnectedState)
close();
}
bool IxxatCanBackend::open()
{
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Function Name: " << Q_FUNC_INFO;
driver = new CanDriver_ixxatVci(/*parent*/);
driver->init(options);
connect (driver, &CanDriver_ixxatVci::recv, this, &IxxatCanBackend::recv);
connect (this, &IxxatCanBackend::send, driver, &CanDriver_ixxatVci::send);
setState(QCanBusDevice::ConnectedState);
return true;
}
void IxxatCanBackend::recv (CanMessage * frame)
{
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Function Name: " << Q_FUNC_INFO;
QVector<QCanBusFrame> newFrames;
newFrames.append(std::move(*frame));
enqueueReceivedFrames(newFrames);
}
void IxxatCanBackend::close()
{
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Function Name: " << Q_FUNC_INFO;
driver->stop();
setState(QCanBusDevice::UnconnectedState);
}
void IxxatCanBackend::setConfigurationParameter(int key, const QVariant &value)
{
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Function Name: " << Q_FUNC_INFO << ": " << key << "=" << value;
/*
4 = QVariant(int, 250000)
5 = QVariant(bool, false)
6 = QVariant(int, 500000)
BitRateKey,
CanFdKey,
DataBitRateKey,
*/
switch (key) {
case QCanBusDevice::RawFilterKey: {
// setError(tr("Filter not yet managed!"), QCanBusDevice::CanBusError::ConfigurationError);
//verify valid/supported filt
QList<QList<uint>> filters = qvariant_cast<QList<QList<uint>>>(options[CanDriver_ixxatVci::FILTERS]);
QList<QCanBusDevice::Filter> new_filters = qvariant_cast<QList<QCanBusDevice::Filter>>(value);
for(QCanBusDevice::Filter f : new_filters) {
QList<uint> formats;
switch(f.format) {
case QCanBusDevice::Filter::MatchBaseAndExtendedFormat:
formats.push_back(0); formats.push_back(1);
break;
case QCanBusDevice::Filter::MatchExtendedFormat:
formats.push_back(1);
break;
case QCanBusDevice::Filter::MatchBaseFormat:
formats.push_back(0);
}
for(uint format : formats) {
QList<uint> ff;
ff.push_back(static_cast<uint>(format));
ff.push_back(static_cast<uint>(f.frameId));
ff.push_back(static_cast<uint>(f.frameIdMask));
ff.push_back(static_cast<uint>(QCanBusFrame::RemoteRequestFrame == f.type));
filters.push_back(ff);
}
}
options[CanDriver_ixxatVci::FILTERS] = QVariant::fromValue(filters);
}
break;
// we need to check CAN FD option a lot -> cache it and avoid QVector lookup
case QCanBusDevice::CanFdKey:
if (value.toBool()) {
setError(tr("CAN-FD not managed!"), QCanBusDevice::CanBusError::ConfigurationError);
return;
}
break;
case QCanBusDevice::BitRateKey:
options[CanDriver_ixxatVci::BIT_RATE] = value.toInt();
break;
case QCanBusDevice::DataBitRateKey:
setError(tr("CAN-FD not managed!"), QCanBusDevice::CanBusError::ConfigurationError);
return;
default:
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "No KEY";
return;
}
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Configuration Activated!"; // << key << "=>" << value.toString();
QCanBusDevice::setConfigurationParameter(key, value);
}
bool IxxatCanBackend::writeFrame(const QCanBusFrame &newData)
{
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Function Name: " << Q_FUNC_INFO;
if (state() != ConnectedState)
return false;
if (Q_UNLIKELY(!newData.isValid())) {
setError(tr("Cannot write invalid QCanBusFrame"), QCanBusDevice::WriteError);
return false;
}
if(!driver->send((CanMessage*)(&newData))) return false;
/*
canid_t canId = newData.frameId();
if (newData.hasExtendedFrameFormat())
canId |= CAN_EFF_FLAG;
if (newData.frameType() == QCanBusFrame::RemoteRequestFrame) {
canId |= CAN_RTR_FLAG;
} else if (newData.frameType() == QCanBusFrame::ErrorFrame) {
canId = static_cast<canid_t>((newData.error() & QCanBusFrame::AnyError));
canId |= CAN_ERR_FLAG;
}
if (Q_UNLIKELY(!canFdOptionEnabled && newData.hasFlexibleDataRateFormat())) {
const QString error = tr("Cannot write CAN FD frame because CAN FD option is not enabled.");
qCWarning(QT_CANBUS_PLUGINS_IXXATCAN, "%ls", qUtf16Printable(error));
setError(error, QCanBusDevice::WriteError);
return false;
}
qint64 bytesWritten = 0;
if (newData.hasFlexibleDataRateFormat()) {
canfd_frame frame;
::memset(&frame, 0, sizeof(frame));
frame.len = newData.payload().size();
frame.can_id = canId;
frame.flags = newData.hasBitrateSwitch() ? CANFD_BRS : 0;
frame.flags |= newData.hasErrorStateIndicator() ? CANFD_ESI : 0;
::memcpy(frame.data, newData.payload().constData(), frame.len);
bytesWritten = ::write(canSocket, &frame, sizeof(frame));
} else {
can_frame frame;
::memset(&frame, 0, sizeof(frame));
frame.can_dlc = newData.payload().size();
frame.can_id = canId;
::memcpy(frame.data, newData.payload().constData(), frame.can_dlc);
bytesWritten = ::write(canSocket, &frame, sizeof(frame));
}
if (Q_UNLIKELY(bytesWritten < 0)) {
setError(qt_error_string(errno),
QCanBusDevice::CanBusError::WriteError);
return false;
}
*/
CanMessage* message = new CanMessage(newData);
emit send(message);
emit framesWritten(1);
return true;
}
QString IxxatCanBackend::interpretErrorFrame(const QCanBusFrame &errorFrame)
{
qCDebug(QT_CANBUS_PLUGINS_IXXATCAN) << "Function Name: " << Q_FUNC_INFO;
if (errorFrame.frameType() != QCanBusFrame::ErrorFrame)
return QString();
// the payload may contain the error details
const QByteArray data = errorFrame.payload();
QString errorMsg;
if (errorFrame.error() & QCanBusFrame::TransmissionTimeoutError)
errorMsg += QStringLiteral("TX timout\n");
if (errorFrame.error() & QCanBusFrame::MissingAcknowledgmentError)
errorMsg += QStringLiteral("Received no ACK on transmission\n");
if (errorFrame.error() & QCanBusFrame::BusOffError)
errorMsg += QStringLiteral("Bus off\n");
if (errorFrame.error() & QCanBusFrame::BusError)
errorMsg += QStringLiteral("Bus error\n");
if (errorFrame.error() & QCanBusFrame::ControllerRestartError)
errorMsg += QStringLiteral("Controller restarted\n");
if (errorFrame.error() & QCanBusFrame::UnknownError)
errorMsg += QStringLiteral("Unknown error\n");
if (errorFrame.error() & QCanBusFrame::LostArbitrationError) {
errorMsg += QStringLiteral("Lost arbitration:\n");
if (data.size() >= 1) {
errorMsg += QString::number(data.at(0), 16);
errorMsg += QStringLiteral(" bit\n");
}
}
/*
if (errorFrame.error() & QCanBusFrame::ControllerError) {
errorMsg += QStringLiteral("Controller problem:\n");
if (data.size() >= 2) {
char b = data.at(1) ;
if (b & CAN_ERR_CRTL_RX_OVERFLOW)
errorMsg += QStringLiteral(" RX buffer overflow\n");
if (b & CAN_ERR_CRTL_TX_OVERFLOW)
errorMsg += QStringLiteral(" TX buffer overflow\n");
if (b & CAN_ERR_CRTL_RX_WARNING)
errorMsg += QStringLiteral(" reached warning level for RX errors\n");
if (b & CAN_ERR_CRTL_TX_WARNING)
errorMsg += QStringLiteral(" reached warning level for TX errors\n");
if (b & CAN_ERR_CRTL_RX_PASSIVE)
errorMsg += QStringLiteral(" reached error passive status RX\n");
if (b & CAN_ERR_CRTL_TX_PASSIVE)
errorMsg += QStringLiteral(" reached error passive status TX\n");
if (b == CAN_ERR_CRTL_UNSPEC)
errorMsg += QStringLiteral(" Unspecified error\n");
}
}
if (errorFrame.error() & QCanBusFrame::TransceiverError) {
errorMsg = QStringLiteral("Transceiver status:");
if (data.size() >= 5) {
char b = data.at(4);
if (b & CAN_ERR_TRX_CANH_NO_WIRE)
errorMsg += QStringLiteral(" CAN-transceiver CANH no wire\n");
if (b & CAN_ERR_TRX_CANH_SHORT_TO_BAT)
errorMsg += QStringLiteral(" CAN-transceiver CANH short to bat\n");
if (b & CAN_ERR_TRX_CANH_SHORT_TO_VCC)
errorMsg += QStringLiteral(" CAN-transceiver CANH short to vcc\n");
if (b & CAN_ERR_TRX_CANH_SHORT_TO_GND)
errorMsg += QStringLiteral(" CAN-transceiver CANH short to ground\n");
if (b & CAN_ERR_TRX_CANL_NO_WIRE)
errorMsg += QStringLiteral(" CAN-transceiver CANL no wire\n");
if (b & CAN_ERR_TRX_CANL_SHORT_TO_BAT)
errorMsg += QStringLiteral(" CAN-transceiver CANL short to bat\n");
if (b & CAN_ERR_TRX_CANL_SHORT_TO_VCC)
errorMsg += QStringLiteral(" CAN-transceiver CANL short to vcc\n");
if (b & CAN_ERR_TRX_CANL_SHORT_TO_GND)
errorMsg += QStringLiteral(" CAN-transceiver CANL short to ground\n");
if (b & CAN_ERR_TRX_CANL_SHORT_TO_CANH)
errorMsg += QStringLiteral(" CAN-transceiver CANL short to CANH\n");
if (b == CAN_ERR_TRX_UNSPEC)
errorMsg += QStringLiteral(" unspecified\n");
}
}
if (errorFrame.error() & QCanBusFrame::ProtocolViolationError) {
errorMsg += QStringLiteral("Protocol violation:\n");
if (data.size() > 3) {
char b = data.at(2);
if (b & CAN_ERR_PROT_BIT)
errorMsg += QStringLiteral(" single bit error\n");
if (b & CAN_ERR_PROT_FORM)
errorMsg += QStringLiteral(" frame format error\n");
if (b & CAN_ERR_PROT_STUFF)
errorMsg += QStringLiteral(" bit stuffing error\n");
if (b & CAN_ERR_PROT_BIT0)
errorMsg += QStringLiteral(" unable to send dominant bit\n");
if (b & CAN_ERR_PROT_BIT1)
errorMsg += QStringLiteral(" unable to send recessive bit\n");
if (b & CAN_ERR_PROT_OVERLOAD)
errorMsg += QStringLiteral(" bus overload\n");
if (b & CAN_ERR_PROT_ACTIVE)
errorMsg += QStringLiteral(" active error announcement\n");
if (b & CAN_ERR_PROT_TX)
errorMsg += QStringLiteral(" error occurred on transmission\n");
if (b == CAN_ERR_PROT_UNSPEC)
errorMsg += QStringLiteral(" unspecified\n");
}
if (data.size() > 4) {
char b = data.at(3);
if (b == CAN_ERR_PROT_LOC_SOF)
errorMsg += QStringLiteral(" start of frame\n");
if (b == CAN_ERR_PROT_LOC_ID28_21)
errorMsg += QStringLiteral(" ID bits 28 - 21 (SFF: 10 - 3)\n");
if (b == CAN_ERR_PROT_LOC_ID20_18)
errorMsg += QStringLiteral(" ID bits 20 - 18 (SFF: 2 - 0 )\n");
if (b == CAN_ERR_PROT_LOC_SRTR)
errorMsg += QStringLiteral(" substitute RTR (SFF: RTR)\n");
if (b == CAN_ERR_PROT_LOC_IDE)
errorMsg += QStringLiteral(" identifier extension\n");
if (b == CAN_ERR_PROT_LOC_ID17_13)
errorMsg += QStringLiteral(" ID bits 17-13\n");
if (b == CAN_ERR_PROT_LOC_ID12_05)
errorMsg += QStringLiteral(" ID bits 12-5\n");
if (b == CAN_ERR_PROT_LOC_ID04_00)
errorMsg += QStringLiteral(" ID bits 4-0\n");
if (b == CAN_ERR_PROT_LOC_RTR)
errorMsg += QStringLiteral(" RTR\n");
if (b == CAN_ERR_PROT_LOC_RES1)
errorMsg += QStringLiteral(" reserved bit 1\n");
if (b == CAN_ERR_PROT_LOC_RES0)
errorMsg += QStringLiteral(" reserved bit 0\n");
if (b == CAN_ERR_PROT_LOC_DLC)
errorMsg += QStringLiteral(" data length code\n");
if (b == CAN_ERR_PROT_LOC_DATA)
errorMsg += QStringLiteral(" data section\n");
if (b == CAN_ERR_PROT_LOC_CRC_SEQ)
errorMsg += QStringLiteral(" CRC sequence\n");
if (b == CAN_ERR_PROT_LOC_CRC_DEL)
errorMsg += QStringLiteral(" CRC delimiter\n");
if (b == CAN_ERR_PROT_LOC_ACK)
errorMsg += QStringLiteral(" ACK slot\n");
if (b == CAN_ERR_PROT_LOC_ACK_DEL)
errorMsg += QStringLiteral(" ACK delimiter\n");
if (b == CAN_ERR_PROT_LOC_EOF)
errorMsg += QStringLiteral(" end of frame\n");
if (b == CAN_ERR_PROT_LOC_INTERM)
errorMsg += QStringLiteral(" Intermission\n");
if (b == CAN_ERR_PROT_LOC_UNSPEC)
errorMsg += QStringLiteral(" unspecified\n");
}
}
*/
// cut trailing \n
if (!errorMsg.isEmpty())
errorMsg.chop(1);
return errorMsg;
}
QT_END_NAMESPACE