Enroute Flight Navigation
A navigation app for VFR pilots
ConnectionInfo.h
1/***************************************************************************
2 * Copyright (C) 2024 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QBluetoothDeviceInfo>
24#include <QQmlEngine>
25
26#if __has_include (<QSerialPortInfo>)
27#include <QSerialPortInfo>
28#endif
29
30using namespace Qt::Literals::StringLiterals;
31
32
33namespace Traffic {
34
42 Q_GADGET
43 QML_VALUE_TYPE(connectionInfo)
44
45 friend QDataStream& operator<<(QDataStream& stream, const Traffic::ConnectionInfo &connectionInfo);
46 friend QDataStream& operator>>(QDataStream& stream, Traffic::ConnectionInfo& connectionInfo);
47
48public:
59 Q_ENUM(Type)
60
61
66 ConnectionInfo() = default;
67
78 explicit ConnectionInfo(const QBluetoothDeviceInfo& info, bool canonical=false);
79
80#if __has_include (<QSerialPortInfo>)
90 explicit ConnectionInfo(const QSerialPortInfo& info, bool canonical=false);
91#endif
92
102 explicit ConnectionInfo(quint16 port, bool canonical=false);
103
115 explicit ConnectionInfo(const QString& host, quint16 port, bool canonical=false);
116
117
118
119 //
120 // Properties
121 //
122
131 Q_PROPERTY(bool canConnect READ canConnect CONSTANT)
132
133
140 Q_PROPERTY(bool canonical READ canonical CONSTANT)
141
148 Q_PROPERTY(QString description READ description CONSTANT)
149
156 Q_PROPERTY(QString icon READ icon CONSTANT)
157
163 Q_PROPERTY(QString name READ name CONSTANT)
164
170 Q_PROPERTY(Traffic::ConnectionInfo::Type type READ type CONSTANT)
171
172
173
174 //
175 // Getter Methods
176 //
177
183 [[nodiscard]] bool canConnect() const { return m_canConnect; }
184
190 [[nodiscard]] bool canonical() const { return m_canonical; }
191
197 [[nodiscard]] QString description() const { return m_description; }
198
204 [[nodiscard]] QString name() const { return m_name; }
205
211 [[nodiscard]] QString icon() const { return m_icon; }
212
218 [[nodiscard]] Traffic::ConnectionInfo::Type type() const { return m_type; }
219
220
221
222 //
223 // Methods
224 //
225
234 [[nodiscard]] QBluetoothDeviceInfo bluetoothDeviceInfo() const { return m_bluetoothDeviceInfo; }
235
243 [[nodiscard]] bool operator== (const Traffic::ConnectionInfo& other) const = default;
244
251 [[nodiscard]] quint16 port() const { return m_port; }
252
266 [[nodiscard]] bool sameConnectionAs(const Traffic::ConnectionInfo& other) const;
267
278 bool operator< (const Traffic::ConnectionInfo& other) const;
279
280private:
281 //
282 // Properties
283 //
284 bool m_canConnect { false };
285 bool m_canonical { false };
286 QString m_description;
287 QString m_icon{u"/icons/material/ic_delete.svg"_s};
288 QString m_name { QObject::tr("Invalid Device", "Traffic::ConnectionInfo") };
290
291 //
292 // Private members, depending on m_type
293 //
294 QBluetoothDeviceInfo m_bluetoothDeviceInfo;
295 quint16 m_port{0};
296 QString m_host;
297};
298
304QDataStream& operator<<(QDataStream& stream, const Traffic::ConnectionInfo &connectionInfo);
305
311QDataStream& operator>>(QDataStream& stream, Traffic::ConnectionInfo& connectionInfo);
312
313} // namespace Traffic
Connection to a traffic data receiver.
bool operator==(const Traffic::ConnectionInfo &other) const =default
Equality of ConnectionInfos.
Traffic::ConnectionInfo::Type type() const
Getter function for the property with the same name.
Traffic::ConnectionInfo::Type type
Type.
quint16 port() const
Port.
bool canonical() const
Getter function for the property with the same name.
QString name() const
Getter function for the property with the same name.
bool canonical
Canonicity.
ConnectionInfo()=default
Default constructor.
QString description() const
Getter function for the property with the same name.
bool sameConnectionAs(const Traffic::ConnectionInfo &other) const
Equality of connection.
QString name
Description.
QString icon() const
Getter function for the property with the same name.
QBluetoothDeviceInfo bluetoothDeviceInfo() const
Bluetooth Device Info.
bool canConnect
Connectability.
ConnectionInfo(quint16 port, bool canonical=false)
Constructor for UDP Connections.
bool operator<(const Traffic::ConnectionInfo &other) const
Comparison.
ConnectionInfo(const QString &host, quint16 port, bool canonical=false)
Constructor for TCP Connections.
QString description
Description.
QString icon
Description.