mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
306 lines
7.1 KiB
C++
306 lines
7.1 KiB
C++
#include <QSettings>
|
|
#include <QStringList>
|
|
|
|
#include "settings/mainsettings.h"
|
|
#include "commands/command.h"
|
|
#include "audio/audiodevicemanager.h"
|
|
#include "ambe/ambeengine.h"
|
|
|
|
MainSettings::MainSettings() :
|
|
m_audioDeviceManager(nullptr),
|
|
m_ambeEngine(nullptr)
|
|
{
|
|
resetToDefaults();
|
|
qInfo("MainSettings::MainSettings: settings file: format: %d location: %s", getFileFormat(), qPrintable(getFileLocation()));
|
|
}
|
|
|
|
MainSettings::~MainSettings()
|
|
{
|
|
for(int i = 0; i < m_presets.count(); ++i)
|
|
{
|
|
delete m_presets[i];
|
|
}
|
|
|
|
for(int i = 0; i < m_commands.count(); ++i)
|
|
{
|
|
delete m_commands[i];
|
|
}
|
|
}
|
|
|
|
QString MainSettings::getFileLocation() const
|
|
{
|
|
QSettings s;
|
|
return s.fileName();
|
|
}
|
|
|
|
int MainSettings::getFileFormat() const
|
|
{
|
|
QSettings s;
|
|
return (int) s.format();
|
|
}
|
|
|
|
void MainSettings::load()
|
|
{
|
|
QSettings s;
|
|
|
|
m_preferences.deserialize(qUncompress(QByteArray::fromBase64(s.value("preferences").toByteArray())));
|
|
m_workingPreset.deserialize(qUncompress(QByteArray::fromBase64(s.value("current").toByteArray())));
|
|
|
|
if (m_audioDeviceManager) {
|
|
m_audioDeviceManager->deserialize(qUncompress(QByteArray::fromBase64(s.value("audio").toByteArray())));
|
|
}
|
|
|
|
if (m_ambeEngine) {
|
|
m_ambeEngine->deserialize(qUncompress(QByteArray::fromBase64(s.value("ambe").toByteArray())));
|
|
}
|
|
|
|
QStringList groups = s.childGroups();
|
|
|
|
for(int i = 0; i < groups.size(); ++i)
|
|
{
|
|
if (groups[i].startsWith("preset"))
|
|
{
|
|
s.beginGroup(groups[i]);
|
|
Preset* preset = new Preset;
|
|
|
|
if(preset->deserialize(qUncompress(QByteArray::fromBase64(s.value("data").toByteArray()))))
|
|
{
|
|
m_presets.append(preset);
|
|
}
|
|
else
|
|
{
|
|
delete preset;
|
|
}
|
|
|
|
s.endGroup();
|
|
}
|
|
else if (groups[i].startsWith("command"))
|
|
{
|
|
s.beginGroup(groups[i]);
|
|
Command* command = new Command;
|
|
|
|
if(command->deserialize(qUncompress(QByteArray::fromBase64(s.value("data").toByteArray()))))
|
|
{
|
|
m_commands.append(command);
|
|
}
|
|
else
|
|
{
|
|
delete command;
|
|
}
|
|
|
|
s.endGroup();
|
|
}
|
|
}
|
|
|
|
m_hardwareDeviceUserArgs.deserialize(qUncompress(QByteArray::fromBase64(s.value("hwDeviceUserArgs").toByteArray())));
|
|
}
|
|
|
|
void MainSettings::save() const
|
|
{
|
|
QSettings s;
|
|
|
|
s.setValue("preferences", qCompress(m_preferences.serialize()).toBase64());
|
|
s.setValue("current", qCompress(m_workingPreset.serialize()).toBase64());
|
|
|
|
if (m_audioDeviceManager) {
|
|
s.setValue("audio", qCompress(m_audioDeviceManager->serialize()).toBase64());
|
|
}
|
|
|
|
if (m_ambeEngine) {
|
|
s.setValue("ambe", qCompress(m_ambeEngine->serialize()).toBase64());
|
|
}
|
|
|
|
QStringList groups = s.childGroups();
|
|
|
|
for(int i = 0; i < groups.size(); ++i)
|
|
{
|
|
if ((groups[i].startsWith("preset")) || (groups[i].startsWith("command")))
|
|
{
|
|
s.remove(groups[i]);
|
|
}
|
|
}
|
|
|
|
for (int i = 0; i < m_presets.count(); ++i)
|
|
{
|
|
QString group = QString("preset-%1").arg(i + 1);
|
|
s.beginGroup(group);
|
|
s.setValue("data", qCompress(m_presets[i]->serialize()).toBase64());
|
|
s.endGroup();
|
|
}
|
|
|
|
for (int i = 0; i < m_commands.count(); ++i)
|
|
{
|
|
QString group = QString("command-%1").arg(i + 1);
|
|
s.beginGroup(group);
|
|
s.setValue("data", qCompress(m_commands[i]->serialize()).toBase64());
|
|
s.endGroup();
|
|
}
|
|
|
|
s.setValue("hwDeviceUserArgs", qCompress(m_hardwareDeviceUserArgs.serialize()).toBase64());
|
|
}
|
|
|
|
void MainSettings::initialize()
|
|
{
|
|
resetToDefaults();
|
|
clearCommands();
|
|
clearPresets();
|
|
}
|
|
|
|
void MainSettings::resetToDefaults()
|
|
{
|
|
m_preferences.resetToDefaults();
|
|
m_workingPreset.resetToDefaults();
|
|
}
|
|
|
|
Preset* MainSettings::newPreset(const QString& group, const QString& description)
|
|
{
|
|
Preset* preset = new Preset();
|
|
preset->setGroup(group);
|
|
preset->setDescription(description);
|
|
addPreset(preset);
|
|
return preset;
|
|
}
|
|
|
|
void MainSettings::addPreset(Preset *preset)
|
|
{
|
|
m_presets.append(preset);
|
|
}
|
|
|
|
void MainSettings::deletePreset(const Preset* preset)
|
|
{
|
|
m_presets.removeAll((Preset*)preset);
|
|
delete (Preset*)preset;
|
|
}
|
|
|
|
void MainSettings::deletePresetGroup(const QString& groupName)
|
|
{
|
|
Presets::iterator it = m_presets.begin();
|
|
|
|
while (it != m_presets.end())
|
|
{
|
|
if ((*it)->getGroup() == groupName) {
|
|
it = m_presets.erase(it);
|
|
} else {
|
|
++it;
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainSettings::sortPresets()
|
|
{
|
|
qSort(m_presets.begin(), m_presets.end(), Preset::presetCompare);
|
|
}
|
|
|
|
void MainSettings::renamePresetGroup(const QString& oldGroupName, const QString& newGroupName)
|
|
{
|
|
int nbPresets = getPresetCount();
|
|
|
|
for (int i = 0; i < nbPresets; i++)
|
|
{
|
|
if (getPreset(i)->getGroup() == oldGroupName)
|
|
{
|
|
Preset *preset_mod = const_cast<Preset*>(getPreset(i));
|
|
preset_mod->setGroup(newGroupName);
|
|
}
|
|
}
|
|
}
|
|
|
|
const Preset* MainSettings::getPreset(const QString& groupName, quint64 centerFrequency, const QString& description, const QString& type) const
|
|
{
|
|
int nbPresets = getPresetCount();
|
|
|
|
for (int i = 0; i < nbPresets; i++)
|
|
{
|
|
if ((getPreset(i)->getGroup() == groupName) &&
|
|
(getPreset(i)->getCenterFrequency() == centerFrequency) &&
|
|
(getPreset(i)->getDescription() == description))
|
|
{
|
|
if (type == "R" && getPreset(i)->isSourcePreset()) {
|
|
return getPreset(i);
|
|
} else if (type == "T" && !getPreset(i)->isSourcePreset()) {
|
|
return getPreset(i);
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void MainSettings::clearPresets()
|
|
{
|
|
foreach (Preset *preset, m_presets) {
|
|
delete preset;
|
|
}
|
|
|
|
m_presets.clear();
|
|
}
|
|
|
|
void MainSettings::addCommand(Command *command)
|
|
{
|
|
m_commands.append(command);
|
|
}
|
|
|
|
void MainSettings::deleteCommand(const Command* command)
|
|
{
|
|
m_commands.removeAll((Command*)command);
|
|
delete (Command*)command;
|
|
}
|
|
|
|
void MainSettings::deleteCommandGroup(const QString& groupName)
|
|
{
|
|
Commands::iterator it = m_commands.begin();
|
|
|
|
while (it != m_commands.end())
|
|
{
|
|
if ((*it)->getGroup() == groupName) {
|
|
it = m_commands.erase(it);
|
|
} else {
|
|
++it;
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainSettings::sortCommands()
|
|
{
|
|
qSort(m_commands.begin(), m_commands.end(), Command::commandCompare);
|
|
}
|
|
|
|
void MainSettings::renameCommandGroup(const QString& oldGroupName, const QString& newGroupName)
|
|
{
|
|
int nbCommands = getCommandCount();
|
|
|
|
for (int i = 0; i < nbCommands; i++)
|
|
{
|
|
if (getCommand(i)->getGroup() == oldGroupName)
|
|
{
|
|
Command *command_mod = const_cast<Command*>(getCommand(i));
|
|
command_mod->setGroup(newGroupName);
|
|
}
|
|
}
|
|
}
|
|
|
|
const Command* MainSettings::getCommand(const QString& groupName, const QString& description) const
|
|
{
|
|
int nbCommands = getCommandCount();
|
|
|
|
for (int i = 0; i < nbCommands; i++)
|
|
{
|
|
if ((getCommand(i)->getGroup() == groupName) &&
|
|
(getCommand(i)->getDescription() == description))
|
|
{
|
|
return getCommand(i);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void MainSettings::clearCommands()
|
|
{
|
|
foreach (Command *command, m_commands) {
|
|
delete command;
|
|
}
|
|
|
|
m_commands.clear();
|
|
}
|