kpmcore/src/core/lvmdevice.h

111 lines
4.5 KiB
C
Raw Normal View History

2016-06-08 16:50:40 +01:00
/*************************************************************************
* Copyright (C) 2016 by Chantara Tith <tith.chantara@gmail.com> *
2016-11-04 14:20:11 +00:00
* Copyright (C) 2016 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-09 02:40:24 +01:00
#ifndef KPMCORE_LVMDEVICE_H
#define KPMCORE_LVMDEVICE_H
2016-06-08 16:50:40 +01:00
2016-09-08 01:42:04 +01:00
#include "core/device.h"
2016-06-08 16:50:40 +01:00
#include "core/volumemanagerdevice.h"
#include "util/libpartitionmanagerexport.h"
#include <QHash>
2016-06-08 16:50:40 +01:00
#include <QString>
#include <QObject>
#include <QStringList>
2017-08-31 10:48:10 +01:00
#include <QtGlobal>
#include <QVector>
2016-06-08 16:50:40 +01:00
class PartitionTable;
2016-08-11 22:27:58 +01:00
class Report;
class Partition;
2016-06-08 16:50:40 +01:00
class SmartStatus;
2016-08-15 07:18:40 +01:00
/** Representation of LVM Volume Group(VG).
2016-06-08 16:50:40 +01:00
Devices are the outermost entity; they contain a PartitionTable that itself contains Partitions.
2016-08-15 07:18:40 +01:00
@see Device, VolumeManagerDevice, PartitionTable, Partition
2016-06-08 16:50:40 +01:00
*/
class LIBKPMCORE_EXPORT LvmDevice : public VolumeManagerDevice
{
Q_DISABLE_COPY(LvmDevice)
public:
LvmDevice(const QString& name, const QString& iconName = QString());
~LvmDevice();
2016-06-10 18:00:19 +01:00
public:
const QStringList deviceNodes() const override;
const QStringList& partitionNodes() const override;
qint64 partitionSize(QString& partitionPath) const override;
2017-08-31 10:48:10 +01:00
static QVector<const Partition*> s_DirtyPVs;
static QVector<const Partition*> s_OrphanPVs;
2016-06-10 18:00:19 +01:00
static void scanSystemLVM(QList<Device*>& devices);
static const QStringList getVGs();
static const QStringList getLVs(const QString& vgName);
static qint64 getPeSize(const QString& vgName);
static qint64 getTotalPE(const QString& vgName);
static qint64 getAllocatedPE(const QString& vgName);
static qint64 getFreePE(const QString& vgName);
static QString getUUID(const QString& vgName);
static QString getField(const QString& fieldName, const QString& vgName = QString());
static qint64 getTotalLE(const QString& lvPath);
static bool removeLV(Report& report, LvmDevice& d, Partition& p);
static bool createLV(Report& report, LvmDevice& d, Partition& p, const QString& lvName);
static bool createLVSnapshot(Report& report, Partition& p, const QString& name, const qint64 extents = 0);
static bool resizeLV(Report& report, Partition& p);
static bool deactivateLV(Report& report, const Partition& p);
static bool activateLV(const QString& deviceNode);
static bool removePV(Report& report, LvmDevice& d, const QString& pvPath);
static bool insertPV(Report& report, LvmDevice& d, const QString& pvPath);
static bool movePV(Report& report, const QString& pvPath, const QStringList& destinations = QStringList());
2016-06-18 21:58:40 +01:00
static bool removeVG(Report& report, LvmDevice& d);
2017-08-31 10:48:10 +01:00
static bool createVG(Report& report, const QString vgName, const QVector<const Partition*>& pvList, const qint32 peSize = 4); // peSize in megabytes
static bool deactivateVG(Report& report, const LvmDevice& d);
static bool activateVG(Report& report, const LvmDevice& d);
2016-06-29 16:08:32 +01:00
2016-06-10 18:00:19 +01:00
protected:
void initPartitions() override;
const QList<Partition*> scanPartitions(PartitionTable* pTable) const;
2016-08-11 22:27:58 +01:00
Partition* scanPartition(const QString& lvPath, PartitionTable* pTable) const;
qint64 mappedSector(const QString& lvPath, qint64 sector) const override;
2016-06-08 16:50:40 +01:00
public:
2018-04-09 02:40:24 +01:00
qint64 peSize() const;
qint64 totalPE() const;
qint64 allocatedPE() const;
qint64 freePE() const;
void setFreePE(qint64 freePE) const;
2018-04-09 02:40:24 +01:00
QString UUID() const;
QVector <const Partition*>& physicalVolumes();
const QVector <const Partition*>& physicalVolumes() const;
2016-09-08 01:42:04 +01:00
protected:
std::unique_ptr<QHash<QString, qint64>>& LVSizeMap() const;
2016-06-08 16:50:40 +01:00
};
#endif