summaryrefslogtreecommitdiffstats
path: root/src/knx/qknxtpdufactory_p2p.cpp
blob: 8257746b868f9fa8a879332f0b7b61997f4a6560 (plain)
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
/******************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtKnx module.
**
** $QT_BEGIN_LICENSE:GPL$
** 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 https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
******************************************************************************/

#include "qknxutils.h"
#include "qknxtpdufactory_p.h"

QT_BEGIN_NAMESPACE

/*!
    \class QKnxTpduFactory
    \internal

    \inmodule QtKnx
    \brief The QKnxTpduFactory class is used to create a valid Transport protocol
    data unit (\l QKnxTpdu) to be used in an \l QKnxLinkLayerFrame.

    One builds a TPDU to trigger a given application service. The factory is
    organized according to the general category the service we want to trigger
    belongs to. The category refers to the connection type needed to use the
    services. The possible service categories are: \l Multicast, \l Broadcast,
    \l PointToPoint, and \l PointToPointConnectionOriented.

    Within those categories, there is a function to create a TPDU for each
    possible application service belonging to the given category (all the
    services are listed here \l QKnxTpdu::ApplicationControlField).
*/

static QKnxTpdu::TransportControlField tpci(QKnxTpduFactory::PointToPoint::Mode mode, quint8 seq)
{
    if (seq > 15)
        return QKnxTpdu::TransportControlField::Invalid;

    if (mode == QKnxTpduFactory::PointToPoint::Mode::ConnectionOriented)
        return QKnxTpdu::TransportControlField::DataConnected;
    return QKnxTpdu::TransportControlField::DataIndividual;
}


// -- PointToPoint

/*!
    \class QKnxTpduFactory::PointToPoint
    \internal

    \inmodule QtKnx
    \brief The QKnxTpduFactory::PointToPoint class is used to create a valid
    Transport protocol data unit (\l QKnxTpdu) for application services requesting
    point to point connection.

    Those services are accessed using the individual address of the device
    (\l QKnxAddress::Individual) in the source address part of the
    \l QKnxLinkLayerFrame.
    They can be used in \l QKnxTpduFactory::PointToPoint::ConnectionOriented or
    \l QKnxTpduFactory::PointToPoint::Connectionless, that is with or without a
    transport layer connection, respectively.
*/

/*!
    \internal

    \enum QKnxTpduFactory::PointToPoint::Mode

    \value Connectionless,
    \value ConnectionOriented
*/

QKnxTpdu QKnxTpduFactory::PointToPoint::createFunctionPropertyCommandTpdu(Mode mode,
    quint8 objIndex, QKnxInterfaceObjectProperty property, const QKnxByteArray &data, quint8 seqNumber)
{
    if (data.size() > 251)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // L_Data_Extended -> max 254 Bytes payload, 4 Bytes already taken

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::FunctionPropertyCommand,
         QKnxUtils::QUint8::bytes(objIndex) + QKnxUtils::QUint8::bytes(property) + data };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createFunctionPropertyStateReadTpdu(Mode mode,
    quint8 objIndex, QKnxInterfaceObjectProperty property, const QKnxByteArray &data, quint8 seqNumber)
{
    if (data.size() > 251)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // L_Data_Extended -> max 254 Bytes payload, 4 Bytes already taken

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::FunctionPropertyStateRead,
        QKnxUtils::QUint8::bytes(objIndex) + QKnxUtils::QUint8::bytes(property) + data };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createFunctionPropertyStateResponseTpdu(Mode mode,
    quint8 objectIndex, QKnxInterfaceObjectProperty property, QKnxTpdu::ErrorCode code,
    const QKnxByteArray &data, quint8 seqNumber)
{
    if (data.size() > 250)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // L_Data_Extended -> max 254 Bytes payload, 5 Bytes already taken

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::FunctionPropertyStateResponse,
        QKnxUtils::QUint8::bytes(objectIndex) + QKnxUtils::QUint8::bytes(property)
        + QKnxUtils::QUint8::bytes(quint8(code)) + data };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createDeviceDescriptorReadTpdu(Mode mode,
    quint8 descriptorType, quint8 seqNumber)
{
    if (descriptorType >= 64) {
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};
    }

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::DeviceDescriptorRead,
        QKnxUtils::QUint8::bytes(descriptorType) };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createDeviceDescriptorResponseTpdu(Mode mode,
    quint8 descriptorType, const QKnxByteArray &deviceDescriptor, quint8 seqNumber)
{
    if (descriptorType >= 64 || deviceDescriptor.size() > 254)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::DeviceDescriptorResponse,
        QKnxUtils::QUint8::bytes(descriptorType)  + deviceDescriptor };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createRestartTpdu(Mode mode, QKnxTpdu::ResetType type,
    QKnxTpdu::EraseCode eraseCode, quint8 channelNumber, quint8 seqNumber)
{
    if (type == QKnxTpdu::ResetType::BasicRestart)
        return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::Restart };

    if (eraseCode == QKnxTpdu::EraseCode::Reserved || eraseCode >= QKnxTpdu::EraseCode::Invalid)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    if ((eraseCode == QKnxTpdu::EraseCode::ConfirmedRestart
        || eraseCode == QKnxTpdu::EraseCode::ResetIa
        || eraseCode == QKnxTpdu::EraseCode::ResetAp) && channelNumber != 0x00) {
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};
    }

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::Restart,
        QKnxUtils::QUint8::bytes(0x01) + QKnxUtils::QUint8::bytes(quint8(eraseCode))
        + QKnxUtils::QUint8::bytes(channelNumber) };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createRestartResponseTpdu(Mode mode, QKnxTpdu::ResetType type,
    QKnxTpdu::ErrorCode code, quint16 processTime, quint8 seqNumber)
{
    if (type == QKnxTpdu::ResetType::BasicRestart)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::Restart,
        QKnxUtils::QUint8::bytes(0x21) + QKnxUtils::QUint8::bytes(quint8(code))
        + QKnxUtils::QUint16::bytes(processTime) };
}

static QKnxTpdu createPropertyValueTpdu(QKnxTpduFactory::PointToPoint::Mode mode, quint8 seqNumber,
                                        QKnxTpdu::ApplicationControlField apci,
                                        quint8 objectIndex, quint8 property, quint8 nbElement,
                                        quint16 startIndex, const QKnxByteArray &data = {})
{
    if (data.size() > 249) // L_Data_Extended -> max 254 bytes payload
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // 6 bytes already used for APCI, object index, PID etc.

    if ((nbElement > 0x0f) || (startIndex > 0x0fff))
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    auto tmp = QKnxUtils::QUint16::bytes(startIndex);
    tmp.set(0, quint8(quint8(nbElement << 4) | quint8(tmp.at(0))));
    return { tpci(mode, seqNumber), seqNumber, apci, QKnxUtils::QUint8::bytes(objectIndex)
        + QKnxUtils::QUint8::bytes(property) + tmp + data };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createPropertyValueReadTpdu(Mode mode, quint8 objectIndex,
    QKnxInterfaceObjectProperty property, quint8 nbElement, quint16 startIndex, quint8 seqNumber)
{
    return createPropertyValueTpdu(mode, seqNumber,
        QKnxTpdu::ApplicationControlField::PropertyValueRead, objectIndex, quint8(property),
            nbElement, startIndex);
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createPropertyValueResponseTpdu(Mode mode,
    quint8 objectIndex, QKnxInterfaceObjectProperty property, quint8 nbElement, quint16 startIndex,
    const QKnxByteArray &data, quint8 seqNumber)
{
    return createPropertyValueTpdu(mode, seqNumber,
        QKnxTpdu::ApplicationControlField::PropertyValueResponse, objectIndex, quint8(property),
            nbElement, startIndex, data);
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createPropertyValueWriteTpdu(Mode mode, quint8 objectIndex,
    QKnxInterfaceObjectProperty property, quint8 nbElement, quint16 startIndex,
    const QKnxByteArray &data, quint8 seqNumber)
{
    return createPropertyValueTpdu(mode, seqNumber,
        QKnxTpdu::ApplicationControlField::PropertyValueWrite, objectIndex, quint8(property),
            nbElement, startIndex, data);
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createPropertyDescriptionReadTpdu(Mode mode,
    quint8 objectIndex, QKnxInterfaceObjectProperty property, quint8 propertyIndex,
    quint8 seqNumber)
{
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::PropertyDescriptionRead,
        QKnxUtils::QUint8::bytes(objectIndex)
        + QKnxUtils::QUint8::bytes(quint8(property)) + QKnxUtils::QUint8::bytes(propertyIndex) };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createPropertyDescriptionResponseTpdu(Mode mode,
    quint8 objectIndex, QKnxInterfaceObjectProperty property, quint8 propertyIndex, bool writeable,
    QKnxInterfaceObjectPropertyDataType::Id type, quint16 maxSize, quint8 read, quint8 write,
    quint8 seqNumber)
{
    if (type >= QKnxInterfaceObjectPropertyDataType::Id::Invalid)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    if (maxSize > 0x0fff || read > 15 || write > 15)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::PropertyDescriptionResponse,
          QKnxUtils::QUint8::bytes(objectIndex)
        + QKnxUtils::QUint8::bytes(quint8(property))
        + QKnxUtils::QUint8::bytes(propertyIndex)
        + QKnxUtils::QUint8::bytes(quint8(writeable ? 0x80 : 0x00) | quint8(quint8(type) & 0x3f))
        + QKnxUtils::QUint16::bytes(maxSize)
        + QKnxUtils::QUint8::bytes(quint8(read << 4) | quint8(write & 0x0f)) };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createLinkReadTpdu(Mode mode, quint8 groupObjectNumber,
    quint8 startIndex, quint8 seqNumber)
{
    if (startIndex > 0x0f)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::LinkRead,
        QKnxUtils::QUint8::bytes(groupObjectNumber) + QKnxUtils::QUint8::bytes(startIndex) };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createLinkResponseTpdu(Mode mode, quint8 groupObjectNumber,
    quint8 sendingAddress, quint8 startAddress, const QList<QKnxAddress> &addresses,
    quint8 seqNumber)
{
    if (sendingAddress > 15 || startAddress > 15)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    if (addresses.size() > 6
        || !std::all_of(addresses.constBegin(), addresses.constEnd(), [] (const QKnxAddress &a) {
            return a.type() == QKnxAddress::Type::Group;
        })) {
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};
    }

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::LinkResponse,
          QKnxUtils::QUint8::bytes(groupObjectNumber)
        + QKnxUtils::QUint8::bytes(quint8(sendingAddress << 4) | quint8(startAddress & 0x0f))
        + [&]() -> QKnxByteArray {
            QKnxByteArray ba;
            for (auto address : qAsConst(addresses))
                ba += address.bytes();
            return ba;
        }() };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createLinkWriteTpdu(Mode mode, quint8 groupObjectNumber,
    QKnxTpdu::LinkWriteFlags flags, const QKnxAddress &groupAddress, quint8 seqNumber)
{
    if (groupAddress.type() != QKnxAddress::Type::Group) {
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};
    }
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::LinkWrite,
        QKnxUtils::QUint8::bytes(groupObjectNumber) + QKnxUtils::QUint8::bytes(quint8(flags))
        + groupAddress.bytes() };
}

QKnxTpdu QKnxTpduFactory::PointToPoint::createFileStreamInfoReportTpdu(Mode mode, quint8 fileHandle,
    quint8 fileBlockSeqNumber, const QKnxByteArray &data, quint8 seqNumber)
{
    if (fileHandle > 15 || fileBlockSeqNumber > 15)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    if (data.size() > 254)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::FileStreamInfoReport,
        QKnxUtils::QUint8::bytes(quint8(fileHandle << 4) | quint8(fileBlockSeqNumber & 0x0f))
        + data };
}


// -- PointToPointConnectionless

/*!
    \class QKnxTpduFactory::PointToPointConnectionless
    \internal

    \inmodule QtKnx
    \brief The QKnxTpduFactory::PointToPointConnectionless class is used to
    create a valid Transport protocol data unit (\l QKnxTpdu) for application
    services requesting point to point connection without transport layer
    connection.

    Those services are accessed using the individual address of the device
    (\l QKnxAddress::Individual) in the source address part of the
    \l QKnxLinkLayerFrame.
*/

static QKnxTpdu createNetworkParameterTpduP2P(QKnxTpdu::ApplicationControlField apci,
                                              QKnxInterfaceObjectType object,
                                              QKnxInterfaceObjectProperty property,
                                              const QKnxByteArray &data, // aka. testInfo
                                              const QKnxByteArray &testResult = {})
{
    if (!QKnxInterfaceObjectType::isMatch(object, property))
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    QKnxByteArray objectVector = QKnxUtils::QUint16::bytes(quint16(object));
    objectVector.append(quint8(property));
    return { QKnxTpdu::TransportControlField::DataIndividual, apci, objectVector + data + testResult };
}

QKnxTpdu
QKnxTpduFactory::PointToPointConnectionless::createNetworkParameterResponseTpdu(QKnxInterfaceObjectType object,
    QKnxInterfaceObjectProperty property, const QKnxByteArray &testInfo, const QKnxByteArray &testResult)
{
    if (testResult.size() > 21) //3.7.7 paragraph 3.2.6 Figure 16
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};
    if ((testInfo.size() + testResult.size()) > 250) // L_Data_Extended -> max 254 bytes payload
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // 4 bytes already used for APCI, object, instance

    return createNetworkParameterTpduP2P(QKnxTpdu::ApplicationControlField::NetworkParameterResponse,
        object, property, testInfo, testResult);
}

QKnxTpdu
QKnxTpduFactory::PointToPointConnectionless::createNetworkParameterWriteTpdu(QKnxInterfaceObjectType object,
    QKnxInterfaceObjectProperty property, const QKnxByteArray &value)
{
    if (value.size() > 250) // L_Data_Extended -> max 254 bytes payload
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // 4 bytes already used for APCI, object, instance

    return createNetworkParameterTpduP2P(QKnxTpdu::ApplicationControlField::NetworkParameterWrite,
        object, property, value);
}


// -- PointToPointConnectionOriented

/*!
    \class QKnxTpduFactory::PointToPointConnectionOriented
    \internal

    \inmodule QtKnx
    \brief The QKnxTpduFactory::PointToPointConnectionOriented class is used to
    create a valid Transport protocol data unit (\l QKnxTpdu) for application
    services requesting point to point connection with a mandatory transport
    layer connection.

    Those services are accessed using the individual address of the device
    (\l QKnxAddress::Individual) in the source address part of the
    \l QKnxLinkLayerFrame. To be successful, the CEMI frame containing those
    TPDU need to be send within the frame work of a transport layer connection.
*/

/*!
    \internal

    Returns a TPDU for Memory Read Application Service with the given \a number,
    \a address and sequence number \a seqNumber set.
*/
QKnxTpdu QKnxTpduFactory::PointToPointConnectionOriented::createMemoryReadTpdu(quint8 number,
    quint16 address, quint8 seqNumber)
{
    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::MemoryRead,
        QKnxUtils::QUint8::bytes(number) + QKnxUtils::QUint16::bytes(address) };
}

/*!
    \internal

    Returns a TPDU for Memory Response Application Service with the given
    \a number, \a address, \a data and sequence number \a seqNumber set.
*/
QKnxTpdu QKnxTpduFactory::PointToPointConnectionOriented::createMemoryResponseTpdu(quint8 number,
    quint16 address, const QKnxByteArray &data, quint8 seqNumber)
{
    if (data.size() > 251)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // L_Data_Extended -> max 254 Bytes payload, 4 Bytes already taken

    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::MemoryResponse,
        QKnxUtils::QUint8::bytes(number) + QKnxUtils::QUint16::bytes(address) + data };
}

/*!
    \internal

    Returns a TPDU for Memory Write Application Service with the given
    \a number, \a address, \a data and sequence number \a seqNumber set.
*/
QKnxTpdu QKnxTpduFactory::PointToPointConnectionOriented::createMemoryWriteTpdu(quint8 number,
    quint16 address, const QKnxByteArray &data, quint8 seqNumber)
{
    if (data.size() > 251)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // L_Data_Extended -> max 254 Bytes payload, 4 Bytes already taken

    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::MemoryWrite,
        QKnxUtils::QUint8::bytes(number) + QKnxUtils::QUint16::bytes(address) + data };
}

/*!
    \internal

    Returns a \l QKnxTpdu for ADC Read Application Service with the given
    \a channel, \a readCount and \a seqNumber set.
*/
QKnxTpdu QKnxTpduFactory::PointToPointConnectionOriented::createAdcReadTpdu(quint8 channel,
    quint8 readCount, quint8 seqNumber)
{
    if (channel > 0x3f)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::AdcRead,
        QKnxUtils::QUint8::bytes(channel) + QKnxUtils::QUint8::bytes(readCount) };
}

QKnxTpdu QKnxTpduFactory::PointToPointConnectionOriented::createAdcResponseTpdu(quint8 channel,
    quint8 readCount, quint16 sumOfAdc, quint8 seqNumber)
{
    if (channel > 0x3f)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::AdcRead,
        QKnxUtils::QUint8::bytes(channel) + QKnxUtils::QUint8::bytes(readCount)
        + QKnxUtils::QUint16::bytes(sumOfAdc) };
}

/*!
    \internal

    Returns a \l QKnxTpdu for User Memory Read Application Service with
    \a addressExtention, \a number, \a address and sequence number \a seqNumber
    set.
*/
QKnxTpdu
QKnxTpduFactory::PointToPointConnectionOriented::createUserMemoryReadTpdu(quint8 addressExtention,
    quint8 number, quint16 address, quint8 seqNumber)
{
    if (addressExtention > 15 || number > 15)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid};

    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::UserMemoryRead,
        QKnxUtils::QUint8::bytes(quint8(addressExtention << 4) | quint8(number & 0x0f))
        + QKnxUtils::QUint16::bytes(address) };
}

QKnxTpdu
QKnxTpduFactory::PointToPointConnectionOriented::createUserMemoryResponseTpdu(quint8 addressExtention,
    quint8 number, quint16 address, const QKnxByteArray &data, quint8 seqNumber)
{
    // TODO: Figure out if data is supposed to be of a given size.
    if (addressExtention > 15 || number > 15 || data.size() <= 0 || data.size() > 250)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // L_Data_Extended -> max 254 Bytes payload, 4 Bytes already taken

    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::UserMemoryResponse,
        QKnxUtils::QUint8::bytes(quint8(addressExtention << 4) | quint8(number & 0x0f))
        + QKnxUtils::QUint16::bytes(address) + data };
}

/*!
    \internal

    Returns a TPDU for User Memory Write Application Service with
    \a addressExtention, \a number, \a address, \a data and \a seqNumber
    set.
*/
QKnxTpdu
QKnxTpduFactory::PointToPointConnectionOriented::createUserMemoryWriteTpdu(quint8 addressExtention,
    quint8 number, quint16 address, const QKnxByteArray &data, quint8 seqNumber)
{
    // TODO: Figure out if data is supposed to be of a given size.
    if (addressExtention > 15 || number > 15 || data.size() <= 0 || data.size() > 250)
        return {QKnxTpdu::TransportControlField::Invalid,
            QKnxTpdu::ApplicationControlField::Invalid}; // L_Data_Extended -> max 254 Bytes payload, 5 Bytes already taken

    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::UserMemoryWrite,
        QKnxUtils::QUint8::bytes(quint8(addressExtention << 4) | quint8(number & 0x0f))
        + QKnxUtils::QUint16::bytes(address) + data };
}

/*!
    \internal

    Returns a TPDU for User Manufacturer Info Read Application Service with the
    given sequence number \a seqNumber set.
*/
QKnxTpdu
QKnxTpduFactory::PointToPointConnectionOriented::createUserManufacturerInfoReadTpdu(quint8 seqNumber)
{
    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber,
        QKnxTpdu::ApplicationControlField::UserManufacturerInfoRead };
}

QKnxTpdu
QKnxTpduFactory::PointToPointConnectionOriented::createUserManufacturerInfoResponseTpdu(quint8 id,
    quint16 manufacturerSpecific, quint8 seqNumber)
{
    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::UserManufacturerInfoResponse,
        QKnxUtils::QUint8::bytes(id) + QKnxUtils::QUint16::bytes(manufacturerSpecific) };
}

QKnxTpdu QKnxTpduFactory::PointToPointConnectionOriented::createAuthorizeRequestTpdu(quint32 key,
    quint8 seqNumber)
{
    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::AuthorizeRequest,
        QKnxUtils::QUint8::bytes(0u) + QKnxUtils::QUint32::bytes(key) };
}

QKnxTpdu QKnxTpduFactory::PointToPointConnectionOriented::createAuthorizeResponseTpdu(quint8 level,
    quint8 seqNumber)
{
    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::AuthorizeResponse,
        QKnxUtils::QUint8::bytes(level) };
}

QKnxTpdu QKnxTpduFactory::PointToPointConnectionOriented::createKeyWriteTpdu(quint8 level,
    quint32 key, quint8 seqNumber)
{
    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::KeyWrite,
        QKnxUtils::QUint8::bytes(level) + QKnxUtils::QUint32::bytes(key) };
}

QKnxTpdu QKnxTpduFactory::PointToPointConnectionOriented::createKeyResponseTpdu(quint8 level,
    quint8 seqNumber)
{
    const PointToPoint::Mode mode = PointToPoint::Mode::ConnectionOriented;
    return { tpci(mode, seqNumber), seqNumber, QKnxTpdu::ApplicationControlField::KeyResponse,
        QKnxUtils::QUint8::bytes(level) };
}

QT_END_NAMESPACE