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

« back to all changes in this revision

Viewing changes to src/core/copytargetfile.h

  • 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
#if !defined(COPYTARGETFILE__H)
 
21
 
 
22
#define COPYTARGETFILE__H
 
23
 
 
24
#include "core/copytarget.h"
 
25
 
 
26
#include <qglobal.h>
 
27
#include <QFile>
 
28
 
 
29
class QString;
 
30
 
 
31
/** @brief A file to copy to.
 
32
 
 
33
        Repesents a target file to copy to. Used to back up a FileSystem to a file.
 
34
 
 
35
        @see CopySourceFile, CopyTargetDevice
 
36
        @author vl@fidra.de
 
37
*/
 
38
class CopyTargetFile : public CopyTarget
 
39
{
 
40
        public:
 
41
                CopyTargetFile(const QString& filename, qint32 sectorsize);
 
42
 
 
43
        public:
 
44
                virtual bool open();
 
45
                virtual bool writeSectors(void* buffer, qint64 writeOffset, qint64 numSectors);
 
46
 
 
47
                virtual qint32 sectorSize() const { return m_SectorSize; } /**< @return the file's sector size */
 
48
                virtual qint64 firstSector() const { return 0; } /**< @return always 0 for a file */
 
49
                virtual qint64 lastSector() const { return sectorsWritten(); } /**< @return the number of sectors written so far */
 
50
 
 
51
        protected:
 
52
                QFile& file() { return m_File; }
 
53
                const QFile& file() const { return m_File; }
 
54
 
 
55
        protected:
 
56
                QFile m_File;
 
57
                qint32 m_SectorSize;
 
58
};
 
59
 
 
60
#endif