mirror of
https://github.com/parchlinux/calamares.git
synced 2025-05-31 19:54:27 -04:00
Add YAML to QVariant conversion to YamlUtils
This commit is contained in:
parent
63a1ab07c1
commit
3879087c4a
2 changed files with 86 additions and 0 deletions
|
@ -19,6 +19,9 @@
|
||||||
|
|
||||||
#include <yaml-cpp/yaml.h>
|
#include <yaml-cpp/yaml.h>
|
||||||
|
|
||||||
|
#include <QRegExp>
|
||||||
|
#include <QVariant>
|
||||||
|
|
||||||
void
|
void
|
||||||
operator>>( const YAML::Node& node, QStringList& v )
|
operator>>( const YAML::Node& node, QStringList& v )
|
||||||
{
|
{
|
||||||
|
@ -28,3 +31,76 @@ operator>>( const YAML::Node& node, QStringList& v )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace CalamaresUtils
|
||||||
|
{
|
||||||
|
|
||||||
|
const QRegExp _yamlScalarTrueValues = QRegExp( "true|True|TRUE|on|On|ON" );
|
||||||
|
const QRegExp _yamlScalarFalseValues = QRegExp( "false|False|FALSE|off|Off|OFF" );
|
||||||
|
|
||||||
|
QVariant
|
||||||
|
yamlToVariant( const YAML::Node& node )
|
||||||
|
{
|
||||||
|
switch ( node.Type() )
|
||||||
|
{
|
||||||
|
case YAML::NodeType::Scalar:
|
||||||
|
return yamlScalarToVariant( node );
|
||||||
|
|
||||||
|
case YAML::NodeType::Sequence:
|
||||||
|
return yamlSequenceToVariant( node );
|
||||||
|
|
||||||
|
case YAML::NodeType::Map:
|
||||||
|
return yamlMapToVariant( node );
|
||||||
|
|
||||||
|
case YAML::NodeType::Null:
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QVariant
|
||||||
|
yamlScalarToVariant( const YAML::Node& scalarNode )
|
||||||
|
{
|
||||||
|
std::string stdScalar = scalarNode.as< std::string >();
|
||||||
|
QString scalarString = QString::fromStdString( stdScalar );
|
||||||
|
if ( _yamlScalarTrueValues.exactMatch( scalarString ) )
|
||||||
|
return QVariant( true );
|
||||||
|
if ( _yamlScalarFalseValues.exactMatch( scalarString ) )
|
||||||
|
return QVariant( false );
|
||||||
|
if ( QRegExp( "[-+]?\\d+" ).exactMatch( scalarString ) )
|
||||||
|
return QVariant( scalarString.toInt() );
|
||||||
|
if ( QRegExp( "[-+]?\\d*\\.?\\d+" ).exactMatch( scalarString ) )
|
||||||
|
return QVariant( scalarString.toDouble() );
|
||||||
|
return QVariant( scalarString );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QVariant
|
||||||
|
yamlSequenceToVariant( const YAML::Node& sequenceNode )
|
||||||
|
{
|
||||||
|
QVariantList vl;
|
||||||
|
for ( YAML::const_iterator it = sequenceNode.begin();
|
||||||
|
it != sequenceNode.end(); ++it )
|
||||||
|
{
|
||||||
|
vl << yamlToVariant( *it );
|
||||||
|
}
|
||||||
|
return vl;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QVariant
|
||||||
|
yamlMapToVariant( const YAML::Node& mapNode )
|
||||||
|
{
|
||||||
|
QVariantMap vm;
|
||||||
|
for ( YAML::const_iterator it = mapNode.begin();
|
||||||
|
it != mapNode.end(); ++it )
|
||||||
|
{
|
||||||
|
vm.insert( QString::fromStdString( it->first.as< std::string >() ),
|
||||||
|
yamlToVariant( it->second ) );
|
||||||
|
}
|
||||||
|
return vm;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -28,4 +28,14 @@ class Node;
|
||||||
|
|
||||||
void operator>>( const YAML::Node& node, QStringList& v );
|
void operator>>( const YAML::Node& node, QStringList& v );
|
||||||
|
|
||||||
|
namespace CalamaresUtils
|
||||||
|
{
|
||||||
|
|
||||||
|
QVariant yamlToVariant( const YAML::Node& node );
|
||||||
|
QVariant yamlScalarToVariant( const YAML::Node& scalarNode );
|
||||||
|
QVariant yamlSequenceToVariant( const YAML::Node& sequenceNode );
|
||||||
|
QVariant yamlMapToVariant( const YAML::Node& mapNode );
|
||||||
|
|
||||||
|
} //ns
|
||||||
|
|
||||||
#endif // YAMLUTILS_H
|
#endif // YAMLUTILS_H
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue