kpmcore/src/fs/linuxswap.h

104 lines
3.3 KiB
C
Raw Normal View History

2020-09-28 00:45:21 +01:00
/*
SPDX-FileCopyrightText: 2008-2010 Volker Lanz <vl@fidra.de>
SPDX-FileCopyrightText: 2008 Laurent Montel <montel@kde.org>
SPDX-FileCopyrightText: 2012-2017 Andrius Štikonas <andrius@stikonas.eu>
SPDX-FileCopyrightText: 2015 Chris Campbell <c.j.campbell@ed.ac.uk>
SPDX-FileCopyrightText: 2016 Teo Mrnjavac <teo@kde.org>
SPDX-FileCopyrightText: 2016 Chantara Tith <tith.chantara@gmail.com>
SPDX-FileCopyrightText: 2020 Arnaud Ferraris <arnaud.ferraris@collabora.com>
SPDX-FileCopyrightText: 2020 Gaël PORTAY <gael.portay@collabora.com>
SPDX-License-Identifier: GPL-3.0-or-later
*/
#ifndef KPMCORE_LINUXSWAP_H
#define KPMCORE_LINUXSWAP_H
#include "util/libpartitionmanagerexport.h"
#include "fs/filesystem.h"
#include <QtGlobal>
class Report;
class QString;
namespace FS
{
2015-07-13 15:16:36 +01:00
/** A linux swap pseudo file system.
@author Volker Lanz <vl@fidra.de>
*/
class LIBKPMCORE_EXPORT linuxswap : public FileSystem
{
public:
linuxswap(qint64 firstsector, qint64 lastsector, qint64 sectorsused, const QString& label, const QVariantMap& features = {});
2015-07-13 15:16:36 +01:00
public:
2016-05-17 18:01:31 +01:00
void init() override;
2015-07-13 15:16:36 +01:00
2016-09-05 12:10:56 +01:00
bool create(Report& report, const QString& deviceNode) override;
2016-05-17 18:01:31 +01:00
bool resize(Report& report, const QString& deviceNode, qint64 length) const override;
bool writeLabel(Report& report, const QString& deviceNode, const QString& newLabel) override;
bool copy(Report& report, const QString& targetDeviceNode, const QString& sourceDeviceNode) const override;
bool updateUUID(Report& report, const QString& deviceNode) const override;
qint64 readUsedCapacity(const QString& deviceNode) const override;
2015-07-13 15:16:36 +01:00
2016-05-17 18:01:31 +01:00
bool canMount(const QString& deviceNode, const QString& mountPoint) const override;
bool mount(Report& report, const QString& deviceNode, const QString& mountPoint) override;
bool unmount(Report& report, const QString& deviceNode) override;
2015-07-13 15:16:36 +01:00
2016-05-17 18:01:31 +01:00
QString mountTitle() const override;
QString unmountTitle() const override;
2015-07-13 15:16:36 +01:00
2016-05-17 18:01:31 +01:00
CommandSupportType supportCreate() const override {
2015-07-13 15:16:36 +01:00
return m_Create;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportGrow() const override {
2015-07-13 15:16:36 +01:00
return m_Grow;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportShrink() const override {
2015-07-13 15:16:36 +01:00
return m_Shrink;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportMove() const override {
2015-07-13 15:16:36 +01:00
return m_Move;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportCopy() const override {
2015-07-13 15:16:36 +01:00
return m_Copy;
}
CommandSupportType supportGetUsed() const override {
return m_GetUsed;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportGetLabel() const override {
2015-07-13 15:16:36 +01:00
return m_GetLabel;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportSetLabel() const override {
2015-07-13 15:16:36 +01:00
return m_SetLabel;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportUpdateUUID() const override {
2015-07-13 15:16:36 +01:00
return m_UpdateUUID;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportGetUUID() const override {
2015-07-13 15:16:36 +01:00
return m_GetUUID;
}
2017-09-11 16:52:20 +01:00
int maxLabelLength() const override;
2016-05-17 18:01:31 +01:00
SupportTool supportToolName() const override;
bool supportToolFound() const override;
2015-07-13 15:16:36 +01:00
public:
static CommandSupportType m_Create;
static CommandSupportType m_Grow;
static CommandSupportType m_Shrink;
static CommandSupportType m_Move;
static CommandSupportType m_Copy;
static CommandSupportType m_SetLabel;
static CommandSupportType m_GetLabel;
static CommandSupportType m_GetUsed;
2015-07-13 15:16:36 +01:00
static CommandSupportType m_UpdateUUID;
static CommandSupportType m_GetUUID;
};
}
#endif