kpmcore/src/fs/hfs.cpp

88 lines
2.9 KiB
C++
Raw Normal View History

2020-09-28 00:45:21 +01:00
/*
SPDX-FileCopyrightText: 2008-2011 Volker Lanz <vl@fidra.de>
SPDX-FileCopyrightText: 2013-2018 Andrius Štikonas <andrius@stikonas.eu>
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
*/
#include "fs/hfs.h"
#include "util/externalcommand.h"
#include "util/capacity.h"
#include <QStringList>
namespace FS
{
2015-07-13 15:16:36 +01:00
FileSystem::CommandSupportType hfs::m_GetUsed = FileSystem::cmdSupportNone;
FileSystem::CommandSupportType hfs::m_GetLabel = FileSystem::cmdSupportNone;
FileSystem::CommandSupportType hfs::m_Create = FileSystem::cmdSupportNone;
FileSystem::CommandSupportType hfs::m_Shrink = FileSystem::cmdSupportNone;
FileSystem::CommandSupportType hfs::m_Move = FileSystem::cmdSupportNone;
FileSystem::CommandSupportType hfs::m_Check = FileSystem::cmdSupportNone;
FileSystem::CommandSupportType hfs::m_Copy = FileSystem::cmdSupportNone;
FileSystem::CommandSupportType hfs::m_Backup = FileSystem::cmdSupportNone;
hfs::hfs(qint64 firstsector, qint64 lastsector, qint64 sectorsused, const QString& label, const QVariantMap& features) :
FileSystem(firstsector, lastsector, sectorsused, label, features, FileSystem::Type::Hfs)
2015-07-13 15:16:36 +01:00
{
}
2015-07-13 15:16:36 +01:00
void hfs::init()
{
m_GetLabel = cmdSupportCore;
m_Create = findExternal(QStringLiteral("hformat")) ? cmdSupportFileSystem : cmdSupportNone;
m_Check = findExternal(QStringLiteral("hfsck")) ? cmdSupportFileSystem : cmdSupportNone;
m_Move = m_Copy = (m_Check != cmdSupportNone) ? cmdSupportCore : cmdSupportNone;
m_Backup = cmdSupportCore;
}
2015-07-13 15:16:36 +01:00
bool hfs::supportToolFound() const
{
return
// m_GetUsed != cmdSupportNone &&
m_GetLabel != cmdSupportNone &&
// m_SetLabel != cmdSupportNone &&
m_Create != cmdSupportNone &&
m_Check != cmdSupportNone &&
// m_UpdateUUID != cmdSupportNone &&
// m_Grow != cmdSupportNone &&
// m_Shrink != cmdSupportNone &&
m_Copy != cmdSupportNone &&
m_Move != cmdSupportNone &&
m_Backup != cmdSupportNone;
// m_GetUUID != cmdSupportNone;
}
2015-07-13 15:16:36 +01:00
FileSystem::SupportTool hfs::supportToolName() const
{
2019-11-22 13:34:10 +00:00
return SupportTool(QStringLiteral("hfsutils"), QUrl(QStringLiteral("https://www.mars.org/home/rob/proj/hfs/")));
2015-07-13 15:16:36 +01:00
}
2015-07-13 15:16:36 +01:00
qint64 hfs::maxCapacity() const
{
2018-04-09 15:14:34 +01:00
return 2 * Capacity::unitFactor(Capacity::Unit::Byte, Capacity::Unit::TiB);
2015-07-13 15:16:36 +01:00
}
2017-09-11 16:52:20 +01:00
int hfs::maxLabelLength() const
2015-07-13 15:16:36 +01:00
{
return 27;
}
2015-07-13 15:16:36 +01:00
bool hfs::check(Report& report, const QString& deviceNode) const
{
ExternalCommand cmd(report, QStringLiteral("hfsck"), { QStringLiteral("-v"), deviceNode });
2015-07-13 15:16:36 +01:00
return cmd.run(-1) && cmd.exitCode() == 0;
}
2016-09-05 12:10:56 +01:00
bool hfs::create(Report& report, const QString& deviceNode)
2015-07-13 15:16:36 +01:00
{
ExternalCommand cmd(report, QStringLiteral("hformat"), { deviceNode });
2015-07-13 15:16:36 +01:00
return cmd.run(-1) && cmd.exitCode() == 0;
}
}