kpmcore/src/fs/zfs.h

108 lines
3.5 KiB
C
Raw Normal View History

/*************************************************************************
* Copyright (C) 2010 by Volker Lanz <vl@fidra.de> *
2016-02-25 23:29:33 +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(ZFS__H)
#define ZFS__H
#include "util/libpartitionmanagerexport.h"
#include "fs/filesystem.h"
2016-04-18 17:14:31 +01:00
#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);
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 remove(Report& report, const QString& deviceNode) const override;
bool writeLabel(Report& report, const QString& deviceNode, const QString& newLabel) override;
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