kpmcore/src/fs/zfs.h

101 lines
2.9 KiB
C
Raw Normal View History

2020-09-28 00:45:21 +01:00
/*
SPDX-FileCopyrightText: 2010 Volker Lanz <vl@fidra.de>
SPDX-FileCopyrightText: 2012-2016 Andrius Štikonas <andrius@stikonas.eu>
SPDX-FileCopyrightText: 2015 Chris Campbell <c.j.campbell@ed.ac.uk>
SPDX-FileCopyrightText: 2019 Yuri Chornoivan <yurchor@ukr.net>
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
*/
2020-09-28 00:45:21 +01:00
#ifndef KPMCORE_ZFS_H
#define KPMCORE_ZFS_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 zfs file system.
2016-02-25 23:29:33 +00:00
@author Andrius Štikonas <andrius@stikonas.eu>
2015-07-13 15:16:36 +01:00
*/
class LIBKPMCORE_EXPORT zfs : public FileSystem
{
public:
zfs(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;
2016-05-17 18:01:31 +01:00
bool writeLabel(Report& report, const QString& deviceNode, const QString& newLabel) override;
QString posixPermissions() const override { return implPosixPermissions(); };
void setPosixPermissions(const QString& permissions) override { implSetPosixPermissions(permissions); };
2016-05-17 18:01:31 +01:00
CommandSupportType supportGetUsed() const override {
2015-07-13 15:16:36 +01:00
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 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 supportCheck() const override {
2015-07-13 15:16:36 +01:00
return m_Check;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportCopy() const override {
2015-07-13 15:16:36 +01:00
return m_Copy;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportBackup() const override {
2015-07-13 15:16:36 +01:00
return m_Backup;
}
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;
}
2016-05-17 18:01:31 +01:00
qint64 minCapacity() const override;
qint64 maxCapacity() const override;
SupportTool supportToolName() const override;
bool supportToolFound() const override;
2015-07-13 15:16:36 +01:00
public:
static CommandSupportType m_GetUsed;
static CommandSupportType m_GetLabel;
static CommandSupportType m_Create;
static CommandSupportType m_Grow;
static CommandSupportType m_Shrink;
static CommandSupportType m_Move;
static CommandSupportType m_Check;
static CommandSupportType m_Copy;
static CommandSupportType m_Backup;
static CommandSupportType m_SetLabel;
static CommandSupportType m_UpdateUUID;
static CommandSupportType m_GetUUID;
};
}
#endif