sdrangel/sdrsrv/device/deviceset.h

86 wiersze
3.6 KiB
C
Czysty Zwykły widok Historia

2017-12-17 22:15:42 +00:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2017 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. //
2017-12-17 22:15:42 +00:00
// //
// 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 SDRSRV_DEVICE_DEVICESET_H_
#define SDRSRV_DEVICE_DEVICESET_H_
#include <QTimer>
2019-05-08 20:11:53 +00:00
class DeviceAPI;
class DSPDeviceSourceEngine;
2017-12-17 22:15:42 +00:00
class DSPDeviceSinkEngine;
class DSPDeviceMIMOEngine;
2017-12-17 22:15:42 +00:00
class PluginAPI;
2019-05-09 15:27:12 +00:00
class ChannelAPI;
2017-12-17 22:15:42 +00:00
class Preset;
class DeviceSet
2017-12-17 22:15:42 +00:00
{
public:
2019-05-08 20:11:53 +00:00
DeviceAPI *m_deviceAPI;
DSPDeviceSourceEngine *m_deviceSourceEngine;
2017-12-17 22:15:42 +00:00
DSPDeviceSinkEngine *m_deviceSinkEngine;
DSPDeviceMIMOEngine *m_deviceMIMOEngine;
2017-12-17 22:15:42 +00:00
DeviceSet(int tabIndex);
~DeviceSet();
int getNumberOfChannels() const { return m_channelInstanceRegistrations.size(); }
2019-05-09 15:27:12 +00:00
void registerRxChannelInstance(const QString& channelName, ChannelAPI* channelAPI);
void registerTxChannelInstance(const QString& channelName, ChannelAPI* channelAPI);
void registerChannelInstance(const QString& channelName, ChannelAPI* channelAPI);
2019-05-09 15:27:12 +00:00
void removeRxChannelInstance(ChannelAPI* channelAPI);
void removeTxChannelInstance(ChannelAPI* channelAPI);
void removeChannelInstance(ChannelAPI* channelAPI);
void freeChannels();
void deleteChannel(int channelIndex);
2017-12-17 22:15:42 +00:00
void loadRxChannelSettings(const Preset* preset, PluginAPI *pluginAPI);
void saveRxChannelSettings(Preset* preset);
void loadTxChannelSettings(const Preset* preset, PluginAPI *pluginAPI);
void saveTxChannelSettings(Preset* preset);
2019-09-13 11:40:31 +00:00
void loadMIMOChannelSettings(const Preset* preset, PluginAPI *pluginAPI);
void saveMIMOChannelSettings(Preset* preset);
void addRxChannel(int selectedChannelIndex, PluginAPI *pluginAPI);
void addTxChannel(int selectedChannelIndex, PluginAPI *pluginAPI);
void addMIMOChannel(int selectedChannelIndex, PluginAPI *pluginAPI);
2017-12-17 22:15:42 +00:00
private:
struct ChannelInstanceRegistration
{
QString m_channelName;
ChannelAPI *m_channelAPI;
2017-12-17 22:15:42 +00:00
ChannelInstanceRegistration() :
m_channelName(),
m_channelAPI(nullptr)
2017-12-17 22:15:42 +00:00
{ }
2019-05-09 15:27:12 +00:00
ChannelInstanceRegistration(const QString& channelName, ChannelAPI* channelAPI);
2017-12-17 22:15:42 +00:00
bool operator<(const ChannelInstanceRegistration& other) const;
};
typedef QList<ChannelInstanceRegistration> ChannelInstanceRegistrations;
ChannelInstanceRegistrations m_channelInstanceRegistrations;
2017-12-17 22:15:42 +00:00
int m_deviceTabIndex;
void renameChannelInstances();
2017-12-17 22:15:42 +00:00
};
#endif /* SDRSRV_DEVICE_DEVICESET_H_ */