| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | #ifndef MESSAGE_SERVER_HPP__
 | 
					
						
							|  |  |  | #define MESSAGE_SERVER_HPP__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QObject>
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  | #include <QPair>
 | 
					
						
							| 
									
										
										
										
											2020-11-02 15:33:44 +00:00
										 |  |  | #include <QString>
 | 
					
						
							| 
									
										
										
										
											2020-11-03 20:31:11 +00:00
										 |  |  | #include <QSet>
 | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | #include <QTime>
 | 
					
						
							|  |  |  | #include <QDateTime>
 | 
					
						
							|  |  |  | #include <QHostAddress>
 | 
					
						
							| 
									
										
										
										
											2018-03-28 22:25:46 +00:00
										 |  |  | #include <QColor>
 | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 10:08:35 +00:00
										 |  |  | #include "udp_export.h"
 | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | #include "Radio.hpp"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "pimpl_h.hpp"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-18 22:01:40 +00:00
										 |  |  | class QString; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | //
 | 
					
						
							|  |  |  | // MessageServer - a reference implementation of a message server
 | 
					
						
							|  |  |  | //                  matching the MessageClient class at the other end
 | 
					
						
							|  |  |  | //                  of the wire
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This class is fully functioning and suitable for use in C++
 | 
					
						
							|  |  |  | // applications that use the Qt framework. Other applications should
 | 
					
						
							|  |  |  | // use this classes' implementation as a reference implementation.
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2016-05-24 10:08:35 +00:00
										 |  |  | class UDP_EXPORT MessageServer | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  |   : public QObject | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   Q_OBJECT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |   using port_type = quint16; | 
					
						
							|  |  |  |   using Frequency = Radio::Frequency; | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   using ClientKey = QPair<QHostAddress, QString>; | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-04 00:55:15 +00:00
										 |  |  |   MessageServer (QObject * parent = nullptr, | 
					
						
							|  |  |  |                  QString const& version = QString {}, QString const& revision = QString {}); | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // start or restart the server, if the multicast_group_address
 | 
					
						
							|  |  |  |   // argument is given it is assumed to be a multicast group address
 | 
					
						
							|  |  |  |   // which the server will join
 | 
					
						
							| 
									
										
										
										
											2020-11-02 15:33:44 +00:00
										 |  |  |   Q_SLOT void start (port_type port | 
					
						
							|  |  |  |                      , QHostAddress const& multicast_group_address = QHostAddress {} | 
					
						
							| 
									
										
										
										
											2020-11-03 20:31:11 +00:00
										 |  |  |                      , QSet<QString> const& network_interface_names = QSet<QString> {}); | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-03 00:49:35 +00:00
										 |  |  |   // ask the client to clear one or both of the decode windows
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   Q_SLOT void clear_decodes (ClientKey const&, quint8 window = 0); | 
					
						
							| 
									
										
										
										
											2019-02-03 00:49:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  |   // ask the client with identification 'id' to make the same action
 | 
					
						
							|  |  |  |   // as a double click on the decode would
 | 
					
						
							|  |  |  |   //
 | 
					
						
							|  |  |  |   // note that the client is not obliged to take any action and only
 | 
					
						
							|  |  |  |   // takes any action if the decode is present and is a CQ or QRZ message
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   Q_SLOT void reply (ClientKey const&, QTime time, qint32 snr, float delta_time, quint32 delta_frequency | 
					
						
							| 
									
										
										
										
											2017-09-22 15:36:24 +00:00
										 |  |  |                      , QString const& mode, QString const& message, bool low_confidence, quint8 modifiers); | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   // ask the client to close down gracefully
 | 
					
						
							|  |  |  |   Q_SLOT void close (ClientKey const&); | 
					
						
							| 
									
										
										
										
											2019-06-25 14:35:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   // ask the client to replay all decodes
 | 
					
						
							|  |  |  |   Q_SLOT void replay (ClientKey const&); | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   // ask the client to halt transmitting auto_only just disables auto
 | 
					
						
							|  |  |  |   // Tx, otherwise halt is immediate
 | 
					
						
							|  |  |  |   Q_SLOT void halt_tx (ClientKey const&, bool auto_only); | 
					
						
							| 
									
										
										
										
											2015-05-06 20:30:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   // ask the client to set the free text message and optionally send
 | 
					
						
							|  |  |  |   // it ASAP
 | 
					
						
							|  |  |  |   Q_SLOT void free_text (ClientKey const&, QString const& text, bool send); | 
					
						
							| 
									
										
										
										
											2015-05-06 20:30:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   // ask the client to set the location provided
 | 
					
						
							|  |  |  |   Q_SLOT void location (ClientKey const&, QString const& location); | 
					
						
							| 
									
										
										
										
											2018-02-04 22:42:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   // ask the client to highlight the callsign specified with the given
 | 
					
						
							|  |  |  |   // colors
 | 
					
						
							|  |  |  |   Q_SLOT void highlight_callsign (ClientKey const&, QString const& callsign | 
					
						
							| 
									
										
										
										
											2018-03-28 22:25:46 +00:00
										 |  |  |                                   , QColor const& bg = QColor {}, QColor const& fg = QColor {} | 
					
						
							|  |  |  |                                   , bool last_only = false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   // ask the client to switch to configuration 'configuration_name'
 | 
					
						
							|  |  |  |   Q_SLOT void switch_configuration (ClientKey const&, QString const& configuration_name); | 
					
						
							| 
									
										
										
										
											2019-06-13 01:44:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   // ask the client to change configuration
 | 
					
						
							|  |  |  |   Q_SLOT void configure (ClientKey const&, QString const& mode, quint32 frequency_tolerance | 
					
						
							| 
									
										
										
										
											2019-06-25 14:35:58 +01:00
										 |  |  |                          , QString const& submode, bool fast_mode, quint32 tr_period, quint32 rx_df | 
					
						
							|  |  |  |                          , QString const& dx_call, QString const& dx_grid, bool generate_messages); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  |   // the following signals are emitted when a client broadcasts the
 | 
					
						
							|  |  |  |   // matching message
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   Q_SIGNAL void client_opened (ClientKey const&, QString const& version, QString const& revision); | 
					
						
							|  |  |  |   Q_SIGNAL void status_update (ClientKey const&, Frequency, QString const& mode, QString const& dx_call | 
					
						
							| 
									
										
										
										
											2015-11-13 15:44:11 +00:00
										 |  |  |                                , QString const& report, QString const& tx_mode, bool tx_enabled | 
					
						
							| 
									
										
										
										
											2019-06-25 14:35:58 +01:00
										 |  |  |                                , bool transmitting, bool decoding, quint32 rx_df, quint32 tx_df | 
					
						
							| 
									
										
										
										
											2016-07-08 10:25:21 +00:00
										 |  |  |                                , QString const& de_call, QString const& de_grid, QString const& dx_grid | 
					
						
							| 
									
										
										
										
											2018-12-02 23:19:08 +00:00
										 |  |  |                                , bool watchdog_timeout, QString const& sub_mode, bool fast_mode | 
					
						
							| 
									
										
										
										
											2019-06-25 14:35:58 +01:00
										 |  |  |                                , quint8 special_op_mode, quint32 frequency_tolerance, quint32 tr_period | 
					
						
							|  |  |  |                                , QString const& configuration_name); | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   Q_SIGNAL void client_closed (ClientKey const&); | 
					
						
							|  |  |  |   Q_SIGNAL void decode (bool is_new, ClientKey const&, QTime time, qint32 snr, float delta_time | 
					
						
							| 
									
										
										
										
											2017-07-26 21:18:59 +00:00
										 |  |  |                         , quint32 delta_frequency, QString const& mode, QString const& message | 
					
						
							| 
									
										
										
										
											2017-09-16 22:20:59 +00:00
										 |  |  |                         , bool low_confidence, bool off_air); | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   Q_SIGNAL void WSPR_decode (bool is_new, ClientKey const&, QTime time, qint32 snr, float delta_time, Frequency | 
					
						
							| 
									
										
										
										
											2017-09-16 22:20:59 +00:00
										 |  |  |                              , qint32 drift, QString const& callsign, QString const& grid, qint32 power | 
					
						
							|  |  |  |                              , bool off_air); | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   Q_SIGNAL void qso_logged (ClientKey const&, QDateTime time_off, QString const& dx_call, QString const& dx_grid | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  |                             , Frequency dial_frequency, QString const& mode, QString const& report_sent | 
					
						
							|  |  |  |                             , QString const& report_received, QString const& tx_power, QString const& comments | 
					
						
							| 
									
										
										
										
											2018-02-04 22:42:35 +00:00
										 |  |  |                             , QString const& name, QDateTime time_on, QString const& operator_call | 
					
						
							| 
									
										
										
										
											2018-12-02 10:09:37 -05:00
										 |  |  |                             , QString const& my_call, QString const& my_grid | 
					
						
							| 
									
										
										
										
											2020-06-27 00:17:03 +02:00
										 |  |  |                             , QString const& exchange_sent, QString const& exchange_rcvd, QString const& prop_mode); | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  |   Q_SIGNAL void decodes_cleared (ClientKey const&); | 
					
						
							|  |  |  |   Q_SIGNAL void logged_ADIF (ClientKey const&, QByteArray const& ADIF); | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // this signal is emitted when a network error occurs
 | 
					
						
							|  |  |  |   Q_SIGNAL void error (QString const&) const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2016-05-24 10:08:35 +00:00
										 |  |  |   class UDP_NO_EXPORT impl; | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  |   pimpl<impl> m_; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-02 21:35:48 +00:00
										 |  |  | Q_DECLARE_METATYPE (MessageServer::ClientKey); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-15 16:40:49 +00:00
										 |  |  | #endif
 |