mirror of https://github.com/cutefishos/calamares
424 lines
15 KiB
C++
424 lines
15 KiB
C++
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
*
|
|
* Copyright 2014-2015, Teo Mrnjavac <teo@kde.org>
|
|
* Copyright 2018, Adriaan de Groot <groot@kde.org>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "ModuleManager.h"
|
|
|
|
#include "ExecutionViewStep.h"
|
|
#include "Module.h"
|
|
#include "RequirementsChecker.h"
|
|
#include "Settings.h"
|
|
#include "ViewManager.h"
|
|
|
|
#include "utils/Logger.h"
|
|
#include "utils/Yaml.h"
|
|
|
|
#include <QApplication>
|
|
#include <QDir>
|
|
#include <QTimer>
|
|
|
|
namespace Calamares
|
|
{
|
|
ModuleManager* ModuleManager::s_instance = nullptr;
|
|
|
|
ModuleManager*
|
|
ModuleManager::instance()
|
|
{
|
|
return s_instance;
|
|
}
|
|
|
|
|
|
ModuleManager::ModuleManager( const QStringList& paths, QObject* parent )
|
|
: QObject( parent )
|
|
, m_paths( paths )
|
|
{
|
|
Q_ASSERT( !s_instance );
|
|
s_instance = this;
|
|
}
|
|
|
|
|
|
ModuleManager::~ModuleManager()
|
|
{
|
|
// The map is populated with Module::fromDescriptor(), which allocates on the heap.
|
|
for ( auto moduleptr : m_loadedModulesByInstanceKey )
|
|
{
|
|
delete moduleptr;
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
ModuleManager::init()
|
|
{
|
|
QTimer::singleShot( 0, this, &ModuleManager::doInit );
|
|
}
|
|
|
|
|
|
void
|
|
ModuleManager::doInit()
|
|
{
|
|
// We start from a list of paths in m_paths. Each of those is a directory that
|
|
// might (should) contain Calamares modules of any type/interface.
|
|
// For each modules search path (directory), it is expected that each module
|
|
// lives in its own subdirectory. This subdirectory must have the same name as
|
|
// the module name, and must contain a settings file named module.desc.
|
|
// If at any time the module loading procedure finds something unexpected, it
|
|
// silently skips to the next module or search path. --Teo 6/2014
|
|
for ( const QString& path : m_paths )
|
|
{
|
|
QDir currentDir( path );
|
|
if ( currentDir.exists() && currentDir.isReadable() )
|
|
{
|
|
const QStringList subdirs = currentDir.entryList( QDir::AllDirs | QDir::NoDotAndDotDot );
|
|
for ( const QString& subdir : subdirs )
|
|
{
|
|
currentDir.setPath( path );
|
|
bool success = currentDir.cd( subdir );
|
|
if ( success )
|
|
{
|
|
static const char bad_descriptor[] = "ModuleManager potential module descriptor is bad";
|
|
QFileInfo descriptorFileInfo( currentDir.absoluteFilePath( QLatin1String( "module.desc" ) ) );
|
|
if ( !descriptorFileInfo.exists() )
|
|
{
|
|
cDebug() << bad_descriptor << descriptorFileInfo.absoluteFilePath() << "(missing)";
|
|
continue;
|
|
}
|
|
if ( !descriptorFileInfo.isReadable() )
|
|
{
|
|
cDebug() << bad_descriptor << descriptorFileInfo.absoluteFilePath() << "(unreadable)";
|
|
continue;
|
|
}
|
|
|
|
bool ok = false;
|
|
QVariantMap moduleDescriptorMap = CalamaresUtils::loadYaml( descriptorFileInfo, &ok );
|
|
QString moduleName = ok ? moduleDescriptorMap.value( "name" ).toString() : QString();
|
|
|
|
if ( ok && !moduleName.isEmpty() && ( moduleName == currentDir.dirName() )
|
|
&& !m_availableDescriptorsByModuleName.contains( moduleName ) )
|
|
{
|
|
m_availableDescriptorsByModuleName.insert( moduleName, moduleDescriptorMap );
|
|
m_moduleDirectoriesByModuleName.insert( moduleName,
|
|
descriptorFileInfo.absoluteDir().absolutePath() );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
cWarning() << "ModuleManager module directory is not accessible:" << path << "/" << subdir;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
cDebug() << "ModuleManager module search path does not exist:" << path;
|
|
}
|
|
}
|
|
// At this point m_availableDescriptorsByModuleName is filled with
|
|
// the modules that were found in the search paths.
|
|
cDebug() << "Found" << m_availableDescriptorsByModuleName.count() << "modules"
|
|
<< m_moduleDirectoriesByModuleName.count() << "names";
|
|
emit initDone();
|
|
}
|
|
|
|
|
|
QList< ModuleSystem::InstanceKey >
|
|
ModuleManager::loadedInstanceKeys()
|
|
{
|
|
return m_loadedModulesByInstanceKey.keys();
|
|
}
|
|
|
|
|
|
QVariantMap
|
|
ModuleManager::moduleDescriptor( const QString& name )
|
|
{
|
|
return m_availableDescriptorsByModuleName.value( name );
|
|
}
|
|
|
|
Module*
|
|
ModuleManager::moduleInstance( const QString& instanceKey )
|
|
{
|
|
return m_loadedModulesByInstanceKey.value( ModuleSystem::InstanceKey::fromString( instanceKey ) );
|
|
}
|
|
|
|
|
|
/**
|
|
* @brief Search a list of instance descriptions for one matching @p module and @p id
|
|
*
|
|
* @return -1 on failure, otherwise index of the instance that matches.
|
|
*/
|
|
static int
|
|
findCustomInstance( const Settings::InstanceDescriptionList& customInstances, const ModuleSystem::InstanceKey& m )
|
|
{
|
|
for ( int i = 0; i < customInstances.count(); ++i )
|
|
{
|
|
const auto& thisInstance = customInstances[ i ];
|
|
if ( thisInstance.value( "module" ) == m.module() && thisInstance.value( "id" ) == m.id() )
|
|
{
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
/** @brief Returns the config file name for the fiven @p instanceKey
|
|
*
|
|
* Custom instances have custom config files, non-custom ones
|
|
* have a <modulename>.conf file. Returns an empty QString on
|
|
* errors.
|
|
*/
|
|
static QString
|
|
getConfigFileName( const Settings::InstanceDescriptionList& customInstances,
|
|
const ModuleSystem::InstanceKey& instanceKey )
|
|
{
|
|
if ( instanceKey.isCustom() )
|
|
{
|
|
int found = findCustomInstance( customInstances, instanceKey );
|
|
|
|
if ( found < 0 )
|
|
{
|
|
// This should already have been checked and failed the module already
|
|
return QString();
|
|
}
|
|
|
|
return customInstances[ found ].value( "config" );
|
|
}
|
|
else
|
|
{
|
|
return QString( "%1.conf" ).arg( instanceKey.module() );
|
|
}
|
|
}
|
|
|
|
void
|
|
ModuleManager::loadModules()
|
|
{
|
|
if ( checkDependencies() )
|
|
{
|
|
cWarning() << "Some installed modules have unmet dependencies.";
|
|
}
|
|
Settings::InstanceDescriptionList customInstances = Settings::instance()->customModuleInstances();
|
|
|
|
QStringList failedModules;
|
|
const auto modulesSequence = Settings::instance()->modulesSequence();
|
|
for ( const auto& modulePhase : modulesSequence )
|
|
{
|
|
ModuleSystem::Action currentAction = modulePhase.first;
|
|
|
|
foreach ( const QString& moduleEntry, modulePhase.second )
|
|
{
|
|
auto instanceKey = ModuleSystem::InstanceKey::fromString( moduleEntry );
|
|
if ( !instanceKey.isValid() )
|
|
{
|
|
cError() << "Wrong module entry format for module" << moduleEntry;
|
|
failedModules.append( moduleEntry );
|
|
continue;
|
|
}
|
|
if ( instanceKey.isCustom() )
|
|
{
|
|
int found = findCustomInstance( customInstances, instanceKey );
|
|
if ( found < 0 )
|
|
{
|
|
cError() << "Custom instance" << moduleEntry << "not found in custom instances section.";
|
|
failedModules.append( moduleEntry );
|
|
continue;
|
|
}
|
|
}
|
|
|
|
if ( !m_availableDescriptorsByModuleName.contains( instanceKey.module() )
|
|
|| m_availableDescriptorsByModuleName.value( instanceKey.module() ).isEmpty() )
|
|
{
|
|
cError() << "Module" << instanceKey.toString() << "not found in module search paths."
|
|
<< Logger::DebugList( m_paths );
|
|
failedModules.append( instanceKey.toString() );
|
|
continue;
|
|
}
|
|
|
|
QString configFileName = getConfigFileName( customInstances, instanceKey );
|
|
|
|
// So now we can assume that the module entry is at least valid,
|
|
// that we have a descriptor on hand (and therefore that the
|
|
// module exists), and that the instance is either default or
|
|
// defined in the custom instances section.
|
|
// We still don't know whether the config file for the entry
|
|
// exists and is valid, but that's the only thing that could fail
|
|
// from this point on. -- Teo 8/2015
|
|
Module* thisModule = m_loadedModulesByInstanceKey.value( instanceKey, nullptr );
|
|
if ( thisModule && !thisModule->isLoaded() )
|
|
{
|
|
cError() << "Module" << instanceKey.toString() << "exists but not loaded.";
|
|
failedModules.append( instanceKey.toString() );
|
|
continue;
|
|
}
|
|
|
|
if ( thisModule && thisModule->isLoaded() )
|
|
{
|
|
cDebug() << "Module" << instanceKey.toString() << "already loaded.";
|
|
}
|
|
else
|
|
{
|
|
thisModule = Module::fromDescriptor( m_availableDescriptorsByModuleName.value( instanceKey.module() ),
|
|
instanceKey.id(),
|
|
configFileName,
|
|
m_moduleDirectoriesByModuleName.value( instanceKey.module() ) );
|
|
if ( !thisModule )
|
|
{
|
|
cError() << "Module" << instanceKey.toString() << "cannot be created from descriptor"
|
|
<< configFileName;
|
|
failedModules.append( instanceKey.toString() );
|
|
continue;
|
|
}
|
|
|
|
if ( !checkModuleDependencies( *thisModule ) )
|
|
{
|
|
// Error message is already printed
|
|
failedModules.append( instanceKey.toString() );
|
|
continue;
|
|
}
|
|
|
|
// If it's a ViewModule, it also appends the ViewStep to the ViewManager.
|
|
thisModule->loadSelf();
|
|
m_loadedModulesByInstanceKey.insert( instanceKey, thisModule );
|
|
if ( !thisModule->isLoaded() )
|
|
{
|
|
cError() << "Module" << instanceKey.toString() << "loading FAILED.";
|
|
failedModules.append( instanceKey.toString() );
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// At this point we most certainly have a pointer to a loaded module in
|
|
// thisModule. We now need to enqueue jobs info into an EVS.
|
|
if ( currentAction == ModuleSystem::Action::Exec )
|
|
{
|
|
ExecutionViewStep* evs
|
|
= qobject_cast< ExecutionViewStep* >( Calamares::ViewManager::instance()->viewSteps().last() );
|
|
if ( !evs ) // If the last step is not an EVS, we must create it.
|
|
{
|
|
evs = new ExecutionViewStep( ViewManager::instance() );
|
|
ViewManager::instance()->addViewStep( evs );
|
|
}
|
|
|
|
evs->appendJobModuleInstanceKey( instanceKey.toString() );
|
|
}
|
|
}
|
|
}
|
|
if ( !failedModules.isEmpty() )
|
|
{
|
|
ViewManager::instance()->onInitFailed( failedModules );
|
|
emit modulesFailed( failedModules );
|
|
}
|
|
else
|
|
{
|
|
emit modulesLoaded();
|
|
}
|
|
}
|
|
|
|
void
|
|
ModuleManager::checkRequirements()
|
|
{
|
|
cDebug() << "Checking module requirements ..";
|
|
|
|
QVector< Module* > modules( m_loadedModulesByInstanceKey.count() );
|
|
int count = 0;
|
|
for ( const auto& module : m_loadedModulesByInstanceKey )
|
|
{
|
|
modules[ count++ ] = module;
|
|
}
|
|
|
|
RequirementsChecker* rq = new RequirementsChecker( modules, this );
|
|
connect( rq, &RequirementsChecker::requirementsResult, this, &ModuleManager::requirementsResult );
|
|
connect( rq, &RequirementsChecker::requirementsComplete, this, &ModuleManager::requirementsComplete );
|
|
connect( rq, &RequirementsChecker::requirementsProgress, this, &ModuleManager::requirementsProgress );
|
|
connect( rq, &RequirementsChecker::done, rq, &RequirementsChecker::deleteLater );
|
|
|
|
QTimer::singleShot( 0, rq, &RequirementsChecker::run );
|
|
}
|
|
|
|
static QStringList
|
|
missingRequiredModules( const QStringList& required, const QMap< QString, QVariantMap >& available )
|
|
{
|
|
QStringList l;
|
|
for ( const QString& depName : required )
|
|
{
|
|
if ( !available.contains( depName ) )
|
|
{
|
|
l.append( depName );
|
|
}
|
|
}
|
|
|
|
return l;
|
|
}
|
|
|
|
size_t
|
|
ModuleManager::checkDependencies()
|
|
{
|
|
size_t numberRemoved = 0;
|
|
bool somethingWasRemovedBecauseOfUnmetDependencies = false;
|
|
|
|
// This goes through the map of available modules, and deletes those whose
|
|
// dependencies are not met, if any.
|
|
do
|
|
{
|
|
somethingWasRemovedBecauseOfUnmetDependencies = false;
|
|
for ( auto it = m_availableDescriptorsByModuleName.begin(); it != m_availableDescriptorsByModuleName.end();
|
|
++it )
|
|
{
|
|
QStringList unmet = missingRequiredModules( it->value( "requiredModules" ).toStringList(),
|
|
m_availableDescriptorsByModuleName );
|
|
|
|
if ( unmet.count() > 0 )
|
|
{
|
|
QString moduleName = it->value( "name" ).toString();
|
|
somethingWasRemovedBecauseOfUnmetDependencies = true;
|
|
m_availableDescriptorsByModuleName.erase( it );
|
|
numberRemoved++;
|
|
cWarning() << "Module" << moduleName << "requires missing modules" << Logger::DebugList( unmet );
|
|
break;
|
|
}
|
|
}
|
|
} while ( somethingWasRemovedBecauseOfUnmetDependencies );
|
|
|
|
return numberRemoved;
|
|
}
|
|
|
|
bool
|
|
ModuleManager::checkModuleDependencies( const Module& m )
|
|
{
|
|
bool allRequirementsFound = true;
|
|
QStringList requiredModules
|
|
= m_availableDescriptorsByModuleName[ m.name() ].value( "requiredModules" ).toStringList();
|
|
|
|
for ( const QString& required : requiredModules )
|
|
{
|
|
bool requirementFound = false;
|
|
for ( const Module* v : m_loadedModulesByInstanceKey )
|
|
if ( required == v->name() )
|
|
{
|
|
requirementFound = true;
|
|
break;
|
|
}
|
|
if ( !requirementFound )
|
|
{
|
|
cError() << "Module" << m.name() << "requires" << required << "before it in sequence.";
|
|
allRequirementsFound = false;
|
|
}
|
|
}
|
|
|
|
return allRequirementsFound;
|
|
}
|
|
|
|
} // namespace Calamares
|