calamares/src/modules/partition/CreatePartitionJob.cpp

101 lines
2.9 KiB
C++
Raw Normal View History

/* === This file is part of Calamares - <http://github.com/calamares> ===
*
* Copyright 2014, Aurélien Gâteau <agateau@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 <CreatePartitionJob.h>
2014-07-08 18:13:00 +02:00
#include <utils/Logger.h>
// CalaPM
2014-07-08 18:13:00 +02:00
#include <backend/corebackend.h>
#include <backend/corebackendmanager.h>
#include <backend/corebackenddevice.h>
#include <backend/corebackendpartition.h>
#include <backend/corebackendpartitiontable.h>
#include <core/device.h>
#include <core/partition.h>
#include <core/partitiontable.h>
#include <fs/filesystem.h>
2014-07-08 18:13:00 +02:00
#include <util/report.h>
// Qt
2014-07-08 18:13:00 +02:00
#include <QScopedPointer>
CreatePartitionJob::CreatePartitionJob( Device* device, Partition* partition )
: m_device( device )
, m_partition( partition )
{
}
QString
CreatePartitionJob::prettyName()
{
return tr( "Create partition" ); // FIXME
}
void
CreatePartitionJob::exec()
{
2014-07-08 18:13:00 +02:00
Report report( 0 );
CoreBackend* backend = CoreBackendManager::self()->backend();
QScopedPointer<CoreBackendDevice> backendDevice( backend->openDevice( m_device->deviceNode() ) );
Q_ASSERT( backendDevice.data() );
QScopedPointer<CoreBackendPartitionTable> backendPartitionTable( backendDevice->openPartitionTable() );
Q_ASSERT( backendPartitionTable );
QString partitionPath = backendPartitionTable->createPartition( report, *m_partition );
if ( partitionPath.isEmpty() )
{
cLog( LOGINFO ) << "Failed to create partition";
cLog( LOGINFO ) << report.toText();
return;
}
backendPartitionTable->commit();
FileSystem& fs = m_partition->fileSystem();
if ( fs.type() == FileSystem::Unformatted )
{
return;
}
if ( !fs.create( report, partitionPath ) )
{
cLog( LOGINFO ) << "Failed to create filesystem";
cLog( LOGINFO ) << report.toText();
return;
}
if ( !backendPartitionTable->setPartitionSystemType( report, *m_partition ) )
{
cLog( LOGINFO ) << "Failed to update partition table";
cLog( LOGINFO ) << report.toText();
return;
}
backendPartitionTable->commit();
}
void
CreatePartitionJob::updatePreview()
{
m_device->partitionTable()->removeUnallocated();
m_partition->parent()->insert( m_partition );
m_device->partitionTable()->updateUnallocated( *m_device );
}