83 lines
2.2 KiB
C++
83 lines
2.2 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2021 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#include "Preset.h"
|
|
|
|
#include "utils/Logger.h"
|
|
#include "utils/Variant.h"
|
|
|
|
static void
|
|
loadPresets( Calamares::ModuleSystem::Presets& preset,
|
|
const QVariantMap& configurationMap,
|
|
std::function< bool( const QString& ) > pred )
|
|
{
|
|
cDebug() << "Creating presets" << preset.capacity();
|
|
for ( auto it = configurationMap.cbegin(); it != configurationMap.cend(); ++it )
|
|
{
|
|
if ( !it.key().isEmpty() && pred( it.key() ) )
|
|
{
|
|
QVariantMap m = it.value().toMap();
|
|
QString value = CalamaresUtils::getString( m, "value" );
|
|
bool editable = CalamaresUtils::getBool( m, "editable", true );
|
|
|
|
preset.append( Calamares::ModuleSystem::PresetField { it.key(), value, editable } );
|
|
|
|
cDebug() << Logger::SubEntry << "Preset for" << it.key() << "applied editable?" << editable;
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace Calamares
|
|
{
|
|
namespace ModuleSystem
|
|
{
|
|
Presets::Presets( const QVariantMap& configurationMap )
|
|
{
|
|
reserve( configurationMap.count() );
|
|
loadPresets( *this, configurationMap, []( const QString& ) { return true; } );
|
|
}
|
|
|
|
Presets::Presets( const QVariantMap& configurationMap, const QStringList& recognizedKeys )
|
|
{
|
|
reserve( recognizedKeys.size() );
|
|
loadPresets(
|
|
*this, configurationMap, [ &recognizedKeys ]( const QString& s ) { return recognizedKeys.contains( s ); } );
|
|
}
|
|
|
|
bool
|
|
Presets::isEditable( const QString& fieldName ) const
|
|
{
|
|
for ( const auto& p : *this )
|
|
{
|
|
if ( p.fieldName == fieldName )
|
|
{
|
|
return p.editable;
|
|
}
|
|
}
|
|
cWarning() << "Checking isEditable for unknown field" << fieldName;
|
|
return true;
|
|
}
|
|
|
|
PresetField
|
|
Presets::find( const QString& fieldName ) const
|
|
{
|
|
for ( const auto& p : *this )
|
|
{
|
|
if ( p.fieldName == fieldName )
|
|
{
|
|
return p;
|
|
}
|
|
}
|
|
|
|
return PresetField();
|
|
}
|
|
|
|
} // namespace ModuleSystem
|
|
} // namespace Calamares
|