2015-08-02 19:04:20 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 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_FILESOURCEINPUT_H
|
|
|
|
#define INCLUDE_FILESOURCEINPUT_H
|
|
|
|
|
|
|
|
#include "dsp/samplesource/samplesource.h"
|
|
|
|
#include <QString>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <ctime>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
class FileSourceThread;
|
|
|
|
|
|
|
|
class FileSourceInput : public SampleSource {
|
|
|
|
public:
|
|
|
|
struct Settings {
|
|
|
|
QString m_fileName;
|
|
|
|
|
|
|
|
Settings();
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgConfigureFileSource : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const GeneralSettings& getGeneralSettings() const { return m_generalSettings; }
|
|
|
|
const Settings& getSettings() const { return m_settings; }
|
|
|
|
|
|
|
|
static MsgConfigureFileSource* create(const GeneralSettings& generalSettings, const Settings& settings)
|
|
|
|
{
|
|
|
|
return new MsgConfigureFileSource(generalSettings, settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
GeneralSettings m_generalSettings;
|
|
|
|
Settings m_settings;
|
|
|
|
|
|
|
|
MsgConfigureFileSource(const GeneralSettings& generalSettings, const Settings& settings) :
|
|
|
|
Message(),
|
|
|
|
m_generalSettings(generalSettings),
|
|
|
|
m_settings(settings)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2015-08-04 21:25:06 -04:00
|
|
|
class MsgConfigureFileName : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const QString& getFileName() const { return m_fileName; }
|
|
|
|
|
|
|
|
static MsgConfigureFileName* create(const QString& fileName)
|
|
|
|
{
|
|
|
|
return new MsgConfigureFileName(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_fileName;
|
|
|
|
|
|
|
|
MsgConfigureFileName(const QString& fileName) :
|
|
|
|
Message(),
|
|
|
|
m_fileName(fileName)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportFileSourceAcquisition : public Message {
|
2015-08-02 19:04:20 -04:00
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
2015-08-03 22:17:24 -04:00
|
|
|
bool getAcquisition() const { return m_acquisition; }
|
2015-08-04 21:25:06 -04:00
|
|
|
|
|
|
|
static MsgReportFileSourceAcquisition* create(bool acquisition)
|
|
|
|
{
|
|
|
|
return new MsgReportFileSourceAcquisition(acquisition);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool m_acquisition;
|
|
|
|
|
|
|
|
MsgReportFileSourceAcquisition(bool acquisition) :
|
|
|
|
Message(),
|
|
|
|
m_acquisition(acquisition)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportFileSourceStreamData : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
2015-08-03 22:17:24 -04:00
|
|
|
int getSampleRate() const { return m_sampleRate; }
|
|
|
|
quint64 getCenterFrequency() const { return m_centerFrequency; }
|
|
|
|
std::time_t getStartingTimeStamp() const { return m_startingTimeStamp; }
|
2015-08-02 19:04:20 -04:00
|
|
|
|
2015-08-04 21:25:06 -04:00
|
|
|
static MsgReportFileSourceStreamData* create(int sampleRate, quint64 centerFrequency, std::time_t startingTimeStamp)
|
2015-08-02 19:04:20 -04:00
|
|
|
{
|
2015-08-04 21:25:06 -04:00
|
|
|
return new MsgReportFileSourceStreamData(sampleRate, centerFrequency, startingTimeStamp);
|
2015-08-02 19:04:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2015-08-03 22:17:24 -04:00
|
|
|
int m_sampleRate;
|
|
|
|
quint64 m_centerFrequency;
|
|
|
|
std::time_t m_startingTimeStamp;
|
2015-08-02 19:04:20 -04:00
|
|
|
|
2015-08-04 21:25:06 -04:00
|
|
|
MsgReportFileSourceStreamData(int sampleRate, quint64 centerFrequency, std::time_t startingTimeStamp) :
|
2015-08-03 22:17:24 -04:00
|
|
|
Message(),
|
|
|
|
m_sampleRate(sampleRate),
|
|
|
|
m_centerFrequency(centerFrequency),
|
|
|
|
m_startingTimeStamp(startingTimeStamp)
|
2015-08-02 19:04:20 -04:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
FileSourceInput(MessageQueue* msgQueueToGUI, const QTimer& masterTimer);
|
|
|
|
~FileSourceInput();
|
|
|
|
|
|
|
|
bool startInput(int device);
|
|
|
|
void stopInput();
|
|
|
|
|
|
|
|
const QString& getDeviceDescription() const;
|
|
|
|
int getSampleRate() const;
|
|
|
|
quint64 getCenterFrequency() const;
|
|
|
|
std::time_t getStartingTimeStamp() const;
|
|
|
|
|
|
|
|
bool handleMessage(Message* message);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QMutex m_mutex;
|
|
|
|
Settings m_settings;
|
|
|
|
std::ifstream m_ifstream;
|
|
|
|
FileSourceThread* m_fileSourceThread;
|
|
|
|
QString m_deviceDescription;
|
2015-08-04 21:25:06 -04:00
|
|
|
QString m_fileName;
|
2015-08-02 19:04:20 -04:00
|
|
|
int m_sampleRate;
|
|
|
|
quint64 m_centerFrequency;
|
|
|
|
std::time_t m_startingTimeStamp;
|
|
|
|
const QTimer& m_masterTimer;
|
|
|
|
|
|
|
|
bool applySettings(const GeneralSettings& generalSettings, const Settings& settings, bool force);
|
|
|
|
void openFileStream();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_FILESOURCEINPUT_H
|