~ubuntu-branches/ubuntu/karmic/partitionmanager/karmic

« back to all changes in this revision

Viewing changes to src/jobs/deletepartitionjob.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-01-23 17:57:36 UTC
  • Revision ID: james.westby@ubuntu.com-20090123175736-2ltrhgg3m55dokbm
Tags: upstream-1.0.0~beta1a
ImportĀ upstreamĀ versionĀ 1.0.0~beta1a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008 by Volker Lanz <vl@fidra.de>                       *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
 
18
 ***************************************************************************/
 
19
 
 
20
#include "jobs/deletepartitionjob.h"
 
21
 
 
22
#include "core/partition.h"
 
23
#include "core/device.h"
 
24
 
 
25
#include "util/report.h"
 
26
 
 
27
#include <klocale.h>
 
28
#include <kdebug.h>
 
29
 
 
30
#include <parted/parted.h>
 
31
 
 
32
/** Creates a new DeletePartitionJob
 
33
        @param d the Device the Partition to delete is on
 
34
        @param p the Partition to delete
 
35
*/
 
36
DeletePartitionJob::DeletePartitionJob(Device& d, Partition& p) :
 
37
        Job(),
 
38
        m_Device(d),
 
39
        m_Partition(p)
 
40
{
 
41
}
 
42
 
 
43
bool DeletePartitionJob::run(Report& parent)
 
44
{
 
45
        Q_ASSERT(device().deviceNode() == partition().devicePath());
 
46
        
 
47
        if (device().deviceNode() != partition().devicePath())
 
48
        {
 
49
                kWarning() << "deviceNode: " << device().deviceNode() << ", partition path: " << partition().devicePath();
 
50
                return false;
 
51
        }
 
52
 
 
53
        bool rval = false;
 
54
 
 
55
        Report* report = jobStarted(parent);
 
56
        
 
57
        if (openPed(device().deviceNode()))
 
58
        {
 
59
                PedPartition* pedPartition = partition().roles().has(PartitionRole::Extended)
 
60
                                ? ped_disk_extended_partition(pedDisk())
 
61
                                : ped_disk_get_partition_by_sector(pedDisk(), partition().firstSector());
 
62
 
 
63
                if (pedPartition)
 
64
                {
 
65
                        rval = ped_disk_delete_partition(pedDisk(), pedPartition) && commit();
 
66
 
 
67
                        if (!rval)
 
68
                                report->line() << i18nc("@info/plain", "Could not delete partition <filename>%1</filename>.", partition().deviceNode());
 
69
                }
 
70
                else
 
71
                        report->line() << i18nc("@info/plain", "Deleting partition failed: Partition to delete (<filename>%1</filename>) not found on disk.", partition().deviceNode());
 
72
 
 
73
                closePed();
 
74
        }
 
75
        else
 
76
                report->line() << i18nc("@info/plain", "Deleting partition failed: Could not open device <filename>%1</filename>.", device().deviceNode());
 
77
 
 
78
        jobFinished(*report, rval);
 
79
 
 
80
        return rval;
 
81
}
 
82
 
 
83
QString DeletePartitionJob::description() const
 
84
{
 
85
        return i18nc("@info/plain", "Delete the partition <filename>%1</filename>", partition().deviceNode());
 
86
}