calamares/src/libcalamares/Job.cpp
Adriaan de Groot 1cd9b93a22 REUSE: Giant boilerplate cleanup
- point to main Calamares site in the 'part of' headers instead
  of to github (this is the "this file is part of Calamares"
  opening line for most files).
- remove boilerplate from all source files, CMake modules and completions,
  this is the 3-paragraph summary of the GPL-3.0-or-later, which has
  a meaning entirely covered by the SPDX tag.
2020-08-26 02:28:38 +02:00

113 lines
1.6 KiB
C++

/* === This file is part of Calamares - <https://calamares.io> ===
*
* SPDX-FileCopyrightText: 2014-2015 Teo Mrnjavac <teo@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Calamares is Free Software: see the License-Identifier above.
*
*/
#include "Job.h"
namespace Calamares
{
JobResult::JobResult( JobResult&& rhs )
: m_message( std::move( rhs.m_message ) )
, m_details( std::move( rhs.m_details ) )
, m_number( rhs.m_number )
{
}
JobResult::operator bool() const
{
return m_number == 0;
}
QString
JobResult::message() const
{
return m_message;
}
void
JobResult::setMessage( const QString& message )
{
m_message = message;
}
QString
JobResult::details() const
{
return m_details;
}
void
JobResult::setDetails( const QString& details )
{
m_details = details;
}
JobResult
JobResult::ok()
{
return JobResult( QString(), QString(), NoError );
}
JobResult
JobResult::error( const QString& message, const QString& details )
{
return JobResult( message, details, GenericError );
}
JobResult
JobResult::internalError( const QString& message, const QString& details, int number )
{
return JobResult( message, details, number ? number : GenericError );
}
JobResult::JobResult( const QString& message, const QString& details, int number )
: m_message( message )
, m_details( details )
, m_number( number )
{
}
Job::Job( QObject* parent )
: QObject( parent )
{
}
Job::~Job() {}
int
Job::getJobWeight() const
{
return 1;
}
QString
Job::prettyDescription() const
{
return QString();
}
QString
Job::prettyStatusMessage() const
{
return QString();
}
} // namespace Calamares