kpmcore/src/ops/resizeoperation.h

181 lines
5.6 KiB
C
Raw Normal View History

/*************************************************************************
* Copyright (C) 2008 by Volker Lanz <vl@fidra.de> *
2016-03-02 19:00:31 +00:00
* Copyright (C) 2016 by Andrius Štikonas <andrius@stikonas.eu> *
* *
* 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 <http://www.gnu.org/licenses/>.*
*************************************************************************/
#if !defined(RESIZEOPERATION__H)
#define RESIZEOPERATION__H
#include "../util/libpartitionmanagerexport.h"
#include "../ops/operation.h"
#include "../core/partition.h"
#include <QString>
class Device;
class OperationStack;
class Report;
class CheckFileSystemJob;
class SetPartGeometryJob;
class ResizeFileSystemJob;
class SetPartGeometryJob;
class SetPartGeometryJob;
class MoveFileSystemJob;
class ResizeFileSystemJob;
class CheckFileSystemJob;
/** Resizes a Partition and FileSystem.
2015-07-13 15:16:36 +01:00
Resize the given Partition and its FileSystem on the given Device so they start with the
given new start sector and end with the given new last sector.
2015-07-13 15:16:36 +01:00
@author Volker Lanz <vl@fidra.de>
*/
class LIBKPMCORE_EXPORT ResizeOperation : public Operation
{
2015-07-13 15:16:36 +01:00
friend class OperationStack;
Q_OBJECT
Q_DISABLE_COPY(ResizeOperation)
protected:
/** A ResizeOperation can do a combination of things; this enum is used to determine what
actually is going to be done. It is used so the ResizeOperation can describe itself and
when it's actually executed. */
enum ResizeAction {
None = 0, /**< Nothing */
MoveLeft = 1, /**< Move to the left */
MoveRight = 2, /**< Move to the right */
Grow = 4, /**< Grow */
Shrink = 8, /**< Shrink */
MoveLeftGrow = 5, /**< Move to the left then grow */
MoveRightGrow = 6, /**< Move to the right then grow */
MoveLeftShrink = 9, /**< Shrink then move to the left */
MoveRightShrink = 10 /**< Shrink then move to the right */
};
public:
ResizeOperation(Device& d, Partition& p, qint64 newfirst, qint64 newlast);
public:
QString iconName() const override {
2015-07-13 15:16:36 +01:00
return QStringLiteral("arrow-right-double");
}
QString description() const override;
bool execute(Report& parent) override;
void preview() override;
void undo() override;
2015-07-13 15:16:36 +01:00
virtual bool targets(const Device& d) const override;
virtual bool targets(const Partition& p) const override;
2015-07-13 15:16:36 +01:00
static bool canGrow(const Partition* p);
static bool canShrink(const Partition* p);
static bool canMove(const Partition* p);
protected:
Device& targetDevice() {
return m_TargetDevice;
}
const Device& targetDevice() const {
return m_TargetDevice;
}
Partition& partition() {
return m_Partition;
}
const Partition& partition() const {
return m_Partition;
}
bool shrink(Report& report);
bool move(Report& report);
bool grow(Report& report);
ResizeAction resizeAction() const;
qint64 origFirstSector() const {
return m_OrigFirstSector;
}
qint64 origLastSector() const {
return m_OrigLastSector;
}
qint64 origLength() const {
return origLastSector() - origFirstSector() + 1;
}
qint64 newFirstSector() const {
return m_NewFirstSector;
}
qint64 newLastSector() const {
return m_NewLastSector;
}
qint64 newLength() const {
return newLastSector() - newFirstSector() + 1;
}
CheckFileSystemJob* checkOriginalJob() {
return m_CheckOriginalJob;
}
SetPartGeometryJob* moveExtendedJob() {
return m_MoveExtendedJob;
}
ResizeFileSystemJob* shrinkResizeJob() {
return m_ShrinkResizeJob;
}
SetPartGeometryJob* shrinkSetGeomJob() {
return m_ShrinkSetGeomJob;
}
SetPartGeometryJob* moveSetGeomJob() {
return m_MoveSetGeomJob;
}
MoveFileSystemJob* moveFileSystemJob() {
return m_MoveFileSystemJob;
}
ResizeFileSystemJob* growResizeJob() {
return m_GrowResizeJob;
}
SetPartGeometryJob* growSetGeomJob() {
return m_GrowSetGeomJob;
}
CheckFileSystemJob* checkResizedJob() {
return m_CheckResizedJob;
}
private:
Device& m_TargetDevice;
Partition& m_Partition;
const qint64 m_OrigFirstSector;
const qint64 m_OrigLastSector;
qint64 m_NewFirstSector;
qint64 m_NewLastSector;
CheckFileSystemJob* m_CheckOriginalJob;
SetPartGeometryJob* m_MoveExtendedJob;
ResizeFileSystemJob* m_ShrinkResizeJob;
SetPartGeometryJob* m_ShrinkSetGeomJob;
SetPartGeometryJob* m_MoveSetGeomJob;
MoveFileSystemJob* m_MoveFileSystemJob;
ResizeFileSystemJob* m_GrowResizeJob;
SetPartGeometryJob* m_GrowSetGeomJob;
CheckFileSystemJob* m_CheckResizedJob;
};
#endif