1cd9b93a22
- 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.
82 lines
2.4 KiB
C++
82 lines
2.4 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2014 Aurélien Gâteau <agateau@kde.org>
|
|
* SPDX-FileCopyrightText: 2015-2016 Teo Mrnjavac <teo@kde.org>
|
|
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#include "FormatPartitionJob.h"
|
|
|
|
#include "partition/FileSystem.h"
|
|
#include "utils/Logger.h"
|
|
|
|
#include <kpmcore/core/device.h>
|
|
#include <kpmcore/core/partition.h>
|
|
#include <kpmcore/core/partitiontable.h>
|
|
#include <kpmcore/fs/filesystem.h>
|
|
#include <kpmcore/ops/createfilesystemoperation.h>
|
|
#include <kpmcore/util/report.h>
|
|
|
|
using CalamaresUtils::Partition::untranslatedFS;
|
|
using CalamaresUtils::Partition::userVisibleFS;
|
|
|
|
FormatPartitionJob::FormatPartitionJob( Device* device, Partition* partition )
|
|
: PartitionJob( partition )
|
|
, m_device( device )
|
|
{
|
|
}
|
|
|
|
QString
|
|
FormatPartitionJob::prettyName() const
|
|
{
|
|
return tr( "Format partition %1 (file system: %2, size: %3 MiB) on %4." )
|
|
.arg( m_partition->partitionPath() )
|
|
.arg( userVisibleFS( m_partition->fileSystem() ) )
|
|
.arg( m_partition->capacity() / 1024 / 1024 )
|
|
.arg( m_device->name() );
|
|
}
|
|
|
|
|
|
QString
|
|
FormatPartitionJob::prettyDescription() const
|
|
{
|
|
return tr( "Format <strong>%3MiB</strong> partition <strong>%1</strong> with "
|
|
"file system <strong>%2</strong>." )
|
|
.arg( m_partition->partitionPath() )
|
|
.arg( userVisibleFS( m_partition->fileSystem() ) )
|
|
.arg( m_partition->capacity() / 1024 / 1024 );
|
|
}
|
|
|
|
|
|
QString
|
|
FormatPartitionJob::prettyStatusMessage() const
|
|
{
|
|
return tr( "Formatting partition %1 with "
|
|
"file system %2." )
|
|
.arg( m_partition->partitionPath() )
|
|
.arg( userVisibleFS( m_partition->fileSystem() ) );
|
|
}
|
|
|
|
|
|
Calamares::JobResult
|
|
FormatPartitionJob::exec()
|
|
{
|
|
Report report( nullptr ); // Root of the report tree, no parent
|
|
CreateFileSystemOperation op( *m_device, *m_partition, m_partition->fileSystem().type() );
|
|
op.setStatus( Operation::StatusRunning );
|
|
|
|
QString message = tr( "The installer failed to format partition %1 on disk '%2'." )
|
|
.arg( m_partition->partitionPath(), m_device->name() );
|
|
|
|
if ( op.execute( report ) )
|
|
{
|
|
return Calamares::JobResult::ok();
|
|
}
|
|
|
|
return Calamares::JobResult::error( message, report.toText() );
|
|
}
|