@ -95,16 +95,12 @@ ModuleManager::doInit()
QFileInfo descriptorFileInfo ( currentDir . absoluteFilePath ( QLatin1String ( " module.desc " ) ) ) ;
if ( ! descriptorFileInfo . exists ( ) )
{
cDebug ( ) < < bad_descriptor
< < descriptorFileInfo . absoluteFilePath ( )
< < " (missing) " ;
cDebug ( ) < < bad_descriptor < < descriptorFileInfo . absoluteFilePath ( ) < < " (missing) " ;
continue ;
}
if ( ! descriptorFileInfo . isReadable ( ) )
{
cDebug ( ) < < bad_descriptor
< < descriptorFileInfo . absoluteFilePath ( )
< < " (unreadable) " ;
cDebug ( ) < < bad_descriptor < < descriptorFileInfo . absoluteFilePath ( ) < < " (unreadable) " ;
continue ;
}
@ -133,22 +129,16 @@ ModuleManager::doInit()
}
// At this point m_availableDescriptorsByModuleName is filled with
// the modules that were found in the search paths.
cDebug ( ) < < " Found "
< < m_availableDescriptorsByModuleName . count ( ) < < " modules "
cDebug ( ) < < " Found " < < m_availableDescriptorsByModuleName . count ( ) < < " modules "
< < m_moduleDirectoriesByModuleName . count ( ) < < " names " ;
emit initDone ( ) ;
}
Q StringList
Q List< ModuleSystem : : InstanceKey >
ModuleManager : : loadedInstanceKeys ( )
{
QStringList l ;
for ( const auto & m : m_loadedModulesByInstanceKey . keys ( ) )
{
l < < m . toString ( ) ;
}
return l ;
return m_loadedModulesByInstanceKey . keys ( ) ;
}
@ -195,8 +185,7 @@ ModuleManager::loadModules()
Settings : : InstanceDescriptionList customInstances = Settings : : instance ( ) - > customModuleInstances ( ) ;
QStringList failedModules ;
const auto modulesSequence
= Settings : : instance ( ) - > modulesSequence ( ) ;
const auto modulesSequence = Settings : : instance ( ) - > modulesSequence ( ) ;
for ( const auto & modulePhase : modulesSequence )
{
ModuleSystem : : Action currentAction = modulePhase . first ;
@ -269,7 +258,8 @@ ModuleManager::loadModules()
m_moduleDirectoriesByModuleName . value ( instanceKey . module ( ) ) ) ;
if ( ! thisModule )
{
cError ( ) < < " Module " < < instanceKey . toString ( ) < < " cannot be created from descriptor " < < configFileName ;
cError ( ) < < " Module " < < instanceKey . toString ( ) < < " cannot be created from descriptor "
< < configFileName ;
failedModules . append ( instanceKey . toString ( ) ) ;
continue ;
}