/* === This file is part of Calamares - === * * Copyright 2014, Aurélien Gâteau * * 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 . */ #include #include // CalaPM #include #include #include #include #include #include #include #include #include #include // Qt #include CreatePartitionJob::CreatePartitionJob( Device* device, Partition* partition ) : m_device( device ) , m_partition( partition ) { } QString CreatePartitionJob::prettyName() { return tr( "Create partition" ); // FIXME } void CreatePartitionJob::exec() { Report report( 0 ); CoreBackend* backend = CoreBackendManager::self()->backend(); QScopedPointer backendDevice( backend->openDevice( m_device->deviceNode() ) ); Q_ASSERT( backendDevice.data() ); QScopedPointer 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 ); }