mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-30 20:40:20 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			132 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| // Copyright (C) 2022 Edouard Griffiths, F4EXB.                                  //
 | |
| //                                                                               //
 | |
| // Swagger server adapter interface                                              //
 | |
| //                                                                               //
 | |
| // 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                  //
 | |
| // (at your option) any later version.                                           //
 | |
| //                                                                               //
 | |
| // 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 "util/simpleserializer.h"
 | |
| #include "configuration.h"
 | |
| 
 | |
| Configuration::Configuration()
 | |
| {
 | |
|     resetToDefaults();
 | |
| }
 | |
| 
 | |
| Configuration::~Configuration()
 | |
| { }
 | |
| 
 | |
| void Configuration::resetToDefaults()
 | |
| {
 | |
| 	m_group = "default";
 | |
| 	m_description = "no name";
 | |
|     m_workspaceGeometries.clear();
 | |
| }
 | |
| 
 | |
| QByteArray Configuration::serialize() const
 | |
| {
 | |
| 	SimpleSerializer s(1);
 | |
| 
 | |
| 	s.writeString(1, m_group);
 | |
| 	s.writeString(2, m_description);
 | |
|     QByteArray b = m_featureSetPreset.serialize();
 | |
|     s.writeBlob(3, b);
 | |
| 
 | |
|     int nitems = m_workspaceGeometries.size() < 99 ? m_workspaceGeometries.size() : 99;
 | |
|     s.writeS32(100, nitems);
 | |
| 
 | |
| 	for (int i = 0; i < nitems; i++) {
 | |
| 		s.writeBlob(101 + i, m_workspaceGeometries[i]);
 | |
| 	}
 | |
| 
 | |
|     nitems = m_deviceSetPresets.size() < 99 ? m_deviceSetPresets.size() : 99;
 | |
|     s.writeS32(200, nitems);
 | |
| 
 | |
|     for (int i = 0; i < nitems; i++) {
 | |
|         s.writeBlob(201 + i, m_deviceSetPresets[i].serialize());
 | |
|     }
 | |
| 
 | |
|     nitems = m_workspaceAutoStackOptions.size() < 99 ? m_workspaceAutoStackOptions.size() : 99;
 | |
|     s.writeS32(300, nitems);
 | |
| 
 | |
|     for (int i = 0; i < nitems; i++) {
 | |
|         s.writeBool(301 + i, m_workspaceAutoStackOptions[i]);
 | |
|     }
 | |
| 
 | |
| 	return s.final();
 | |
| }
 | |
| 
 | |
| bool Configuration::deserialize(const QByteArray& data)
 | |
| {
 | |
| 	SimpleDeserializer d(data);
 | |
| 
 | |
| 	if (!d.isValid())
 | |
| 	{
 | |
| 		resetToDefaults();
 | |
| 		return false;
 | |
| 	}
 | |
| 
 | |
| 	if (d.getVersion() == 1)
 | |
| 	{
 | |
| 		d.readString(1, &m_group, "default");
 | |
| 		d.readString(2, &m_description, "no name");
 | |
| 
 | |
|         QByteArray b;
 | |
|         d.readBlob(3, &b);
 | |
|         m_featureSetPreset.deserialize(b);
 | |
| 
 | |
|         int nitems;
 | |
|         d.readS32(100, &nitems, 0);
 | |
| 
 | |
|         for(int i = 0; i < nitems; i++)
 | |
|         {
 | |
|             m_workspaceGeometries.push_back(QByteArray());
 | |
|             d.readBlob(101 + i, &m_workspaceGeometries.back());
 | |
|         }
 | |
| 
 | |
|         d.readS32(200, &nitems, 0);
 | |
| 
 | |
|         for (int i = 0; i < nitems; i++)
 | |
|         {
 | |
|             d.readBlob(201 + i, &b);
 | |
|             m_deviceSetPresets.push_back(Preset());
 | |
|             m_deviceSetPresets.back().deserialize(b);
 | |
|         }
 | |
| 
 | |
|         d.readS32(300, &nitems, 0);
 | |
| 
 | |
|         for (int i = 0; i < nitems; i++)
 | |
|         {
 | |
|             m_workspaceAutoStackOptions.push_back(true);
 | |
|             d.readBool(301 + i, &m_workspaceAutoStackOptions.back());
 | |
|         }
 | |
| 
 | |
| 		return true;
 | |
| 	}
 | |
| 	else
 | |
| 	{
 | |
| 		resetToDefaults();
 | |
| 		return false;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void Configuration::clearData()
 | |
| {
 | |
|     m_deviceSetPresets.clear();
 | |
|     m_featureSetPreset.clearFeatures();
 | |
|     m_workspaceGeometries.clear();
 | |
|     m_workspaceAutoStackOptions.clear();
 | |
| }
 |