kpmcore/src/core/volumemanagerdevice.cpp

58 lines
2.7 KiB
C++
Raw Normal View History

2016-06-08 16:50:40 +01:00
/*************************************************************************
* Copyright (C) 2016 by Chantara Tith <tith.chantara@gmail.com> *
2018-04-08 14:45:59 +01:00
* Copyright (C) 2018 by Andrius Štikonas <andrius@stikonas.eu> *
2016-06-08 16:50:40 +01:00
* *
* 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/>.*
*************************************************************************/
2018-04-08 14:45:59 +01:00
#include "core/device_p.h"
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-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;
}