2016-10-19 12:42:57 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 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 //
|
|
|
|
// //
|
|
|
|
// 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_FILESINKGUI_H
|
|
|
|
#define INCLUDE_FILESINKGUI_H
|
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
#include "filesinkoutput.h"
|
2016-10-20 19:21:17 -04:00
|
|
|
#include "filesinksettings.h"
|
2016-10-19 12:42:57 -04:00
|
|
|
#include "plugin/plugingui.h"
|
|
|
|
|
|
|
|
|
|
|
|
class DeviceSinkAPI;
|
|
|
|
class DeviceSampleSink;
|
|
|
|
|
|
|
|
namespace Ui {
|
2016-10-19 16:32:14 -04:00
|
|
|
class FileSinkGui;
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
class FileSinkGui : public QWidget, public PluginGUI {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit FileSinkGui(DeviceSinkAPI *deviceAPI, QWidget* parent = NULL);
|
|
|
|
virtual ~FileSinkGui();
|
|
|
|
void destroy();
|
|
|
|
|
|
|
|
void setName(const QString& name);
|
|
|
|
QString getName() const;
|
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
|
|
|
private:
|
2016-10-19 16:32:14 -04:00
|
|
|
Ui::FileSinkGui* ui;
|
2016-10-19 12:42:57 -04:00
|
|
|
|
|
|
|
DeviceSinkAPI* m_deviceAPI;
|
2016-10-20 19:21:17 -04:00
|
|
|
FileSinkSettings m_settings;
|
|
|
|
QString m_fileName;
|
2016-10-22 20:22:00 -04:00
|
|
|
QTimer m_updateTimer;
|
|
|
|
QTimer m_statusTimer;
|
2016-10-19 12:42:57 -04:00
|
|
|
std::vector<int> m_gains;
|
2016-10-20 19:21:17 -04:00
|
|
|
DeviceSampleSink* m_deviceSampleSink;
|
2016-10-22 20:22:00 -04:00
|
|
|
int m_sampleRate;
|
|
|
|
quint64 m_deviceCenterFrequency; //!< Center frequency in device
|
2016-10-19 12:42:57 -04:00
|
|
|
bool m_generation;
|
|
|
|
std::time_t m_startingTimeStamp;
|
|
|
|
int m_samplesCount;
|
|
|
|
std::size_t m_tickCount;
|
|
|
|
int m_lastEngineState;
|
|
|
|
|
|
|
|
void displaySettings();
|
|
|
|
void displayTime();
|
|
|
|
void sendSettings();
|
|
|
|
void configureFileName();
|
|
|
|
void updateWithGeneration();
|
|
|
|
void updateWithStreamTime();
|
2016-10-22 20:22:00 -04:00
|
|
|
void updateSampleRateAndFrequency();
|
2016-10-19 12:42:57 -04:00
|
|
|
|
|
|
|
private slots:
|
2016-10-22 20:22:00 -04:00
|
|
|
void handleDSPMessages();
|
2016-10-23 06:22:52 -04:00
|
|
|
void handleSinkMessages();
|
2016-10-20 19:21:17 -04:00
|
|
|
void on_centerFrequency_changed(quint64 value);
|
2016-10-19 12:42:57 -04:00
|
|
|
void on_startStop_toggled(bool checked);
|
|
|
|
void on_showFileDialog_clicked(bool checked);
|
2016-10-20 19:21:17 -04:00
|
|
|
void on_sampleRate_currentIndexChanged(int index);
|
2016-10-22 20:22:00 -04:00
|
|
|
void updateHardware();
|
2016-10-19 12:42:57 -04:00
|
|
|
void updateStatus();
|
|
|
|
void tick();
|
|
|
|
};
|
|
|
|
|
|
|
|
class FileSinkSampleRates {
|
|
|
|
public:
|
|
|
|
static unsigned int getRate(unsigned int rate_index);
|
|
|
|
static unsigned int getRateIndex(unsigned int rate);
|
|
|
|
static unsigned int getNbRates();
|
|
|
|
private:
|
|
|
|
static unsigned int m_rates[1];
|
|
|
|
static unsigned int m_nb_rates;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_FILESINKGUI_H
|