2018-01-10 14:58:15 +01:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
|
|
*
|
|
|
|
* 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 "ShellProcessJob.h"
|
|
|
|
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
#include "CalamaresVersion.h"
|
|
|
|
#include "JobQueue.h"
|
|
|
|
#include "GlobalStorage.h"
|
|
|
|
|
2018-01-15 11:59:44 +01:00
|
|
|
#include "utils/CommandList.h"
|
2018-01-10 14:58:15 +01:00
|
|
|
#include "utils/Logger.h"
|
2019-04-29 11:51:27 +02:00
|
|
|
#include "utils/Variant.h"
|
2018-01-10 14:58:15 +01:00
|
|
|
|
|
|
|
ShellProcessJob::ShellProcessJob( QObject* parent )
|
|
|
|
: Calamares::CppJob( parent )
|
|
|
|
, m_commands( nullptr )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ShellProcessJob::~ShellProcessJob()
|
|
|
|
{
|
|
|
|
delete m_commands;
|
|
|
|
m_commands = nullptr; // TODO: UniquePtr
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString
|
|
|
|
ShellProcessJob::prettyName() const
|
|
|
|
{
|
|
|
|
return tr( "Shell Processes Job" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Calamares::JobResult
|
|
|
|
ShellProcessJob::exec()
|
|
|
|
{
|
2018-01-12 14:12:08 +01:00
|
|
|
|
|
|
|
if ( ! m_commands || m_commands->isEmpty() )
|
|
|
|
{
|
2018-02-13 11:07:12 +01:00
|
|
|
cWarning() << "No commands to execute" << moduleInstanceKey();
|
2018-01-12 14:12:08 +01:00
|
|
|
return Calamares::JobResult::ok();
|
|
|
|
}
|
|
|
|
|
2018-02-07 17:12:49 +01:00
|
|
|
return m_commands->run();
|
2018-01-10 14:58:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ShellProcessJob::setConfigurationMap( const QVariantMap& configurationMap )
|
|
|
|
{
|
2018-01-29 22:08:12 +01:00
|
|
|
bool dontChroot = CalamaresUtils::getBool( configurationMap, "dontChroot", false );
|
|
|
|
int timeout = CalamaresUtils::getInteger( configurationMap, "timeout", 10 );
|
|
|
|
if ( timeout < 1 )
|
|
|
|
timeout = 10;
|
2018-01-10 14:58:15 +01:00
|
|
|
|
|
|
|
if ( configurationMap.contains( "script" ) )
|
|
|
|
{
|
2019-08-01 22:59:06 +02:00
|
|
|
m_commands = new CalamaresUtils::CommandList( configurationMap.value( "script" ), !dontChroot, std::chrono::seconds( timeout ) );
|
2018-01-10 14:58:15 +01:00
|
|
|
if ( m_commands->isEmpty() )
|
2018-01-15 10:19:23 +01:00
|
|
|
cDebug() << "ShellProcessJob: \"script\" contains no commands for" << moduleInstanceKey();
|
2018-01-10 14:58:15 +01:00
|
|
|
}
|
2018-01-15 10:19:23 +01:00
|
|
|
else
|
2018-02-13 11:07:12 +01:00
|
|
|
cWarning() << "No script given for ShellProcessJob" << moduleInstanceKey();
|
2018-01-10 14:58:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DEFINITION( ShellProcessJobFactory, registerPlugin<ShellProcessJob>(); )
|