~ubuntu-branches/ubuntu/oneiric/partitionmanager/oneiric

« back to all changes in this revision

Viewing changes to src/jobs/createpartitiontablejob.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/createpartitiontablejob.h"
 
21
 
 
22
#include "core/device.h"
 
23
#include "core/partitiontable.h"
 
24
 
 
25
#include "util/report.h"
 
26
 
 
27
#include <klocale.h>
 
28
 
 
29
#include <parted/parted.h>
 
30
 
 
31
/** Creates a new CreatePartitionTableJob
 
32
        @param d the Device a new PartitionTable is to be created on
 
33
*/
 
34
CreatePartitionTableJob::CreatePartitionTableJob(Device& d) :
 
35
        Job(),
 
36
        m_Device(d)
 
37
{
 
38
}
 
39
 
 
40
bool CreatePartitionTableJob::run(Report& parent)
 
41
{
 
42
        bool rval = false;
 
43
 
 
44
        Report* report = jobStarted(parent);
 
45
 
 
46
        if (openPed(device().deviceNode(), true))
 
47
        {
 
48
                Q_ASSERT(device().partitionTable());
 
49
 
 
50
                PedDiskType* pedDiskType = ped_disk_type_get(device().partitionTable()->typeName().toAscii());
 
51
 
 
52
                if (pedDiskType)
 
53
                {
 
54
                        PedDisk* pedDisk = ped_disk_new_fresh(pedDevice(), pedDiskType);
 
55
                        rval = commit(pedDisk);
 
56
                        ped_disk_destroy(pedDisk);
 
57
                }
 
58
                else
 
59
                        report->line() << i18nc("@info/plain", "Creating partition table failed: Could not retrieve partition table type \"%1\" for <filename>%2</filename>.", device().partitionTable()->typeName(), device().deviceNode());
 
60
 
 
61
                closePed();
 
62
        }
 
63
        else
 
64
                report->line() << i18nc("@info/plain", "Creating partition table failed: Could not open device <filename>%1</filename>.", device().deviceNode());
 
65
 
 
66
        jobFinished(*report, rval);
 
67
 
 
68
        return rval;
 
69
}
 
70
 
 
71
QString CreatePartitionTableJob::description() const
 
72
{
 
73
        return i18nc("@info/plain", "Create new partition table on device <filename>%1</filename>", device().deviceNode());
 
74
}