///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2021 Jon Beniston, M7RCE                                        //
// Copyright (C) 2020 Edouard Griffiths, F4EXB                                   //
//                                                                               //
// 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 as version 3 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 General Public License V3 for more details.                               //
//                                                                               //
// You should have received a copy of the GNU General Public License             //
// along with this program. If not, see .          //
///////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDE_FEATURE_APRS_H_
#define INCLUDE_FEATURE_APRS_H_
#include 
#include 
#include 
#include "feature/feature.h"
#include "util/message.h"
#include "aprssettings.h"
class WebAPIAdapterInterface;
class APRSWorker;
class QNetworkAccessManager;
class QNetworkReply;
namespace SWGSDRangel {
    class SWGDeviceState;
}
class APRS : public Feature
{
    Q_OBJECT
public:
    class MsgConfigureAPRS : public Message {
        MESSAGE_CLASS_DECLARATION
    public:
        const APRSSettings& getSettings() const { return m_settings; }
        const QList& getSettingsKeys() const { return m_settingsKeys; }
        bool getForce() const { return m_force; }
        static MsgConfigureAPRS* create(const APRSSettings& settings, const QList& settingsKeys, bool force) {
            return new MsgConfigureAPRS(settings, settingsKeys, force);
        }
    private:
        APRSSettings m_settings;
        QList m_settingsKeys;
        bool m_force;
        MsgConfigureAPRS(const APRSSettings& settings, const QList& settingsKeys, bool force) :
            Message(),
            m_settings(settings),
            m_settingsKeys(settingsKeys),
            m_force(force)
        { }
    };
    class MsgReportWorker : public Message {
        MESSAGE_CLASS_DECLARATION
    public:
        QString getMessage() { return m_message; }
        static MsgReportWorker* create(QString message) {
            return new MsgReportWorker(message);
        }
    private:
        QString m_message;
        MsgReportWorker(QString message) :
            Message(),
            m_message(message)
        {}
    };
    class MsgQueryAvailableChannels : public Message {
        MESSAGE_CLASS_DECLARATION
    public:
        static MsgQueryAvailableChannels* create() {
            return new MsgQueryAvailableChannels();
        }
    protected:
        MsgQueryAvailableChannels() :
            Message()
        { }
    };
    class MsgReportAvailableChannels : public Message {
        MESSAGE_CLASS_DECLARATION
    public:
        QList& getChannels() { return m_availableChannels; }
        static MsgReportAvailableChannels* create() {
            return new MsgReportAvailableChannels();
        }
    private:
        QList m_availableChannels;
        MsgReportAvailableChannels() :
            Message()
        {}
    };
    APRS(WebAPIAdapterInterface *webAPIAdapterInterface);
    virtual ~APRS();
    virtual void destroy() { delete this; }
    virtual bool handleMessage(const Message& cmd);
    virtual void getIdentifier(QString& id) const { id = objectName(); }
    virtual QString getIdentifier() const { return objectName(); }
    virtual void getTitle(QString& title) const { title = m_settings.m_title; }
    virtual QByteArray serialize() const;
    virtual bool deserialize(const QByteArray& data);
    virtual int webapiRun(bool run,
            SWGSDRangel::SWGDeviceState& response,
            QString& errorMessage);
    virtual int webapiSettingsGet(
            SWGSDRangel::SWGFeatureSettings& response,
            QString& errorMessage);
    virtual int webapiSettingsPutPatch(
            bool force,
            const QStringList& featureSettingsKeys,
            SWGSDRangel::SWGFeatureSettings& response,
            QString& errorMessage);
    static void webapiFormatFeatureSettings(
        SWGSDRangel::SWGFeatureSettings& response,
        const APRSSettings& settings);
    static void webapiUpdateFeatureSettings(
            APRSSettings& settings,
            const QStringList& featureSettingsKeys,
            SWGSDRangel::SWGFeatureSettings& response);
    static const char* const m_featureIdURI;
    static const char* const m_featureId;
private:
    QThread *m_thread;
    APRSWorker *m_worker;
    APRSSettings m_settings;
    QHash m_availableChannels;
    QNetworkAccessManager *m_networkManager;
    QNetworkRequest m_networkRequest;
    void start();
    void stop();
    void applySettings(const APRSSettings& settings, const QList& settingsKeys, bool force = false);
    void webapiReverseSendSettings(const QList& featureSettingsKeys, const APRSSettings& settings, bool force);
    void scanAvailableChannels();
    void notifyUpdateChannels();
private slots:
    void networkManagerFinished(QNetworkReply *reply);
    void handleChannelAdded(int deviceSetIndex, ChannelAPI *channel);
    void handleMessagePipeToBeDeleted(int reason, QObject* object);
    void handleChannelMessageQueue(MessageQueue* messageQueue);
};
#endif // INCLUDE_FEATURE_APRS_H_