/* === This file is part of Calamares - === * * Copyright 2014, Teo Mrnjavac * * Calamares 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, either version 3 of the License, or * (at your option) any later version. * * Calamares 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 for more details. * * You should have received a copy of the GNU General Public License * along with Calamares. If not, see . */ #include "Module.h" #include "ProcessJobModule.h" #include "ViewModule.h" #include "utils/YamlUtils.h" #include "utils/Logger.h" #include #include #include #include #include // Example module.conf /* --- type: "core" #core or view name: "foo" #the module name. must be unique and same as the parent directory interface: "qtplugin" #can be: qtplugin, python, process, ... requires: [] #list of module names that must also be loaded. only applies to #binary plugins! these are actual link-time dependencies, not #conceptual dependencies for the setup procedure */ void operator>>( const YAML::Node& node, Calamares::Module* m ) { m->m_name = QString::fromStdString( node[ "name" ].as< std::string >() ); if ( node[ "requires" ] && node[ "requires" ].IsSequence() ) { node[ "requires" ] >> m->m_requiredModules; } // Module-specific configuration if ( node[ "configuration" ] && node[ "configuration" ].IsMap() ) { m->m_configurationMap = CalamaresUtils::yamlMapToVariant( node[ "configuration" ] ).toMap(); } } namespace Calamares { Module::~Module() {} Module* Module::fromConfigFile( const QString& path ) { Module* m = nullptr; QFile metadataFile( path ); if ( metadataFile.exists() && metadataFile.open( QFile::ReadOnly | QFile::Text ) ) { QByteArray ba = metadataFile.readAll(); cDebug() << Q_FUNC_INFO << "module metadata file: " << ba; try { YAML::Node doc = YAML::Load( ba.constData() ); if ( !doc.IsMap() ) { cDebug() << Q_FUNC_INFO << "bad module metadata format" << path; return nullptr; } if ( !doc[ "type" ] || !doc[ "interface" ] ) { cDebug() << Q_FUNC_INFO << "bad module metadata format" << path; return nullptr; } QString typeString = QString::fromStdString( doc[ "type" ].as< std::string >() ); QString intfString = QString::fromStdString( doc[ "interface" ].as< std::string >() ); if ( typeString == "view" && intfString == "qtplugin" ) { m = new ViewModule(); } else if ( typeString == "job" ) { if ( intfString == "process" ) { m = new ProcessJobModule(); } else if ( intfString == "python" ) { m = nullptr; //TODO: add Python module here } } if ( !m ) { cDebug() << Q_FUNC_INFO << "bad module type or interface string" << path << typeString << intfString; return nullptr; } QFileInfo mfi( path ); m->m_directory = mfi.absoluteDir().absolutePath(); m->initFrom( doc ); return m; } catch ( YAML::Exception& e ) { cDebug() << "WARNING: YAML parser error " << e.what(); delete m; return nullptr; } } return nullptr; } QString Module::name() const { return m_name; } QStringList Module::requiredModules() const { return m_requiredModules; } QString Module::location() const { return m_directory; } bool Module::isLoaded() const { return m_loaded; } Module::Module() : m_loaded( false ) {} void Module::initFrom( const YAML::Node& node ) { node >> this; } } //ns