| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2019 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_LOCALSINK_H_
 | 
					
						
							|  |  |  | #define INCLUDE_LOCALSINK_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QMutex>
 | 
					
						
							|  |  |  | #include <QNetworkRequest>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "dsp/basebandsamplesink.h"
 | 
					
						
							| 
									
										
										
										
											2022-12-04 02:52:02 +01:00
										 |  |  | #include "dsp/spectrumvis.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-09 17:27:12 +02:00
										 |  |  | #include "channel/channelapi.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-30 15:22:08 +02:00
										 |  |  | #include "util/message.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | #include "localsinksettings.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class QNetworkAccessManager; | 
					
						
							|  |  |  | class QNetworkReply; | 
					
						
							| 
									
										
										
										
											2019-12-08 10:09:24 +01:00
										 |  |  | class QThread; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class DeviceAPI; | 
					
						
							|  |  |  | class DeviceSampleSource; | 
					
						
							|  |  |  | class LocalSinkBaseband; | 
					
						
							| 
									
										
										
										
											2022-03-02 23:07:15 +01:00
										 |  |  | class ObjectPipe; | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-09 17:27:12 +02:00
										 |  |  | class LocalSink : public BasebandSampleSink, public ChannelAPI { | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | public: | 
					
						
							|  |  |  |     class MsgConfigureLocalSink : public Message { | 
					
						
							|  |  |  |         MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  |         const LocalSinkSettings& getSettings() const { return m_settings; } | 
					
						
							| 
									
										
										
										
											2022-12-12 07:50:35 +01:00
										 |  |  |         const QList<QString>& getSettingsKeys() const { return m_settingsKeys; } | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |         bool getForce() const { return m_force; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-12 07:50:35 +01:00
										 |  |  |         static MsgConfigureLocalSink* create(const LocalSinkSettings& settings, const QList<QString>& settingsKeys, bool force) { | 
					
						
							|  |  |  |             return new MsgConfigureLocalSink(settings, settingsKeys, force); | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         LocalSinkSettings m_settings; | 
					
						
							| 
									
										
										
										
											2022-12-12 07:50:35 +01:00
										 |  |  |         QList<QString> m_settingsKeys; | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |         bool m_force; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-12 07:50:35 +01:00
										 |  |  |         MsgConfigureLocalSink(const LocalSinkSettings& settings, const QList<QString>& settingsKeys, bool force) : | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |             Message(), | 
					
						
							|  |  |  |             m_settings(settings), | 
					
						
							| 
									
										
										
										
											2022-12-12 07:50:35 +01:00
										 |  |  |             m_settingsKeys(settingsKeys), | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |             m_force(force) | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-03 13:33:38 +01:00
										 |  |  |     class MsgReportDevices : public Message { | 
					
						
							|  |  |  |         MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  |         QList<int>& getDeviceSetIndexes() { return m_deviceSetIndexes; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static MsgReportDevices* create() { | 
					
						
							|  |  |  |             return new MsgReportDevices(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         QList<int> m_deviceSetIndexes; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         MsgReportDevices() : | 
					
						
							|  |  |  |             Message() | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |     LocalSink(DeviceAPI *deviceAPI); | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |     virtual ~LocalSink(); | 
					
						
							|  |  |  |     virtual void destroy() { delete this; } | 
					
						
							| 
									
										
										
										
											2022-04-16 16:45:53 +02:00
										 |  |  |     virtual void setDeviceAPI(DeviceAPI *deviceAPI); | 
					
						
							|  |  |  |     virtual DeviceAPI *getDeviceAPI() { return m_deviceAPI; } | 
					
						
							| 
									
										
										
										
											2022-12-04 02:52:02 +01:00
										 |  |  |     SpectrumVis *getSpectrumVis() { return &m_spectrumVis; } | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-15 08:31:49 +01:00
										 |  |  |     using BasebandSampleSink::feed; | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |     virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool po); | 
					
						
							|  |  |  |     virtual void start(); | 
					
						
							|  |  |  |     virtual void stop(); | 
					
						
							| 
									
										
										
										
											2022-02-13 00:57:33 +01:00
										 |  |  |     virtual void pushMessage(Message *msg) { m_inputMessageQueue.push(msg); } | 
					
						
							|  |  |  |     virtual QString getSinkName() { return objectName(); } | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-21 20:24:18 +01:00
										 |  |  |     virtual void getIdentifier(QString& id) { id = objectName(); } | 
					
						
							| 
									
										
										
										
											2022-03-26 09:51:06 +01:00
										 |  |  |     virtual QString getIdentifier() const { return objectName(); } | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |     virtual void getTitle(QString& title) { title = "Local Sink"; } | 
					
						
							|  |  |  |     virtual qint64 getCenterFrequency() const { return m_frequencyOffset; } | 
					
						
							| 
									
										
										
										
											2022-01-06 22:47:41 +01:00
										 |  |  |     virtual void setCenterFrequency(qint64) {} | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual QByteArray serialize() const; | 
					
						
							|  |  |  |     virtual bool deserialize(const QByteArray& data); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-09 17:27:12 +02:00
										 |  |  |     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; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |     virtual int webapiSettingsGet( | 
					
						
							|  |  |  |             SWGSDRangel::SWGChannelSettings& response, | 
					
						
							|  |  |  |             QString& errorMessage); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 22:24:48 +02:00
										 |  |  |     virtual int webapiWorkspaceGet( | 
					
						
							|  |  |  |             SWGSDRangel::SWGWorkspaceInfo& response, | 
					
						
							|  |  |  |             QString& errorMessage); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |     virtual int webapiSettingsPutPatch( | 
					
						
							|  |  |  |             bool force, | 
					
						
							|  |  |  |             const QStringList& channelSettingsKeys, | 
					
						
							|  |  |  |             SWGSDRangel::SWGChannelSettings& response, | 
					
						
							|  |  |  |             QString& errorMessage); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-01 23:21:57 +02:00
										 |  |  |     static void webapiFormatChannelSettings( | 
					
						
							|  |  |  |         SWGSDRangel::SWGChannelSettings& response, | 
					
						
							|  |  |  |         const LocalSinkSettings& settings); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     static void webapiUpdateChannelSettings( | 
					
						
							|  |  |  |             LocalSinkSettings& settings, | 
					
						
							|  |  |  |             const QStringList& channelSettingsKeys, | 
					
						
							|  |  |  |             SWGSDRangel::SWGChannelSettings& response); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-23 01:25:17 +02:00
										 |  |  |     uint32_t getNumberOfDeviceStreams() const; | 
					
						
							| 
									
										
										
										
											2022-12-03 13:33:38 +01:00
										 |  |  |     const QList<int>& getDeviceSetList() { return m_localInputDeviceIndexes; } | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-21 20:24:18 +01:00
										 |  |  |     static const char* const m_channelIdURI; | 
					
						
							|  |  |  |     static const char* const m_channelId; | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |     DeviceAPI *m_deviceAPI; | 
					
						
							| 
									
										
										
										
											2019-12-08 10:09:24 +01:00
										 |  |  |     QThread *m_thread; | 
					
						
							|  |  |  |     LocalSinkBaseband *m_basebandSink; | 
					
						
							| 
									
										
										
										
											2022-10-14 00:03:57 +02:00
										 |  |  |     bool m_running; | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  |     LocalSinkSettings m_settings; | 
					
						
							| 
									
										
										
										
											2022-12-03 13:33:38 +01:00
										 |  |  |     QList<int> m_localInputDeviceIndexes; | 
					
						
							| 
									
										
										
										
											2022-12-04 02:52:02 +01:00
										 |  |  |     SpectrumVis m_spectrumVis; | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     uint64_t m_centerFrequency; | 
					
						
							|  |  |  |     int64_t m_frequencyOffset; | 
					
						
							| 
									
										
										
										
											2019-12-08 10:09:24 +01:00
										 |  |  |     uint32_t m_basebandSampleRate; | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QNetworkAccessManager *m_networkManager; | 
					
						
							|  |  |  |     QNetworkRequest m_networkRequest; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-13 00:57:33 +01:00
										 |  |  |     virtual bool handleMessage(const Message& cmd); | 
					
						
							| 
									
										
										
										
											2022-12-12 07:50:35 +01:00
										 |  |  |     void applySettings(const LocalSinkSettings& settings, const QList<QString>& settingsKeys, bool force = false); | 
					
						
							| 
									
										
										
										
											2022-12-03 13:33:38 +01:00
										 |  |  |     void propagateSampleRateAndFrequency(int index, uint32_t log2Decim); | 
					
						
							| 
									
										
										
										
											2019-08-01 23:21:57 +02:00
										 |  |  |     static void validateFilterChainHash(LocalSinkSettings& settings); | 
					
						
							| 
									
										
										
										
											2019-12-08 10:09:24 +01:00
										 |  |  |     void calculateFrequencyOffset(uint32_t log2Decim, uint32_t filterChainHash); | 
					
						
							| 
									
										
										
										
											2022-12-03 13:33:38 +01:00
										 |  |  |     void updateDeviceSetList(); | 
					
						
							|  |  |  |     DeviceSampleSource *getLocalDevice(int index); | 
					
						
							|  |  |  |     void startProcessing(); | 
					
						
							|  |  |  |     void stopProcessing(); | 
					
						
							| 
									
										
										
										
											2019-12-08 10:09:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-12 07:50:35 +01:00
										 |  |  |     void webapiReverseSendSettings(const QList<QString>& channelSettingsKeys, const LocalSinkSettings& settings, bool force); | 
					
						
							| 
									
										
										
										
											2020-12-13 13:04:36 +01:00
										 |  |  |     void sendChannelSettings( | 
					
						
							| 
									
										
										
										
											2022-03-02 23:07:15 +01:00
										 |  |  |         const QList<ObjectPipe*>& pipes, | 
					
						
							| 
									
										
										
										
											2022-12-12 07:50:35 +01:00
										 |  |  |         const QList<QString>& channelSettingsKeys, | 
					
						
							| 
									
										
										
										
											2020-12-13 13:04:36 +01:00
										 |  |  |         const LocalSinkSettings& settings, | 
					
						
							|  |  |  |         bool force | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2020-10-23 00:11:18 +02:00
										 |  |  |     void webapiFormatChannelSettings( | 
					
						
							| 
									
										
										
										
											2022-12-12 07:50:35 +01:00
										 |  |  |         const QList<QString>& channelSettingsKeys, | 
					
						
							| 
									
										
										
										
											2020-10-23 00:11:18 +02:00
										 |  |  |         SWGSDRangel::SWGChannelSettings *swgChannelSettings, | 
					
						
							|  |  |  |         const LocalSinkSettings& settings, | 
					
						
							|  |  |  |         bool force | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  |     void networkManagerFinished(QNetworkReply *reply); | 
					
						
							| 
									
										
										
										
											2022-03-18 17:08:04 +01:00
										 |  |  |     void handleIndexInDeviceSetChanged(int index); | 
					
						
							| 
									
										
										
										
											2019-05-02 04:02:40 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* INCLUDE_LOCALSINK_H_ */
 |