mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			96 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef INCLUDE_PLUGINAPI_H
 | |
| #define INCLUDE_PLUGINAPI_H
 | |
| 
 | |
| #include <QObject>
 | |
| #include <QList>
 | |
| 
 | |
| #include "export.h"
 | |
| #include "plugin/plugininterface.h"
 | |
| 
 | |
| class QString;
 | |
| 
 | |
| class PluginManager;
 | |
| class MessageQueue;
 | |
| 
 | |
| class SDRBASE_API PluginAPI : public QObject {
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
|     struct SamplingDeviceRegistration //!< This is the device registration
 | |
|     {
 | |
|         QString m_deviceHardwareId;
 | |
|         QString m_deviceId;
 | |
|         PluginInterface* m_plugin;
 | |
|         SamplingDeviceRegistration(const QString& hardwareId, const QString& deviceId, PluginInterface* plugin) :
 | |
|             m_deviceHardwareId(hardwareId),
 | |
|             m_deviceId(deviceId),
 | |
|             m_plugin(plugin)
 | |
|         { }
 | |
|     };
 | |
| 
 | |
|     typedef QList<SamplingDeviceRegistration> SamplingDeviceRegistrations;
 | |
| 
 | |
|     struct ChannelRegistration
 | |
|     {
 | |
|         QString m_channelIdURI;       //!< Channel type ID in URI form
 | |
|         QString m_channelId;          //!< Channel type ID in short form from object name
 | |
|         PluginInterface* m_plugin;
 | |
|         ChannelRegistration(const QString& channelIdURI, const QString& channelId, PluginInterface* plugin) :
 | |
|             m_channelIdURI(channelIdURI),
 | |
|             m_channelId(channelId),
 | |
|             m_plugin(plugin)
 | |
|         { }
 | |
|     };
 | |
| 
 | |
|     typedef QList<ChannelRegistration> ChannelRegistrations;
 | |
| 
 | |
|     struct FeatureRegistration
 | |
|     {
 | |
|         QString m_featureIdURI; //!< Feature type ID in URI form
 | |
|         QString m_featureId;    //!< Feature type ID in short form from object name
 | |
|         PluginInterface *m_plugin;
 | |
|         FeatureRegistration(const QString& featureIdURI, const QString& featureId, PluginInterface* plugin) :
 | |
|             m_featureIdURI(featureIdURI),
 | |
|             m_featureId(featureId),
 | |
|             m_plugin(plugin)
 | |
|         { }
 | |
|     };
 | |
| 
 | |
|     typedef QList<FeatureRegistration> FeatureRegistrations;
 | |
| 
 | |
| 	// Rx Channel stuff
 | |
| 	void registerRxChannel(const QString& channelIdURI, const QString& channelId, PluginInterface* plugin);
 | |
| 	ChannelRegistrations *getRxChannelRegistrations();
 | |
| 
 | |
| 	// Tx Channel stuff
 | |
| 	void registerTxChannel(const QString& channelIdURI, const QString& channelId, PluginInterface* plugin);
 | |
| 	ChannelRegistrations *getTxChannelRegistrations();
 | |
| 
 | |
|     // MIMO Channel stuff
 | |
| 	void registerMIMOChannel(const QString& channelIdURI, const QString& channelId, PluginInterface* plugin);
 | |
| 	ChannelRegistrations *getMIMOChannelRegistrations();
 | |
| 
 | |
| 	// Sample Source stuff
 | |
| 	void registerSampleSource(const QString& sourceName, PluginInterface* plugin);
 | |
| 
 | |
| 	// Sample Sink stuff
 | |
| 	void registerSampleSink(const QString& sinkName, PluginInterface* plugin);
 | |
| 
 | |
| 	// Sample MIMO stuff
 | |
| 	void registerSampleMIMO(const QString& sinkName, PluginInterface* plugin);
 | |
| 
 | |
|     // Feature stuff
 | |
|     void registerFeature(const QString& featureIdURI, const QString& featureId, PluginInterface* plugin);
 | |
|     FeatureRegistrations *getFeatureRegistrations();
 | |
| 
 | |
| protected:
 | |
| 	PluginManager* m_pluginManager;
 | |
| 
 | |
| 	PluginAPI(PluginManager* pluginManager);
 | |
| 	~PluginAPI();
 | |
| 
 | |
| 	friend class PluginManager;
 | |
| };
 | |
| 
 | |
| #endif // INCLUDE_PLUGINAPI_H
 |