2018-07-11 23:09:22 -04:00
|
|
|
#ifndef VARICODE_H
|
|
|
|
#define VARICODE_H
|
|
|
|
|
2018-07-12 09:54:56 -04:00
|
|
|
/**
|
|
|
|
* (C) 2018 Jordan Sherer <kn4crd@gmail.com> - All Rights Reserved
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <QBitArray>
|
2018-07-12 15:14:41 -04:00
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QRegExp>
|
2018-07-11 23:09:22 -04:00
|
|
|
#include <QString>
|
2018-07-12 09:54:56 -04:00
|
|
|
#include <QVector>
|
2018-07-11 23:09:22 -04:00
|
|
|
|
|
|
|
class Varicode
|
|
|
|
{
|
|
|
|
public:
|
2018-07-29 22:40:34 -04:00
|
|
|
// frame type transmitted via itype and decoded by the ft8 decoded
|
|
|
|
enum TransmissionType {
|
2018-07-18 16:45:27 -04:00
|
|
|
FT8 = 0, // [000]
|
|
|
|
FT8Fox = 1, // [001]
|
|
|
|
FT8Call = 2, // [010]
|
|
|
|
FT8CallLast = 3, // [011] <- used to indicate last frame in transmission
|
|
|
|
FT8CallReservedA = 4, // [100]
|
|
|
|
FT8CallReservedB = 5, // [101]
|
|
|
|
FT8CallReservedC = 6, // [110]
|
|
|
|
FT8CallReservedD = 7, // [111]
|
|
|
|
};
|
|
|
|
|
2018-07-29 22:40:34 -04:00
|
|
|
enum FrameType {
|
2018-08-01 11:25:45 -04:00
|
|
|
FrameBeacon = 0, // [000]
|
|
|
|
FrameCompound = 1, // [001]
|
|
|
|
FrameDirectedPositive = 2, // [010]
|
|
|
|
FrameDirectedNegative = 3, // [011]
|
|
|
|
FrameDataUnpadded = 4, // [100]
|
|
|
|
FrameDataPadded = 5, // [101]
|
|
|
|
FrameReservedA = 6, // [110]
|
|
|
|
FrameReservedB = 7, // [111]
|
2018-07-29 22:40:34 -04:00
|
|
|
};
|
|
|
|
|
2018-07-11 23:09:22 -04:00
|
|
|
//Varicode();
|
|
|
|
|
2018-07-20 11:40:55 -04:00
|
|
|
static QString formatSNR(int snr);
|
2018-07-21 02:18:15 -04:00
|
|
|
static QString formatPWR(int dbm);
|
2018-07-20 11:40:55 -04:00
|
|
|
|
2018-07-24 23:10:47 -04:00
|
|
|
static QString checksum16(QString const &input);
|
|
|
|
static bool checksum16Valid(QString const &checksum, QString const &input);
|
|
|
|
|
|
|
|
static QString checksum32(QString const &input);
|
|
|
|
static bool checksum32Valid(QString const &checksum, QString const &input);
|
2018-07-23 08:51:29 -04:00
|
|
|
|
2018-07-12 15:14:41 -04:00
|
|
|
static QStringList parseCallsigns(QString const &input);
|
|
|
|
static QStringList parseGrids(QString const &input);
|
|
|
|
|
2018-07-30 21:26:36 -04:00
|
|
|
static QList<QPair<int, QVector<bool>>> huffEncode(const QMap<QString, QString> &huff, QString const& text);
|
|
|
|
static QString huffDecode(const QMap<QString, QString> &huff, QVector<bool> const& bitvec);
|
2018-07-26 12:47:03 -04:00
|
|
|
|
|
|
|
static QString huffUnescape(QString const &input);
|
|
|
|
static QString huffEscape(QString const &input);
|
2018-07-30 21:26:36 -04:00
|
|
|
static QSet<QString> huffValidChars();
|
2018-07-26 12:47:03 -04:00
|
|
|
static bool huffShouldEscape(QString const &input);
|
2018-07-12 15:14:41 -04:00
|
|
|
|
2018-07-15 15:43:29 -04:00
|
|
|
static QVector<bool> bytesToBits(char * bitvec, int n);
|
2018-07-12 18:02:54 -04:00
|
|
|
static QVector<bool> strToBits(QString const& bitvec);
|
|
|
|
static QString bitsToStr(QVector<bool> const& bitvec);
|
2018-07-12 09:54:56 -04:00
|
|
|
|
2018-07-12 18:02:54 -04:00
|
|
|
static QVector<bool> intToBits(quint64 value, int expected=0);
|
|
|
|
static quint64 bitsToInt(QVector<bool> const value);
|
2018-07-15 15:43:29 -04:00
|
|
|
static quint64 bitsToInt(QVector<bool>::ConstIterator start, int n);
|
2018-07-26 12:47:03 -04:00
|
|
|
static QVector<bool> bitsListToBits(QList<QVector<bool>> &list);
|
2018-07-12 09:54:56 -04:00
|
|
|
|
2018-07-12 18:02:54 -04:00
|
|
|
static quint8 unpack5bits(QString const& value);
|
|
|
|
static QString pack5bits(quint8 packed);
|
2018-07-12 09:54:56 -04:00
|
|
|
|
2018-07-23 15:28:36 -04:00
|
|
|
static quint8 unpack6bits(QString const& value);
|
|
|
|
static QString pack6bits(quint8 packed);
|
|
|
|
|
2018-07-12 18:02:54 -04:00
|
|
|
static quint16 unpack16bits(QString const& value);
|
|
|
|
static QString pack16bits(quint16 packed);
|
2018-07-12 09:54:56 -04:00
|
|
|
|
2018-07-12 18:02:54 -04:00
|
|
|
static quint32 unpack32bits(QString const& value);
|
|
|
|
static QString pack32bits(quint32 packed);
|
|
|
|
|
|
|
|
static quint64 unpack64bits(QString const& value);
|
|
|
|
static QString pack64bits(quint64 packed);
|
2018-07-13 00:55:48 -04:00
|
|
|
|
2018-08-01 11:25:45 -04:00
|
|
|
static quint32 packAlphaNumeric22(QString const& value, bool isFlag);
|
|
|
|
static QString unpackAlphaNumeric22(quint32 packed, bool *isFlag);
|
2018-07-23 15:28:36 -04:00
|
|
|
|
2018-07-13 00:55:48 -04:00
|
|
|
static quint32 packCallsign(QString const& value);
|
|
|
|
static QString unpackCallsign(quint32 value);
|
|
|
|
|
2018-07-13 21:59:54 -04:00
|
|
|
static quint16 packGrid(QString const& value);
|
|
|
|
static QString unpackGrid(quint16 value);
|
|
|
|
|
2018-07-19 02:09:19 -04:00
|
|
|
static bool isCommandAllowed(const QString &cmd);
|
2018-07-25 22:49:19 -04:00
|
|
|
static bool isCommandBuffered(const QString &cmd);
|
2018-07-24 02:47:14 -04:00
|
|
|
|
2018-07-29 10:39:58 -04:00
|
|
|
static QString packBeaconMessage(QString const &text, QString const&callsign, int *n);
|
2018-08-02 00:32:06 -04:00
|
|
|
static QStringList unpackBeaconMessage(const QString &text, bool *isAlt);
|
2018-07-27 16:11:11 -04:00
|
|
|
|
2018-08-02 01:38:47 -04:00
|
|
|
static QString packCompoundMessage(QString const &text, int *n);
|
|
|
|
static QStringList unpackCompoundMessage(const QString &text);
|
|
|
|
|
2018-08-02 00:32:06 -04:00
|
|
|
static QString packCompoundFrame(const QString &baseCallsign, const QString &fix, bool isPrefix, quint8 type, quint16 num);
|
|
|
|
static QStringList unpackCompoundFrame(const QString &text, quint8 *pType, quint16 *pNum);
|
2018-07-24 02:47:14 -04:00
|
|
|
|
2018-07-30 17:16:45 -04:00
|
|
|
static QString packDirectedMessage(QString const& text, QString const& callsign, QString *pTo, QString * pCmd, int *n);
|
2018-07-13 04:42:23 -04:00
|
|
|
static QStringList unpackDirectedMessage(QString const& text);
|
2018-07-19 03:44:02 -04:00
|
|
|
|
2018-07-26 12:47:03 -04:00
|
|
|
static QString packDataMessage(QString const& text, QString *out, int *n);
|
2018-07-19 03:44:02 -04:00
|
|
|
static QString unpackDataMessage(QString const& text);
|
2018-07-11 23:09:22 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VARICODE_H
|