129 lines
3.3 KiB
C++
129 lines
3.3 KiB
C++
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
|
*
|
|
* Copyright 2014, Teo Mrnjavac <teo@kde.org>
|
|
* Copyright 2016, Kevin Kofler <kevin.kofler@chello.at>
|
|
*
|
|
* 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 "CppJobModule.h"
|
|
|
|
#include "utils/PluginFactory.h"
|
|
#include "utils/Logger.h"
|
|
#include "CppJob.h"
|
|
|
|
#include <QDir>
|
|
#include <QPluginLoader>
|
|
|
|
namespace Calamares {
|
|
|
|
|
|
Module::Type
|
|
CppJobModule::type() const
|
|
{
|
|
return Job;
|
|
}
|
|
|
|
|
|
Module::Interface
|
|
CppJobModule::interface() const
|
|
{
|
|
return QtPluginInterface;
|
|
}
|
|
|
|
|
|
void
|
|
CppJobModule::loadSelf()
|
|
{
|
|
if ( m_loader )
|
|
{
|
|
PluginFactory* pf = qobject_cast< PluginFactory* >( m_loader->instance() );
|
|
if ( !pf )
|
|
{
|
|
cDebug() << Q_FUNC_INFO << m_loader->errorString();
|
|
return;
|
|
}
|
|
|
|
CppJob *cppJob = pf->create< Calamares::CppJob >();
|
|
if ( !cppJob )
|
|
{
|
|
cDebug() << Q_FUNC_INFO << m_loader->errorString();
|
|
return;
|
|
}
|
|
// cDebug() << "CppJobModule loading self for instance" << instanceKey()
|
|
// << "\nCppJobModule at address" << this
|
|
// << "\nCalamares::PluginFactory at address" << pf
|
|
// << "\nCppJob at address" << cppJob;
|
|
|
|
cppJob->setModuleInstanceKey( instanceKey() );
|
|
cppJob->setConfigurationMap( m_configurationMap );
|
|
m_job = Calamares::job_ptr( static_cast< Calamares::Job * >( cppJob ) );
|
|
m_loaded = true;
|
|
cDebug() << "CppJobModule" << instanceKey() << "loading complete.";
|
|
}
|
|
}
|
|
|
|
|
|
QList< job_ptr >
|
|
CppJobModule::jobs() const
|
|
{
|
|
return QList< job_ptr >() << m_job;
|
|
}
|
|
|
|
|
|
void
|
|
CppJobModule::initFrom( const QVariantMap& moduleDescriptor )
|
|
{
|
|
Module::initFrom( moduleDescriptor );
|
|
QDir directory( location() );
|
|
QString load;
|
|
if ( !moduleDescriptor.value( "load" ).toString().isEmpty() )
|
|
{
|
|
load = moduleDescriptor.value( "load" ).toString();
|
|
load = directory.absoluteFilePath( load );
|
|
}
|
|
// If a load path is not specified, we look for a plugin to load in the directory.
|
|
if ( load.isEmpty() || !QLibrary::isLibrary( load ) )
|
|
{
|
|
const QStringList ls = directory.entryList( QStringList{ "*.so" } );
|
|
if ( !ls.isEmpty() )
|
|
{
|
|
for ( QString entry : ls )
|
|
{
|
|
entry = directory.absoluteFilePath( entry );
|
|
if ( QLibrary::isLibrary( entry ) )
|
|
{
|
|
load = entry;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
m_loader = new QPluginLoader( load );
|
|
}
|
|
|
|
CppJobModule::CppJobModule()
|
|
: Module()
|
|
, m_loader( nullptr )
|
|
{
|
|
}
|
|
|
|
CppJobModule::~CppJobModule()
|
|
{
|
|
delete m_loader;
|
|
}
|
|
|
|
} // namespace Calamares
|