2014-05-18 11:52:39 -04:00
|
|
|
#ifndef INCLUDE_PLUGINMANAGER_H
|
|
|
|
#define INCLUDE_PLUGINMANAGER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QDir>
|
|
|
|
#include "plugin/plugininterface.h"
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/export.h"
|
|
|
|
|
|
|
|
class QAction;
|
|
|
|
class QComboBox;
|
|
|
|
class QPluginLoader;
|
|
|
|
class Preset;
|
|
|
|
class MainWindow;
|
|
|
|
class SampleSource;
|
|
|
|
class Message;
|
|
|
|
|
2015-08-29 19:26:51 -04:00
|
|
|
class SDRANGEL_API PluginManager : public QObject {
|
2014-05-18 11:52:39 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-08-08 22:09:05 -04:00
|
|
|
struct Plugin
|
|
|
|
{
|
2014-05-18 11:52:39 -04:00
|
|
|
QString filename;
|
|
|
|
QPluginLoader* loader;
|
2015-09-30 02:55:58 -04:00
|
|
|
PluginInterface* pluginInterface;
|
2015-08-08 22:09:05 -04:00
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
Plugin(const QString& _filename, QPluginLoader* pluginLoader, PluginInterface* _plugin) :
|
|
|
|
filename(_filename),
|
|
|
|
loader(pluginLoader),
|
2015-09-30 02:55:58 -04:00
|
|
|
pluginInterface(_plugin)
|
2014-05-18 11:52:39 -04:00
|
|
|
{ }
|
|
|
|
};
|
2015-08-08 22:09:05 -04:00
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
typedef QList<Plugin> Plugins;
|
|
|
|
|
|
|
|
explicit PluginManager(MainWindow* mainWindow, DSPEngine* dspEngine, QObject* parent = NULL);
|
|
|
|
~PluginManager();
|
|
|
|
void loadPlugins();
|
|
|
|
|
|
|
|
const Plugins& getPlugins() const { return m_plugins; }
|
|
|
|
|
|
|
|
void registerChannel(const QString& channelName, PluginInterface* plugin, QAction* action);
|
|
|
|
void registerChannelInstance(const QString& channelName, PluginGUI* pluginGUI);
|
|
|
|
void addChannelRollup(QWidget* pluginGUI);
|
|
|
|
void removeChannelInstance(PluginGUI* pluginGUI);
|
|
|
|
|
|
|
|
void registerSampleSource(const QString& sourceName, PluginInterface* plugin);
|
|
|
|
|
2015-10-01 22:04:38 -04:00
|
|
|
void loadSettings(const Preset* preset);
|
|
|
|
void loadSourceSettings(const Preset* preset);
|
2015-07-18 20:07:40 -04:00
|
|
|
void saveSettings(Preset* preset);
|
2015-10-01 22:04:38 -04:00
|
|
|
void saveSourceSettings(Preset* preset);
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
void freeAll();
|
|
|
|
|
2015-08-17 02:29:34 -04:00
|
|
|
bool handleMessage(const Message& message);
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
void updateSampleSourceDevices();
|
2015-10-02 08:19:28 -04:00
|
|
|
void fillSampleSourceSelector(QComboBox* comboBox);
|
|
|
|
int selectSampleSourceByIndex(int index);
|
2015-09-30 00:57:40 -04:00
|
|
|
int selectFirstSampleSource(const QString& sourceId);
|
2015-10-01 10:57:33 -04:00
|
|
|
int selectSampleSourceBySerialOrSequence(const QString& sourceId, const QString& sourceSerial, int sourceSequence);
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct ChannelRegistration {
|
|
|
|
QString m_channelName;
|
|
|
|
PluginInterface* m_plugin;
|
|
|
|
ChannelRegistration(const QString& channelName, PluginInterface* plugin) :
|
|
|
|
m_channelName(channelName),
|
|
|
|
m_plugin(plugin)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
typedef QList<ChannelRegistration> ChannelRegistrations;
|
|
|
|
|
|
|
|
struct ChannelInstanceRegistration {
|
|
|
|
QString m_channelName;
|
|
|
|
PluginGUI* m_gui;
|
|
|
|
ChannelInstanceRegistration() :
|
|
|
|
m_channelName(),
|
|
|
|
m_gui(NULL)
|
|
|
|
{ }
|
|
|
|
ChannelInstanceRegistration(const QString& channelName, PluginGUI* pluginGUI) :
|
|
|
|
m_channelName(channelName),
|
|
|
|
m_gui(pluginGUI)
|
|
|
|
{ }
|
2015-07-18 20:07:40 -04:00
|
|
|
bool operator<(const ChannelInstanceRegistration& other) const;
|
2014-05-18 11:52:39 -04:00
|
|
|
};
|
|
|
|
typedef QList<ChannelInstanceRegistration> ChannelInstanceRegistrations;
|
|
|
|
|
|
|
|
struct SampleSourceRegistration {
|
2015-09-30 00:57:40 -04:00
|
|
|
QString m_sourceId;
|
2014-05-18 11:52:39 -04:00
|
|
|
PluginInterface* m_plugin;
|
2015-09-30 00:57:40 -04:00
|
|
|
SampleSourceRegistration(const QString& sourceId, PluginInterface* plugin) :
|
|
|
|
m_sourceId(sourceId),
|
2014-05-18 11:52:39 -04:00
|
|
|
m_plugin(plugin)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
typedef QList<SampleSourceRegistration> SampleSourceRegistrations;
|
|
|
|
|
|
|
|
struct SampleSourceDevice {
|
|
|
|
PluginInterface* m_plugin;
|
|
|
|
QString m_displayName;
|
2015-09-30 00:57:40 -04:00
|
|
|
QString m_sourceId;
|
|
|
|
QString m_sourceSerial;
|
|
|
|
int m_sourceSequence;
|
|
|
|
|
|
|
|
SampleSourceDevice(PluginInterface* plugin,
|
|
|
|
const QString& displayName,
|
|
|
|
const QString& sourceId,
|
|
|
|
const QString& sourceSerial,
|
|
|
|
int sourceSequence) :
|
2014-05-18 11:52:39 -04:00
|
|
|
m_plugin(plugin),
|
|
|
|
m_displayName(displayName),
|
2015-09-30 00:57:40 -04:00
|
|
|
m_sourceId(sourceId),
|
|
|
|
m_sourceSerial(sourceSerial),
|
|
|
|
m_sourceSequence(sourceSequence)
|
2014-05-18 11:52:39 -04:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
typedef QList<SampleSourceDevice> SampleSourceDevices;
|
|
|
|
|
|
|
|
PluginAPI m_pluginAPI;
|
|
|
|
MainWindow* m_mainWindow;
|
|
|
|
DSPEngine* m_dspEngine;
|
|
|
|
Plugins m_plugins;
|
|
|
|
|
|
|
|
ChannelRegistrations m_channelRegistrations;
|
|
|
|
ChannelInstanceRegistrations m_channelInstanceRegistrations;
|
|
|
|
SampleSourceRegistrations m_sampleSourceRegistrations;
|
|
|
|
SampleSourceDevices m_sampleSourceDevices;
|
|
|
|
|
2015-09-30 00:57:40 -04:00
|
|
|
QString m_sampleSourceId;
|
|
|
|
QString m_sampleSourceSerial;
|
|
|
|
int m_sampleSourceSequence;
|
2015-08-17 20:47:14 -04:00
|
|
|
PluginGUI* m_sampleSourcePluginGUI;
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
void loadPlugins(const QDir& dir);
|
|
|
|
void renameChannelInstances();
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline bool operator<(const PluginManager::Plugin& a, const PluginManager::Plugin& b)
|
|
|
|
{
|
2015-09-30 02:55:58 -04:00
|
|
|
return a.pluginInterface->getPluginDescriptor().displayedName < b.pluginInterface->getPluginDescriptor().displayedName;
|
2014-05-18 11:52:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // INCLUDE_PLUGINMANAGER_H
|