2014-05-18 11:52:39 -04:00
# ifndef INCLUDE_PLUGININTERFACE_H
# define INCLUDE_PLUGININTERFACE_H
# include <QtPlugin>
# include <QString>
2018-03-20 08:49:21 -04:00
# include "export.h"
2018-03-03 14:23:38 -05:00
struct SDRBASE_API PluginDescriptor {
2014-05-18 11:52:39 -04:00
// general plugin description
const QString displayedName ;
const QString version ;
const QString copyright ;
const QString website ;
bool licenseIsGPL ;
const QString sourceCodeURL ;
} ;
class PluginAPI ;
2016-10-10 19:17:55 -04:00
class DeviceSourceAPI ;
2017-10-29 19:02:28 -04:00
class DeviceUISet ;
2016-10-14 12:47:19 -04:00
class DeviceSinkAPI ;
2017-09-25 18:22:08 -04:00
class PluginInstanceGUI ;
2016-05-16 21:41:01 -04:00
class QWidget ;
2017-09-14 02:49:31 -04:00
class DeviceSampleSource ;
class DeviceSampleSink ;
2017-11-08 02:31:00 -05:00
class BasebandSampleSink ;
class BasebandSampleSource ;
2017-12-17 17:15:42 -05:00
class ChannelSinkAPI ;
class ChannelSourceAPI ;
2014-05-18 11:52:39 -04:00
2018-03-03 14:23:38 -05:00
class SDRBASE_API PluginInterface {
2014-05-18 11:52:39 -04:00
public :
2016-10-13 16:23:43 -04:00
struct SamplingDevice
2015-09-30 00:57:40 -04:00
{
2017-11-01 15:06:33 -04:00
enum SamplingDeviceType
{
PhysicalDevice ,
BuiltInDevice
} ;
QString displayedName ; //!< The human readable name
QString hardwareId ; //!< The internal id that identifies the type of hardware (i.e. HackRF, BladeRF, ...)
QString id ; //!< The internal plugin ID corresponding to the device (i.e. for HackRF input, for HackRF output ...)
2017-11-02 04:17:38 -04:00
QString serial ; //!< The device serial number defined by the vendor or a fake one (SDRplay)
2017-11-01 15:06:33 -04:00
int sequence ; //!< The device sequence. >0 when more than one device of the same type is connected
SamplingDeviceType type ; //!< The sampling device type for behavior information
bool rxElseTx ; //!< This is the Rx part else the Tx part of the device
2017-11-18 19:05:16 -05:00
int deviceNbItems ; //!< Number of items (or streams) in the device. >1 for composite devices.
2017-11-01 15:06:33 -04:00
int deviceItemIndex ; //!< For composite devices this is the Rx or Tx stream index. -1 if not initialized
int claimed ; //!< This is the device set index if claimed else -1
2015-09-30 00:57:40 -04:00
2016-10-13 16:23:43 -04:00
SamplingDevice ( const QString & _displayedName ,
2016-12-29 06:41:10 -05:00
const QString & _hardwareId ,
2015-09-30 00:57:40 -04:00
const QString & _id ,
const QString & _serial ,
2017-11-01 05:37:00 -04:00
int _sequence ,
2017-11-01 15:06:33 -04:00
SamplingDeviceType _type ,
2017-11-01 05:37:00 -04:00
bool _rxElseTx ,
2017-11-18 19:05:16 -05:00
int _deviceNbItems ,
2017-11-01 05:37:00 -04:00
int _deviceItemIndex ) :
2014-05-18 11:52:39 -04:00
displayedName ( _displayedName ) ,
2016-12-29 06:41:10 -05:00
hardwareId ( _hardwareId ) ,
2015-09-30 00:57:40 -04:00
id ( _id ) ,
serial ( _serial ) ,
2017-11-01 05:37:00 -04:00
sequence ( _sequence ) ,
2017-11-01 15:06:33 -04:00
type ( _type ) ,
2017-11-01 05:37:00 -04:00
rxElseTx ( _rxElseTx ) ,
2017-11-18 19:05:16 -05:00
deviceNbItems ( _deviceNbItems ) ,
2017-11-01 05:37:00 -04:00
deviceItemIndex ( _deviceItemIndex ) ,
claimed ( - 1 )
2014-05-18 11:52:39 -04:00
{ }
} ;
2016-10-13 16:23:43 -04:00
typedef QList < SamplingDevice > SamplingDevices ;
2014-05-18 11:52:39 -04:00
virtual ~ PluginInterface ( ) { } ;
virtual const PluginDescriptor & getPluginDescriptor ( ) const = 0 ;
virtual void initPlugin ( PluginAPI * pluginAPI ) = 0 ;
2016-10-13 17:42:08 -04:00
// channel Rx plugins
2017-10-29 20:11:35 -04:00
2017-11-07 17:49:27 -05:00
virtual PluginInstanceGUI * createRxChannelGUI (
2017-11-08 19:03:05 -05:00
DeviceUISet * deviceUISet __attribute__ ( ( unused ) ) ,
BasebandSampleSink * rxChannel __attribute__ ( ( unused ) ) )
2017-10-30 19:07:55 -04:00
{ return 0 ; }
2014-05-18 11:52:39 -04:00
2017-12-23 03:54:42 -05:00
virtual BasebandSampleSink * createRxChannelBS (
2017-11-08 02:31:00 -05:00
DeviceSourceAPI * deviceAPI __attribute__ ( ( unused ) ) )
{ return 0 ; }
2017-12-23 03:54:42 -05:00
virtual ChannelSinkAPI * createRxChannelCS (
2017-12-17 17:15:42 -05:00
DeviceSourceAPI * deviceAPI __attribute__ ( ( unused ) ) )
2017-12-22 23:56:40 -05:00
{ return 0 ; }
2017-12-17 17:15:42 -05:00
2017-11-08 02:31:00 -05:00
// channel Tx plugins
2017-10-29 20:11:35 -04:00
2017-11-07 18:05:49 -05:00
virtual PluginInstanceGUI * createTxChannelGUI (
2017-11-08 16:54:58 -05:00
DeviceUISet * deviceUISet __attribute__ ( ( unused ) ) ,
BasebandSampleSource * txChannel __attribute__ ( ( unused ) ) )
2017-10-31 19:00:03 -04:00
{ return 0 ; }
2016-10-14 12:47:19 -04:00
2017-12-23 03:54:42 -05:00
virtual BasebandSampleSource * createTxChannelBS (
2017-11-08 02:31:00 -05:00
DeviceSinkAPI * deviceAPI __attribute__ ( ( unused ) ) )
{ return 0 ; }
2017-12-23 03:54:42 -05:00
virtual ChannelSourceAPI * createTxChannelCS (
2017-12-22 23:56:40 -05:00
DeviceSinkAPI * deviceAPI __attribute__ ( ( unused ) ) )
{ return 0 ; }
2017-12-17 17:15:42 -05:00
// device source plugins only
2017-10-29 20:11:35 -04:00
2016-10-13 16:23:43 -04:00
virtual SamplingDevices enumSampleSources ( ) { return SamplingDevices ( ) ; }
2017-10-29 19:02:28 -04:00
virtual PluginInstanceGUI * createSampleSourcePluginInstanceGUI (
const QString & sourceId __attribute__ ( ( unused ) ) ,
QWidget * * widget __attribute__ ( ( unused ) ) ,
DeviceUISet * deviceUISet __attribute__ ( ( unused ) ) )
{ return 0 ; }
2017-09-14 02:49:31 -04:00
virtual DeviceSampleSource * createSampleSourcePluginInstanceInput ( const QString & sourceId __attribute__ ( ( unused ) ) , DeviceSourceAPI * deviceAPI __attribute__ ( ( unused ) ) ) { return 0 ; } // creates the input "core"
2017-09-25 18:22:08 -04:00
virtual void deleteSampleSourcePluginInstanceGUI ( PluginInstanceGUI * ui ) ;
2017-09-16 04:45:08 -04:00
virtual void deleteSampleSourcePluginInstanceInput ( DeviceSampleSource * source ) ;
2016-10-14 12:47:19 -04:00
// device sink plugins only
2017-10-29 20:11:35 -04:00
2016-10-14 12:47:19 -04:00
virtual SamplingDevices enumSampleSinks ( ) { return SamplingDevices ( ) ; }
2017-10-29 20:11:35 -04:00
virtual PluginInstanceGUI * createSampleSinkPluginInstanceGUI (
const QString & sinkId __attribute__ ( ( unused ) ) ,
QWidget * * widget __attribute__ ( ( unused ) ) ,
DeviceUISet * deviceUISet __attribute__ ( ( unused ) ) )
{ return 0 ; }
virtual DeviceSampleSink * createSampleSinkPluginInstanceOutput ( const QString & sinkId __attribute__ ( ( unused ) ) , DeviceSinkAPI * deviceAPI __attribute__ ( ( unused ) ) ) { return 0 ; } // creates the output "core"
2017-09-25 18:22:08 -04:00
virtual void deleteSampleSinkPluginInstanceGUI ( PluginInstanceGUI * ui ) ;
2017-09-16 05:34:25 -04:00
virtual void deleteSampleSinkPluginInstanceOutput ( DeviceSampleSink * sink ) ;
2014-05-18 11:52:39 -04:00
} ;
2015-10-04 22:47:23 -04:00
Q_DECLARE_INTERFACE ( PluginInterface , " SDRangel.PluginInterface/0.1 " ) ;
2014-05-18 11:52:39 -04:00
# endif // INCLUDE_PLUGININTERFACE_H