-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathLLRPProbeRequestPDU.cpp
116 lines (106 loc) · 4.52 KB
/
LLRPProbeRequestPDU.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
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* LLRPProbeRequestPDU.cpp
* The LLRPProbeRequestPDU
* Copyright (C) 2020 Peter Newman
*/
#include "libs/acn/LLRPProbeRequestPDU.h"
#include <ola/network/NetworkUtils.h>
#include <ola/rdm/UID.h>
#include <ola/rdm/UIDSet.h>
namespace ola {
namespace acn {
using ola::io::OutputStream;
using ola::network::HostToNetwork;
using ola::rdm::UID;
unsigned int LLRPProbeRequestPDU::DataSize() const {
llrp_probe_request_pdu_data data;
return static_cast<unsigned int>(sizeof(llrp_probe_request_pdu_data) -
sizeof(data.known_uids) +
(m_known_uids.Size() * UID::LENGTH));
}
bool LLRPProbeRequestPDU::PackData(uint8_t *data, unsigned int *length) const {
llrp_probe_request_pdu_data pdu_data;
m_lower_uid.Pack(pdu_data.lower_uid, sizeof(pdu_data.lower_uid));
m_upper_uid.Pack(pdu_data.upper_uid, sizeof(pdu_data.upper_uid));
uint16_t filter = 0;
if (m_client_tcp_connection_inactive) {
filter |= FILTER_CLIENT_TCP_CONNECTION_INACTIVE;
}
if (m_brokers_only) {
filter |= FILTER_BROKERS_ONLY;
}
pdu_data.filter = HostToNetwork(filter);
// TODO(Peter): We need to check we've got <= 200 UIDs here
m_known_uids.Pack(pdu_data.known_uids, sizeof(pdu_data.known_uids));
*length = static_cast<unsigned int>(sizeof(llrp_probe_request_pdu_data) -
sizeof(pdu_data.known_uids) +
(m_known_uids.Size() * UID::LENGTH));
memcpy(data, &pdu_data, *length);
return true;
}
void LLRPProbeRequestPDU::PackData(ola::io::OutputStream *stream) const {
llrp_probe_request_pdu_data data;
m_lower_uid.Pack(data.lower_uid, sizeof(data.lower_uid));
m_upper_uid.Pack(data.upper_uid, sizeof(data.upper_uid));
uint16_t filter = 0;
if (m_client_tcp_connection_inactive) {
filter |= FILTER_CLIENT_TCP_CONNECTION_INACTIVE;
}
if (m_brokers_only) {
filter |= FILTER_BROKERS_ONLY;
}
data.filter = HostToNetwork(filter);
// TODO(Peter): We need to check we've got <= 200 UIDs here
m_known_uids.Pack(data.known_uids, sizeof(data.known_uids));
stream->Write(reinterpret_cast<uint8_t*>(&data),
static_cast<unsigned int>(sizeof(llrp_probe_request_pdu_data) -
sizeof(data.known_uids) +
(m_known_uids.Size() * UID::LENGTH)));
}
void LLRPProbeRequestPDU::PrependPDU(ola::io::IOStack *stack,
const UID &lower_uid,
const UID &upper_uid,
bool client_tcp_connection_inactive,
bool brokers_only,
const ola::rdm::UIDSet &known_uids) {
if (!stack) {
OLA_WARN << "LLRPProbeRequestPDU::PrependPDU: missing stack";
return;
}
llrp_probe_request_pdu_data data;
lower_uid.Pack(data.lower_uid, sizeof(data.lower_uid));
upper_uid.Pack(data.upper_uid, sizeof(data.upper_uid));
uint16_t filter = 0;
if (client_tcp_connection_inactive) {
filter |= FILTER_CLIENT_TCP_CONNECTION_INACTIVE;
}
if (brokers_only) {
filter |= FILTER_BROKERS_ONLY;
}
data.filter = HostToNetwork(filter);
// TODO(Peter): We need to check we've got <= 200 UIDs here
known_uids.Pack(data.known_uids, sizeof(data.known_uids));
stack->Write(reinterpret_cast<uint8_t*>(&data),
static_cast<unsigned int>(sizeof(llrp_probe_request_pdu_data) -
sizeof(data.known_uids) +
(known_uids.Size() * UID::LENGTH)));
uint8_t vector = HostToNetwork(VECTOR_PROBE_REQUEST_DATA);
stack->Write(reinterpret_cast<uint8_t*>(&vector), sizeof(vector));
PrependFlagsAndLength(stack, VFLAG_MASK | HFLAG_MASK | DFLAG_MASK, true);
}
} // namespace acn
} // namespace ola