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

« back to all changes in this revision

Viewing changes to src/ops/backupoperation.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 "ops/backupoperation.h"
 
21
 
 
22
#include "core/partition.h"
 
23
 
 
24
#include "jobs/backupfilesystemjob.h"
 
25
 
 
26
#include "util/capacity.h"
 
27
 
 
28
#include <QString>
 
29
 
 
30
#include <kdebug.h>
 
31
#include <klocale.h>
 
32
 
 
33
/** Creates a new BackupOperation.
 
34
        @param d the Device where the FileSystem to back up is on
 
35
        @param p the Partition where the FileSystem to back up is in
 
36
        @param filename the name of the file to back up to
 
37
*/
 
38
BackupOperation::BackupOperation(Device& d, Partition& p, const QString& filename) :
 
39
        Operation(),
 
40
        m_TargetDevice(d),
 
41
        m_BackupPartition(p),
 
42
        m_FileName(filename),
 
43
        m_BackupJob(new BackupFileSystemJob(targetDevice(), backupPartition(), fileName()))
 
44
{
 
45
        addJob(backupJob());
 
46
}
 
47
 
 
48
QString BackupOperation::description() const
 
49
{
 
50
        return QString(i18nc("@info/plain", "Backup partition <filename>%1</filename> (%2, %3) to <filename>%4</filename>", backupPartition().deviceNode(), Capacity(backupPartition()).toString(), backupPartition().fileSystem().name(), fileName()));
 
51
}
 
52
 
 
53
/** Can the given Partition be backed up?
 
54
        @param p The Partition in question, may be NULL.
 
55
        @return true if @p p can be backed up.
 
56
*/
 
57
bool BackupOperation::canBackup(const Partition* p)
 
58
{
 
59
        if (p == NULL)
 
60
                return false;
 
61
        
 
62
        if (p->isMounted())
 
63
                return false;
 
64
 
 
65
        if (p->state() == Partition::StateNew || p->state() == Partition::StateCopy || p->state() == Partition::StateRestore)
 
66
                return false;
 
67
 
 
68
        return p->fileSystem().supportBackup() != FileSystem::SupportNone;
 
69
}
 
70