mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			157 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			157 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
///////////////////////////////////////////////////////////////////////////////////
 | 
						|
// 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 <http://www.gnu.org/licenses/>.          //
 | 
						|
///////////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#ifndef INCLUDE_FILESINK_H_
 | 
						|
#define INCLUDE_FILESINK_H_
 | 
						|
 | 
						|
#include <QObject>
 | 
						|
#include <QThread>
 | 
						|
#include <QMutex>
 | 
						|
#include <QNetworkRequest>
 | 
						|
 | 
						|
#include "dsp/basebandsamplesink.h"
 | 
						|
#include "dsp/spectrumvis.h"
 | 
						|
#include "channel/channelapi.h"
 | 
						|
 | 
						|
#include "filesinksettings.h"
 | 
						|
 | 
						|
class QNetworkAccessManager;
 | 
						|
class QNetworkReply;
 | 
						|
 | 
						|
class DeviceAPI;
 | 
						|
class DeviceSampleSource;
 | 
						|
class FileSinkBaseband;
 | 
						|
 | 
						|
class FileSink : public BasebandSampleSink, public ChannelAPI {
 | 
						|
    Q_OBJECT
 | 
						|
public:
 | 
						|
    class MsgConfigureFileSink : public Message {
 | 
						|
        MESSAGE_CLASS_DECLARATION
 | 
						|
 | 
						|
    public:
 | 
						|
        const FileSinkSettings& getSettings() const { return m_settings; }
 | 
						|
        bool getForce() const { return m_force; }
 | 
						|
 | 
						|
        static MsgConfigureFileSink* create(const FileSinkSettings& settings, bool force)
 | 
						|
        {
 | 
						|
            return new MsgConfigureFileSink(settings, force);
 | 
						|
        }
 | 
						|
 | 
						|
    private:
 | 
						|
        FileSinkSettings m_settings;
 | 
						|
        bool m_force;
 | 
						|
 | 
						|
        MsgConfigureFileSink(const FileSinkSettings& settings, bool force) :
 | 
						|
            Message(),
 | 
						|
            m_settings(settings),
 | 
						|
            m_force(force)
 | 
						|
        { }
 | 
						|
    };
 | 
						|
 | 
						|
    FileSink(DeviceAPI *deviceAPI);
 | 
						|
    virtual ~FileSink();
 | 
						|
    virtual void destroy() { delete this; }
 | 
						|
 | 
						|
    virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool po);
 | 
						|
    virtual void start();
 | 
						|
    virtual void stop();
 | 
						|
    virtual bool handleMessage(const Message& cmd);
 | 
						|
 | 
						|
    virtual void getIdentifier(QString& id) { id = m_channelId; }
 | 
						|
    virtual const QString& getURI() const { return m_channelIdURI; }
 | 
						|
    virtual void getTitle(QString& title) { title = "File Sink"; }
 | 
						|
    virtual qint64 getCenterFrequency() const { return m_frequencyOffset; }
 | 
						|
 | 
						|
    virtual QByteArray serialize() const;
 | 
						|
    virtual bool deserialize(const QByteArray& data);
 | 
						|
 | 
						|
    virtual int getNbSinkStreams() const { return 1; }
 | 
						|
    virtual int getNbSourceStreams() const { return 0; }
 | 
						|
 | 
						|
    virtual qint64 getStreamCenterFrequency(int streamIndex, bool sinkElseSource) const
 | 
						|
    {
 | 
						|
        (void) streamIndex;
 | 
						|
        (void) sinkElseSource;
 | 
						|
        return m_frequencyOffset;
 | 
						|
    }
 | 
						|
 | 
						|
    virtual int webapiSettingsGet(
 | 
						|
            SWGSDRangel::SWGChannelSettings& response,
 | 
						|
            QString& errorMessage);
 | 
						|
 | 
						|
    virtual int webapiSettingsPutPatch(
 | 
						|
            bool force,
 | 
						|
            const QStringList& channelSettingsKeys,
 | 
						|
            SWGSDRangel::SWGChannelSettings& response,
 | 
						|
            QString& errorMessage);
 | 
						|
 | 
						|
    virtual int webapiReportGet(
 | 
						|
            SWGSDRangel::SWGChannelReport& response,
 | 
						|
            QString& errorMessage);
 | 
						|
 | 
						|
    virtual int webapiActionsPost(
 | 
						|
            const QStringList& channelActionsKeys,
 | 
						|
            SWGSDRangel::SWGChannelActions& query,
 | 
						|
            QString& errorMessage);
 | 
						|
 | 
						|
    static void webapiFormatChannelSettings(
 | 
						|
        SWGSDRangel::SWGChannelSettings& response,
 | 
						|
        const FileSinkSettings& settings);
 | 
						|
 | 
						|
    static void webapiUpdateChannelSettings(
 | 
						|
            FileSinkSettings& settings,
 | 
						|
            const QStringList& channelSettingsKeys,
 | 
						|
            SWGSDRangel::SWGChannelSettings& response);
 | 
						|
 | 
						|
    void getLocalDevices(std::vector<uint32_t>& indexes);
 | 
						|
    uint32_t getNumberOfDeviceStreams() const;
 | 
						|
    SpectrumVis *getSpectrumVis() { return &m_spectrumVis; }
 | 
						|
    void record(bool record);
 | 
						|
    uint64_t getMsCount() const;
 | 
						|
    uint64_t getByteCount() const;
 | 
						|
    unsigned int getNbTracks() const;
 | 
						|
 | 
						|
    static const QString m_channelIdURI;
 | 
						|
    static const QString m_channelId;
 | 
						|
 | 
						|
private:
 | 
						|
    DeviceAPI *m_deviceAPI;
 | 
						|
    QThread m_thread;
 | 
						|
    FileSinkBaseband *m_basebandSink;
 | 
						|
    FileSinkSettings m_settings;
 | 
						|
    SpectrumVis m_spectrumVis;
 | 
						|
 | 
						|
    uint64_t m_centerFrequency;
 | 
						|
    int64_t m_frequencyOffset;
 | 
						|
    uint32_t m_basebandSampleRate;
 | 
						|
 | 
						|
    QNetworkAccessManager *m_networkManager;
 | 
						|
    QNetworkRequest m_networkRequest;
 | 
						|
 | 
						|
    void applySettings(const FileSinkSettings& settings, bool force = false);
 | 
						|
    void propagateSampleRateAndFrequency(uint32_t index, uint32_t log2Decim);
 | 
						|
    DeviceSampleSource *getLocalDevice(uint32_t index);
 | 
						|
 | 
						|
    void webapiFormatChannelReport(SWGSDRangel::SWGChannelReport& response);
 | 
						|
    void webapiReverseSendSettings(QList<QString>& channelSettingsKeys, const FileSinkSettings& settings, bool force);
 | 
						|
 | 
						|
private slots:
 | 
						|
    void networkManagerFinished(QNetworkReply *reply);
 | 
						|
};
 | 
						|
 | 
						|
#endif /* INCLUDE_FILESINK_H_ */
 |