kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			131 wiersze
		
	
	
		
			4.1 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			131 wiersze
		
	
	
		
			4.1 KiB
		
	
	
	
		
			C++
		
	
	
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| // Copyright (C) 2018 Edouard Griffiths, F4EXB.                                  //
 | |
| //                                                                               //
 | |
| // SDRdaemon sink channel (Rx) main settings                                     //
 | |
| //                                                                               //
 | |
| // SDRdaemon is a detached SDR front end that handles the interface with a       //
 | |
| // physical device and sends or receives the I/Q samples stream to or from a     //
 | |
| // SDRangel instance via UDP. It is controlled via a Web REST API.               //
 | |
| //                                                                               //
 | |
| // 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/>.          //
 | |
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #include <QColor>
 | |
| 
 | |
| #include "util/simpleserializer.h"
 | |
| #include "settings/serializable.h"
 | |
| #include "daemonsinksettings.h"
 | |
| 
 | |
| DaemonSinkSettings::DaemonSinkSettings()
 | |
| {
 | |
|     resetToDefaults();
 | |
| }
 | |
| 
 | |
| void DaemonSinkSettings::resetToDefaults()
 | |
| {
 | |
|     m_nbFECBlocks = 0;
 | |
|     m_txDelay = 35;
 | |
|     m_dataAddress = "127.0.0.1";
 | |
|     m_dataPort = 9090;
 | |
|     m_rgbColor = QColor(140, 4, 4).rgb();
 | |
|     m_title = "Daemon sink";
 | |
|     m_channelMarker = nullptr;
 | |
|     m_useReverseAPI = false;
 | |
|     m_reverseAPIAddress = "127.0.0.1";
 | |
|     m_reverseAPIPort = 8888;
 | |
|     m_reverseAPIDeviceIndex = 0;
 | |
|     m_reverseAPIChannelIndex = 0;
 | |
| }
 | |
| 
 | |
| QByteArray DaemonSinkSettings::serialize() const
 | |
| {
 | |
|     SimpleSerializer s(1);
 | |
|     s.writeU32(1, m_nbFECBlocks);
 | |
|     s.writeU32(2, m_txDelay);
 | |
|     s.writeString(3, m_dataAddress);
 | |
|     s.writeU32(4, m_dataPort);
 | |
|     s.writeU32(5, m_rgbColor);
 | |
|     s.writeString(6, m_title);
 | |
|     s.writeBool(7, m_useReverseAPI);
 | |
|     s.writeString(8, m_reverseAPIAddress);
 | |
|     s.writeU32(9, m_reverseAPIPort);
 | |
|     s.writeU32(10, m_reverseAPIDeviceIndex);
 | |
|     s.writeU32(11, m_reverseAPIChannelIndex);
 | |
| 
 | |
|     return s.final();
 | |
| }
 | |
| 
 | |
| bool DaemonSinkSettings::deserialize(const QByteArray& data)
 | |
| {
 | |
|     SimpleDeserializer d(data);
 | |
| 
 | |
|     if(!d.isValid())
 | |
|     {
 | |
|         resetToDefaults();
 | |
|         return false;
 | |
|     }
 | |
| 
 | |
|     if(d.getVersion() == 1)
 | |
|     {
 | |
|         uint32_t tmp;
 | |
|         QString strtmp;
 | |
| 
 | |
|         d.readU32(1, &tmp, 0);
 | |
| 
 | |
|         if (tmp < 128) {
 | |
|             m_nbFECBlocks = tmp;
 | |
|         } else {
 | |
|             m_nbFECBlocks = 0;
 | |
|         }
 | |
| 
 | |
|         d.readU32(2, &m_txDelay, 35);
 | |
|         d.readString(3, &m_dataAddress, "127.0.0.1");
 | |
|         d.readU32(4, &tmp, 0);
 | |
| 
 | |
|         if ((tmp > 1023) && (tmp < 65535)) {
 | |
|             m_dataPort = tmp;
 | |
|         } else {
 | |
|             m_dataPort = 9090;
 | |
|         }
 | |
| 
 | |
|         d.readU32(5, &m_rgbColor, QColor(0, 255, 255).rgb());
 | |
|         d.readString(6, &m_title, "Daemon sink");
 | |
|         d.readBool(7, &m_useReverseAPI, false);
 | |
|         d.readString(8, &m_reverseAPIAddress, "127.0.0.1");
 | |
|         d.readU32(9, &tmp, 0);
 | |
| 
 | |
|         if ((tmp > 1023) && (tmp < 65535)) {
 | |
|             m_reverseAPIPort = tmp;
 | |
|         } else {
 | |
|             m_reverseAPIPort = 8888;
 | |
|         }
 | |
| 
 | |
|         d.readU32(10, &tmp, 0);
 | |
|         m_reverseAPIDeviceIndex = tmp > 99 ? 99 : tmp;
 | |
|         d.readU32(11, &tmp, 0);
 | |
|         m_reverseAPIChannelIndex = tmp > 99 ? 99 : tmp;
 | |
| 
 | |
|         return true;
 | |
|     }
 | |
|     else
 | |
|     {
 | |
|         resetToDefaults();
 | |
|         return false;
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 |