kpmcore/src/core/volumemanagerdevice.cpp

48 lines
1.7 KiB
C++
Raw Permalink Normal View History

/*
SPDX-FileCopyrightText: 2016 Chantara Tith <tith.chantara@gmail.com>
SPDX-FileCopyrightText: 2016-2018 Andrius Štikonas <andrius@stikonas.eu>
SPDX-FileCopyrightText: 2019 Yuri Chornoivan <yurchor@ukr.net>
SPDX-License-Identifier: GPL-3.0-or-later
*/
2016-06-08 16:50:40 +01:00
#include "core/volumemanagerdevice.h"
2018-04-09 02:40:24 +01:00
#include "core/volumemanagerdevice_p.h"
2019-12-09 16:09:53 +00:00
#include "core/device_p.h"
2019-04-03 22:23:09 +01:00
#include "core/lvmdevice.h"
#include "core/raid/softwareraid.h"
2016-06-08 16:50:40 +01:00
2016-08-15 07:18:40 +01:00
/** Constructs an abstract Volume Manager Device with an empty PartitionTable.
*
2018-04-09 02:40:24 +01:00
* @param name the Device's name
* @param deviceNode the Device's node
* @param logicalExtentSize the logical extent size that device uses
2016-06-08 16:50:40 +01:00
*/
2018-04-09 02:40:24 +01:00
VolumeManagerDevice::VolumeManagerDevice(std::shared_ptr<VolumeManagerDevicePrivate> d,
const QString& name,
const QString& deviceNode,
2018-04-09 02:40:24 +01:00
const qint64 logicalExtentSize,
2016-06-08 16:50:40 +01:00
const qint64 totalLogical,
const QString& iconName,
2016-06-08 16:50:40 +01:00
Device::Type type)
2018-04-09 02:40:24 +01:00
: Device(std::static_pointer_cast<DevicePrivate>(d), name, deviceNode, logicalExtentSize, totalLogical, iconName, type)
2016-06-08 16:50:40 +01:00
{
}
2016-06-12 14:09:46 +01:00
2019-04-03 22:23:09 +01:00
void VolumeManagerDevice::scanDevices(QList<Device*>& devices)
{
SoftwareRAID::scanSoftwareRAID(devices);
LvmDevice::scanSystemLVM(devices); // LVM scanner needs all other devices, so should be last
}
2016-06-12 14:09:46 +01:00
QString VolumeManagerDevice::prettyDeviceNodeList() const
{
return deviceNodes().join(QStringLiteral(", "));
2016-06-12 14:09:46 +01:00
}
2018-04-08 14:45:59 +01:00
void VolumeManagerDevice::setTotalLogical(qint64 n)
{
Q_ASSERT(n > 0);
d->m_TotalLogical = n;
}