/************************************************************************* * Copyright (C) 2020 by Gaƫl PORTAY * * * * This program 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. * * * * This program 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 this program. If not, see .* *************************************************************************/ #include "jobs/setpartitionuuidjob.h" #include "backend/corebackend.h" #include "backend/corebackendmanager.h" #include "backend/corebackenddevice.h" #include "backend/corebackendpartitiontable.h" #include "core/partition.h" #include "core/device.h" #include "util/report.h" #include #include /** Creates a new SetPartitionUUIDJob (GPT only) @param d the Device the Partition to be created will be on @param p the Partition whose UUID is to be set is on @param newUUID the new UUID */ SetPartitionUUIDJob::SetPartitionUUIDJob(Device& d, Partition& p, const QString& newUUID) : Job(), m_Device(d), m_Partition(p), m_UUID(newUUID) { } bool SetPartitionUUIDJob::run(Report& parent) { Q_ASSERT(partition().devicePath() == device().deviceNode()); bool rval = true; Report* report = jobStarted(parent); // The UUID is supported by GPT only, if the partition table is not GPT, just ignore the // request and say all is well. This helps in operations because we don't have to check for // support to avoid having a failed job. if (m_Device.partitionTable()->type() != PartitionTable::gpt) report->line() << xi18nc("@info:progress", "Partition table of partition %1 does not support setting UUIDs. Job ignored.", partition().deviceNode()); else { std::unique_ptr backendDevice = CoreBackendManager::self()->backend()->openDevice(m_Device); if (backendDevice) { std::unique_ptr backendPartitionTable = backendDevice->openPartitionTable(); if (backendPartitionTable) { if (backendPartitionTable->setPartitionUUID(*report, partition(), m_UUID)) { rval = true; partition().setUUID(m_UUID); backendPartitionTable->commit(); } else report->line() << xi18nc("@info:progress", "Failed to set the UUID for the partition %1.", partition().deviceNode()); } else report->line() << xi18nc("@info:progress", "Could not open partition table on device %1 to set the UUID for the partition %2.", device().deviceNode(), partition().deviceNode()); } else report->line() << xi18nc("@info:progress", "Could not open device %1 to set the UUID for partition %2.", device().deviceNode(), partition().deviceNode()); } jobFinished(*report, rval); return rval; } QString SetPartitionUUIDJob::description() const { return xi18nc("@info:progress", "Set the UUID on partition %1 to \"%2\"", partition().deviceNode(), uuid()); }