| 
									
										
										
										
											2017-12-17 23:15:42 +01: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                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class DSPDeviceSourceEngine; | 
					
						
							|  |  |  | class DeviceSourceAPI; | 
					
						
							|  |  |  | class DSPDeviceSinkEngine; | 
					
						
							|  |  |  | class DeviceSinkAPI; | 
					
						
							|  |  |  | class PluginAPI; | 
					
						
							|  |  |  | class ChannelSinkAPI; | 
					
						
							|  |  |  | class ChannelSourceAPI; | 
					
						
							|  |  |  | class Preset; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-27 19:26:52 +01:00
										 |  |  | class DeviceSet | 
					
						
							| 
									
										
										
										
											2017-12-17 23:15:42 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-27 19:26:52 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-12-17 23:15:42 +01:00
										 |  |  |     DSPDeviceSourceEngine *m_deviceSourceEngine; | 
					
						
							|  |  |  |     DeviceSourceAPI *m_deviceSourceAPI; | 
					
						
							|  |  |  |     DSPDeviceSinkEngine *m_deviceSinkEngine; | 
					
						
							|  |  |  |     DeviceSinkAPI *m_deviceSinkAPI; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DeviceSet(int tabIndex); | 
					
						
							|  |  |  |     ~DeviceSet(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-23 22:33:30 +01:00
										 |  |  |     int getNumberOfRxChannels() const { return m_rxChannelInstanceRegistrations.size(); } | 
					
						
							|  |  |  |     int getNumberOfTxChannels() const { return m_txChannelInstanceRegistrations.size(); } | 
					
						
							| 
									
										
										
										
											2017-12-23 05:56:40 +01:00
										 |  |  |     void addRxChannel(int selectedChannelIndex, PluginAPI *pluginAPI); | 
					
						
							|  |  |  |     void addTxChannel(int selectedChannelIndex, PluginAPI *pluginAPI); | 
					
						
							| 
									
										
										
										
											2017-12-23 22:33:30 +01:00
										 |  |  |     void deleteRxChannel(int channelIndex); | 
					
						
							|  |  |  |     void deleteTxChannel(int channelIndex); | 
					
						
							| 
									
										
										
										
											2017-12-17 23:15:42 +01:00
										 |  |  |     void registerRxChannelInstance(const QString& channelName, ChannelSinkAPI* channelAPI); | 
					
						
							|  |  |  |     void registerTxChannelInstance(const QString& channelName, ChannelSourceAPI* channelAPI); | 
					
						
							|  |  |  |     void removeRxChannelInstance(ChannelSinkAPI* channelAPI); | 
					
						
							|  |  |  |     void removeTxChannelInstance(ChannelSourceAPI* channelAPI); | 
					
						
							|  |  |  |     void freeRxChannels(); | 
					
						
							|  |  |  |     void freeTxChannels(); | 
					
						
							|  |  |  |     void loadRxChannelSettings(const Preset* preset, PluginAPI *pluginAPI); | 
					
						
							|  |  |  |     void saveRxChannelSettings(Preset* preset); | 
					
						
							|  |  |  |     void loadTxChannelSettings(const Preset* preset, PluginAPI *pluginAPI); | 
					
						
							|  |  |  |     void saveTxChannelSettings(Preset* preset); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     struct ChannelInstanceRegistration | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         QString m_channelName; | 
					
						
							|  |  |  |         ChannelSinkAPI *m_channelSinkAPI; | 
					
						
							|  |  |  |         ChannelSourceAPI *m_channelSourceAPI; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ChannelInstanceRegistration() : | 
					
						
							|  |  |  |             m_channelName(), | 
					
						
							|  |  |  |             m_channelSinkAPI(0), | 
					
						
							|  |  |  |             m_channelSourceAPI(0) | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ChannelInstanceRegistration(const QString& channelName, ChannelSinkAPI* channelAPI) : | 
					
						
							|  |  |  |             m_channelName(channelName), | 
					
						
							|  |  |  |             m_channelSinkAPI(channelAPI), | 
					
						
							|  |  |  |             m_channelSourceAPI(0) | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ChannelInstanceRegistration(const QString& channelName, ChannelSourceAPI* channelAPI) : | 
					
						
							|  |  |  |             m_channelName(channelName), | 
					
						
							|  |  |  |             m_channelSinkAPI(0), | 
					
						
							|  |  |  |             m_channelSourceAPI(channelAPI) | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         bool operator<(const ChannelInstanceRegistration& other) const; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     typedef QList<ChannelInstanceRegistration> ChannelInstanceRegistrations; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ChannelInstanceRegistrations m_rxChannelInstanceRegistrations; | 
					
						
							|  |  |  |     ChannelInstanceRegistrations m_txChannelInstanceRegistrations; | 
					
						
							|  |  |  |     int m_deviceTabIndex; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void renameRxChannelInstances(); | 
					
						
							|  |  |  |     void renameTxChannelInstances(); | 
					
						
							| 
									
										
										
										
											2018-05-30 11:49:54 +02:00
										 |  |  |     /** Use this function to support possible older identifiers in presets */ | 
					
						
							|  |  |  |     bool compareRxChannelURIs(const QString& registerdChannelURI, const QString& xChannelURI); | 
					
						
							| 
									
										
										
										
											2017-12-17 23:15:42 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* SDRSRV_DEVICE_DEVICESET_H_ */
 |