mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
3f75b4144a
To facilitate interaction with other applications WSJT-X now sends status updates to a predefined UDP server or multicast group address. The status updates include the information currently posted to the decodes.txt and wsjtx_status.txt files. An optional back communications channel is also implemented allowing the UDP server application to control some basic actions in WSJT-X. A reference implementaion of a typical UDP server written in C++ using Qt is provided to demonstrate these facilities. This application is not intended as a user tool but only as an example of how a third party application may interact with WSJT-X. The UDP messages Use QDataStream based serialization. Messages are documented in NetworkMessage.hpp along with some helper classes that simplify the building and decoding of messages. Two message handling classes are introduced, MessageClient and MessageServer. WSJT-X uses the MessageClient class to manage outgoing and incoming UDP messages that allow communication with other applications. The MessageServer class implements the kind of code that a potential cooperating application might use. Although these classes use Qt serialization facilities, the message formats are easily read and written by applications that do not use the Qt framework. MessageAggregator is a demonstration application that uses MessageServer and presents a GUI that displays messages from one or more WSJT-X instances and allows sending back a CQ or QRZ reply invocation by double clicking a decode. This application is not intended as a user facing tool but rather as a demonstration of the WSJT-X UDP messaging facility. It also demonstrates being a multicast UDP server by allowing multiple instances to run concurrently. This is enabled by using an appropriate multicast group address as the server address. Cooperating applications need not implement multicast techniques but it is recomended otherwise only a single appliaction can act as a broadcast message (from WSJT-X) recipient. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5225 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
55 lines
1.1 KiB
C++
55 lines
1.1 KiB
C++
// -*- Mode: C++ -*-
|
|
#ifndef PSK_REPORTER_H
|
|
#define PSK_REPORTER_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QHostAddress>
|
|
#include <QQueue>
|
|
#include <QHash>
|
|
|
|
class MessageClient;
|
|
class QTimer;
|
|
class QHostInfo;
|
|
|
|
class PSK_Reporter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PSK_Reporter(MessageClient *, QObject *parent = nullptr);
|
|
void setLocalStation(QString call, QString grid, QString antenna, QString programInfo);
|
|
void addRemoteStation(QString call, QString grid, QString freq, QString mode, QString snr, QString time);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
void sendReport();
|
|
|
|
private slots:
|
|
void dnsLookupResult(QHostInfo info);
|
|
|
|
private:
|
|
QString m_header_h;
|
|
QString m_rxInfoDescriptor_h;
|
|
QString m_txInfoDescriptor_h;
|
|
QString m_randomId_h;
|
|
QString m_linkId_h;
|
|
|
|
QString m_rxCall;
|
|
QString m_rxGrid;
|
|
QString m_rxAnt;
|
|
QString m_progId;
|
|
|
|
QHostAddress m_pskReporterAddress;
|
|
|
|
QQueue< QHash<QString,QString> > m_spotQueue;
|
|
|
|
MessageClient * m_messageClient;
|
|
|
|
QTimer *reportTimer;
|
|
|
|
int m_sequenceNumber;
|
|
};
|
|
|
|
#endif // PSK_REPORTER_H
|