7734d84925
FIXES #1536
95 lines
2.2 KiB
C++
95 lines
2.2 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2018 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#include "ShellProcessJob.h"
|
|
|
|
#include "CalamaresVersion.h"
|
|
#include "GlobalStorage.h"
|
|
#include "JobQueue.h"
|
|
|
|
#include "utils/CommandList.h"
|
|
#include "utils/Logger.h"
|
|
#include "utils/Variant.h"
|
|
|
|
#include <QDateTime>
|
|
#include <QProcess>
|
|
#include <QThread>
|
|
|
|
ShellProcessJob::ShellProcessJob( QObject* parent )
|
|
: Calamares::CppJob( parent )
|
|
, m_commands( nullptr )
|
|
{
|
|
}
|
|
|
|
|
|
ShellProcessJob::~ShellProcessJob() {}
|
|
|
|
|
|
QString
|
|
ShellProcessJob::prettyName() const
|
|
{
|
|
if ( m_name )
|
|
{
|
|
return m_name->get();
|
|
}
|
|
return tr( "Shell Processes Job" );
|
|
}
|
|
|
|
|
|
Calamares::JobResult
|
|
ShellProcessJob::exec()
|
|
{
|
|
|
|
if ( !m_commands || m_commands->isEmpty() )
|
|
{
|
|
cWarning() << "No commands to execute" << moduleInstanceKey();
|
|
return Calamares::JobResult::ok();
|
|
}
|
|
|
|
return m_commands->run();
|
|
}
|
|
|
|
|
|
void
|
|
ShellProcessJob::setConfigurationMap( const QVariantMap& configurationMap )
|
|
{
|
|
bool dontChroot = CalamaresUtils::getBool( configurationMap, "dontChroot", false );
|
|
qint64 timeout = CalamaresUtils::getInteger( configurationMap, "timeout", 30 );
|
|
if ( timeout < 1 )
|
|
{
|
|
timeout = 30;
|
|
}
|
|
|
|
if ( configurationMap.contains( "script" ) )
|
|
{
|
|
m_commands = std::make_unique< CalamaresUtils::CommandList >(
|
|
configurationMap.value( "script" ), !dontChroot, std::chrono::seconds( timeout ) );
|
|
if ( m_commands->isEmpty() )
|
|
{
|
|
cDebug() << "ShellProcessJob: \"script\" contains no commands for" << moduleInstanceKey();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
cWarning() << "No script given for ShellProcessJob" << moduleInstanceKey();
|
|
}
|
|
|
|
bool labels_ok = false;
|
|
auto labels = CalamaresUtils::getSubMap( configurationMap, "i18n", labels_ok );
|
|
if ( labels_ok )
|
|
{
|
|
if ( labels.contains( "name" ) )
|
|
{
|
|
m_name = std::make_unique< CalamaresUtils::Locale::TranslatedString >( labels, "name" );
|
|
}
|
|
}
|
|
}
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DEFINITION( ShellProcessJobFactory, registerPlugin< ShellProcessJob >(); )
|